/* ==========================================================
   CAMPING SITE — Main Stylesheet
   Based on: crafto.themezaa.com/travel-agency/
   ========================================================== */

/* --- CSS Variables --- */
:root {
    --color-primary: #F5F5DC;
    --color-primary-dark: #D4C9A8;
    --color-accent: #c4953a;
    --color-dark: #1a1a1a;
    --color-darker: #0d0d0d;
    --color-body: #6f6f6f;
    --color-light: #f5f5f5;
    --color-white: #ffffff;
    --color-border: #e4e4e4;
    --color-border-dark: #2a2a2a;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 15px 40px rgba(0,0,0,0.08);
    --shadow-dark: 0 15px 40px rgba(0,0,0,0.3);
    --radius: 6px;
    --container: 1200px;
}

/* --- Reset --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; background: var(--color-darker); margin: 0; padding: 0; }
body {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--color-body);
    background: var(--color-white);
    line-height: 1.7;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea { font-family: inherit; font-size: inherit; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 30px; }

/* --- Preloader --- */
#preloader {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: var(--color-darker); z-index: 99999;
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.5s, visibility 0.5s;
}
#preloader.loaded { opacity: 0; visibility: hidden; }
.loader {
    width: 40px; height: 40px;
    border: 3px solid var(--color-border-dark);
    border-top-color: var(--color-primary);
    border-radius: 50%; animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ==========================================================
   HEADER
   ========================================================== */
.header {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 10000;
    padding: calc(2px + env(safe-area-inset-top, 0px)) 0 2px 0; transition: var(--transition);
    background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.0) 100%);
}
.header.scrolled {
    background: rgba(13,13,13,0.97); backdrop-filter: blur(10px);
    padding: calc(2px + env(safe-area-inset-top, 0px)) 0 2px 0; box-shadow: var(--shadow-dark);
}
.header-inner {
    max-width: var(--container); margin: 0 auto; padding: 0 30px;
    display: flex; align-items: center; justify-content: space-between;
}
.logo a { display: flex; align-items: center; }
.logo img { height: var(--logo-height, 55px); max-width: 260px; object-fit: contain; }
.logo-text {
    font-family: var(--font-heading); font-size: 22px; font-weight: 700;
    color: var(--color-white); letter-spacing: -0.5px;
    white-space: nowrap;
}
.main-nav ul { display: flex; gap: 35px; }
.main-nav a {
    font-family: var(--font-heading); font-size: 16px; font-weight: 500;
    color: var(--color-white); letter-spacing: 0.5px;
    position: relative; padding: 5px 0;
}
.main-nav a::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 0; height: 1px; background: var(--color-accent);
    transition: var(--transition);
}
.main-nav a:hover::after, .main-nav li.active a::after { width: 100%; }
.main-nav a:hover, .main-nav li.active a { color: var(--color-accent); }
.header-right { display: flex; align-items: center; gap: 20px; }

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    width: 30px;
    height: 30px;
    position: relative;
    z-index: 100001; /* Stay ABOVE mobile menu */
    cursor: pointer;
    flex-shrink: 0;
}
.mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-white);
    border-radius: 2px;
    position: absolute;
    left: 4px;
    transition: top 0.3s ease, transform 0.3s ease, opacity 0.2s ease;
    transform-origin: center center;
}
.mobile-toggle span:nth-child(1) { top: 8px; }
.mobile-toggle span:nth-child(2) { top: 14px; }
.mobile-toggle span:nth-child(3) { top: 20px; }
.mobile-toggle.active span:nth-child(1) { top: 14px; transform: rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { top: 14px; transform: rotate(-45deg); }

/* Search Overlay */
.search-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.95); z-index: 9999;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: var(--transition);
}
.search-overlay.active { opacity: 1; visibility: visible; }
.search-overlay-inner { width: 90%; max-width: 600px; position: relative; }
.search-overlay form { display: flex; border-bottom: 2px solid var(--color-accent); }
.search-overlay input {
    flex: 1; background: none; border: none; color: var(--color-white);
    font-size: 24px; padding: 15px 0; outline: none;
    font-family: var(--font-heading);
}
.search-overlay input::placeholder { color: #999; }
.search-overlay button[type="submit"] { color: var(--color-accent); font-size: 24px; padding: 0 10px; }
.search-close {
    position: absolute; top: -50px; right: 0;
    color: var(--color-white); font-size: 24px;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    transform: translateX(100%);
    background: rgba(13,13,13,1);
    z-index: 10001;
    padding: calc(110px + env(safe-area-inset-top, 0px)) 30px calc(30px + env(safe-area-inset-bottom, 0px));
    overflow-y: auto;
    transition: var(--transition);
    -webkit-overflow-scrolling: touch;
}
.mobile-menu.active { transform: translateX(0); }
.mobile-menu ul { display: flex; flex-direction: column; gap: 0; }
.mobile-menu a {
    display: block; padding: 15px 0; color: var(--color-white);
    font-family: var(--font-heading); font-size: 18px; font-weight: 500;
    border-bottom: 1px solid var(--color-border-dark);
}
.mobile-menu a:hover { color: var(--color-accent); padding-left: 10px; }

/* ==========================================================
   HERO SECTION
   ========================================================== */
.hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: center;
    background-size: cover; background-position: center;
    background-color: var(--color-darker);
    overflow: hidden;
    padding-bottom: 80px;
}
.hero::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
}
.hero::after {
    content: ''; position: absolute; bottom: -5px; left: -1px; right: -1px; height: 65px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'%3E%3Cpath d='M0,60C360,45,540,5,720,20C900,35,1080,55,1440,30L1440,60Z' fill='%23ffffff'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    z-index: 2;
    pointer-events: none;
}
.hero-content {
    position: relative; z-index: 3; max-width: 650px;
    padding-top: 80px;
}

.hero-label {
    font-family: var(--font-heading); font-size: 13px; font-weight: 600;
    color: var(--color-accent); letter-spacing: 3px; text-transform: uppercase;
    margin-bottom: 20px; display: inline-block;
    opacity: 0; transform: translateY(20px);
    animation: fadeUp 0.8s 0.3s forwards;
}
.hero h1 {
    font-family: var(--font-heading); font-size: clamp(40px, 5vw, 65px);
    font-weight: 700; color: var(--color-white);
    line-height: 1.15; margin-bottom: 20px; letter-spacing: -1px;
    opacity: 0; transform: translateY(30px);
    animation: fadeUp 0.8s 0.5s forwards;
}
.hero p {
    font-size: 17px; color: rgba(255,255,255,0.75);
    margin-bottom: 35px; line-height: 1.8;
    opacity: 0; transform: translateY(20px);
    animation: fadeUp 0.8s 0.7s forwards;
}
.hero-buttons {
    display: flex; gap: 20px; flex-wrap: wrap;
    opacity: 0; transform: translateY(20px);
    animation: fadeUp 0.8s 0.9s forwards;
}
@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

/* Hero Sidebar (features box) */
.hero-sidebar {
    position: absolute; right: 40px; top: 50%; transform: translateY(-50%);
    z-index: 2; display: flex; flex-direction: column; gap: 0;
    background: rgba(0,0,0,0.45); backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1); border-radius: 12px;
    padding: 10px; overflow: hidden; max-width: 300px;
}
.hero-feature {
    display: flex; align-items: center; gap: 15px;
    padding: 18px 22px; transition: var(--transition);
    border-radius: 8px;
}
.hero-feature:hover { background: rgba(255,255,255,0.08); }
.hero-feature i {
    font-size: 22px; color: var(--color-accent);
    width: 50px; height: 50px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(196,149,58,0.15); border-radius: 50%;
    flex-shrink: 0;
}
.hero-feature-text h4 {
    font-family: var(--font-heading); font-size: 14px; font-weight: 600;
    color: var(--color-white); margin-bottom: 2px;
}
.hero-feature-text p {
    font-size: 13px; color: rgba(255,255,255,0.5);
    margin: 0; animation: none; opacity: 1; transform: none;
}

/* ==========================================================
   BUTTONS
   ========================================================== */
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--font-heading); font-size: 12px; font-weight: 600;
    letter-spacing: 2px; text-transform: uppercase;
    padding: 16px 36px; border-radius: 4px;
    transition: var(--transition); position: relative; overflow: hidden;
}
.btn-primary {
    background: var(--color-accent); color: var(--color-white);
}
.btn-primary:hover {
    background: #b3862f; transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(196,149,58,0.3);
}
.btn-outline {
    border: 2px solid rgba(255,255,255,0.6); color: var(--color-white);
}
.btn-outline:hover {
    background: var(--color-white); color: var(--color-dark);
    border-color: var(--color-white);
}
.btn-dark {
    background: var(--color-dark); color: var(--color-white);
}
.btn-dark:hover {
    background: var(--color-accent); color: var(--color-white); transform: translateY(-2px);
}

/* ==========================================================
   SECTION STYLES
   ========================================================== */
.section { padding: 120px 0; background: var(--color-white); position: relative; z-index: 1; overflow: hidden; }
.section-dark {
    background: var(--color-darker);
    position: relative;
    z-index: 1;
    padding-top: 120px;
    padding-bottom: 120px;
}
.section-dark::before {
    content: ''; position: absolute; top: -2px; left: 0; right: 0; height: 60px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'%3E%3Cpath d='M0,0C360,30,540,60,720,40C900,20,1080,5,1440,25L1440,0L0,0Z' fill='%23ffffff'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    z-index: 2;
    pointer-events: none;
}
.section-dark::after {
    content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 60px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'%3E%3Cpath d='M0,60C360,45,540,5,720,20C900,35,1080,55,1440,30L1440,60Z' fill='%23ffffff'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    z-index: 2;
    pointer-events: none;
}
.section-dark > .container { position: relative; z-index: 3; }
.section-dark--no-bottom-wave::after { display: none; }
.section-dark--no-bottom-wave { padding-bottom: 80px; }
.section-light { background: var(--color-light); }
.section-label {
    font-family: var(--font-heading); font-size: 12px; font-weight: 600;
    letter-spacing: 3px; text-transform: uppercase;
    color: var(--color-accent); margin-bottom: 15px;
    display: inline-block;
}
.section-dark .section-label { color: var(--color-primary); }
.section-title {
    font-family: var(--font-heading); font-size: clamp(32px, 4vw, 48px);
    font-weight: 700; line-height: 1.2; letter-spacing: -1px;
    margin-bottom: 20px;
}
.section-title-dark { color: var(--color-dark); }
.section-title-white { color: var(--color-white); }
.section-subtitle {
    font-size: 17px; max-width: 600px; line-height: 1.8;
}

/* ==========================================================
   TOUR CARDS
   ========================================================== */
.tours-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}
.tour-card {
    position: relative; border-radius: var(--radius);
    overflow: hidden; background: var(--color-white);
    box-shadow: var(--shadow); transition: var(--transition);
}
.tour-card:hover { transform: translateY(-8px); box-shadow: 0 25px 60px rgba(0,0,0,0.12); }
.tour-card-image {
    position: relative; height: 280px; overflow: hidden;
}
.tour-card-image img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s ease;
}
.tour-card:hover .tour-card-image img { transform: scale(1.08); }
.tour-card-badges {
    position: absolute; top: 15px; left: 15px;
    display: flex; flex-direction: column; gap: 8px;
}
.badge-duration {
    background: var(--color-accent); color: var(--color-white);
    font-family: var(--font-heading); font-size: 11px; font-weight: 700;
    letter-spacing: 1px; padding: 6px 14px; border-radius: 3px;
}
.badge-price {
    background: var(--color-dark); color: var(--color-white);
    font-family: var(--font-heading); font-size: 11px; font-weight: 600;
    padding: 6px 14px; border-radius: 3px;
}
.badge-price .old-price {
    text-decoration: line-through; opacity: 0.5; margin-left: 5px;
}
.tour-card-body { padding: 25px; }
.tour-card-title {
    font-family: var(--font-heading); font-size: var(--tab-font-size, 22px); font-weight: 600;
    color: var(--color-dark); line-height: 1.4; margin-bottom: 12px;
}
.tour-card-title a:hover { color: var(--color-accent); }

/* Tour cards slider */
.tours-slider { overflow: hidden; }
.tours-slider .swiper-slide { height: auto; }
.tours-slider-nav {
    display: flex; gap: 15px; align-items: center;
}
.tours-slider-nav button {
    width: 50px; height: 50px;
    border: 1px solid var(--color-border); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--color-dark); font-size: 18px;
    transition: var(--transition);
}
.tours-slider-nav button:hover {
    background: var(--color-accent); border-color: var(--color-accent);
    color: var(--color-white);
}
.tours-slider-counter {
    font-family: var(--font-heading); font-size: 14px; font-weight: 600;
    color: var(--color-dark);
}

/* ==========================================================
   DESTINATIONS GRID
   ========================================================== */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto;
    gap: 20px;
}
.dest-card {
    position: relative; border-radius: var(--radius); overflow: hidden;
    height: 320px; cursor: pointer;
}
.dest-card:nth-child(1),
.dest-card:nth-child(2) { grid-column: span 2; height: 380px; }
.dest-card img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s ease;
}
.dest-card:hover img { transform: scale(1.08); }
.dest-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
    display: flex; align-items: flex-end; padding: 25px;
    transition: var(--transition);
}
.dest-card:hover .dest-card-overlay { background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 70%); }
.dest-card-name {
    font-family: var(--font-heading); font-size: 16px; font-weight: 700;
    color: var(--color-white); letter-spacing: 3px; text-transform: uppercase;
}

/* ==========================================================
   SCROLLING TEXT (destinations background)
   ========================================================== */
.scroll-text-wrap {
    overflow: hidden; padding: 30px 0; position: relative;
}
.scroll-text {
    display: flex; white-space: nowrap; animation: scrollText 30s linear infinite;
}
.scroll-text span {
    font-family: var(--font-heading); font-size: clamp(60px, 8vw, 120px);
    font-weight: 800; color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.15);
    letter-spacing: 10px; text-transform: uppercase;
    padding-right: 100px; flex-shrink: 0;
}
@keyframes scrollText {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ==========================================================
   CATEGORIES
   ========================================================== */
.categories-grid {
    display: flex; flex-wrap: wrap; gap: 30px;
    justify-content: center;
}
.category-item {
    display: flex; flex-direction: column; align-items: center;
    gap: 15px; padding: 30px; flex: 1; min-width: 160px;
    text-align: center; transition: var(--transition);
    border-radius: 8px; cursor: pointer;
}
.category-item:hover { background: rgba(196,149,58,0.08); transform: translateY(-5px); }
.category-icon {
    width: 70px; height: 70px;
}
.category-icon img { width: 100%; height: 100%; object-fit: contain; }
.category-icon i {
    font-size: 32px; color: var(--color-accent);
    width: 70px; height: 70px;
    display: flex; align-items: center; justify-content: center;
}
.category-name {
    display: none;
}

/* ==========================================================
   BLOG CARDS
   ========================================================== */
.blog-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.blog-card {
    border-radius: var(--radius); overflow: hidden;
    background: var(--color-white); box-shadow: var(--shadow);
    transition: var(--transition);
}
.blog-card:hover { transform: translateY(-5px); }
.blog-card-image {
    height: 250px; overflow: hidden;
}
.blog-card-image img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s ease;
}
.blog-card:hover .blog-card-image img { transform: scale(1.05); }
.blog-card-body { padding: 25px; }
.blog-card-title {
    font-family: var(--font-heading); font-size: var(--tab-font-size, 22px); font-weight: 600;
    color: var(--color-dark); line-height: 1.4; margin-bottom: 12px;
}
.blog-card-title a:hover { color: var(--color-accent); }
.blog-card-meta {
    font-size: 13px; color: var(--color-body);
    display: flex; align-items: center; gap: 15px;
}
.blog-card-meta a { color: var(--color-accent); }

/* ==========================================================
   NEWSLETTER + FOOTER CTA
   ========================================================== */
.footer-cta {
    background: var(--color-accent); padding: 20px 0;
}
.cta-inner {
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 15px;
}
.cta-inner span {
    font-family: var(--font-heading); font-size: 16px; font-weight: 500;
    color: var(--color-white);
}
.cta-inner a {
    font-family: var(--font-heading); font-size: 14px; font-weight: 700;
    color: var(--color-white); text-decoration: underline;
    letter-spacing: 0.5px;
}
.cta-inner a:hover { opacity: 0.8; }

.newsletter-section {
    background: var(--color-darker); padding: 80px 0;
}
.newsletter-inner { text-align: center; max-width: 600px; margin: 0 auto; }
.newsletter-inner h3 {
    font-family: var(--font-heading); font-size: 24px; font-weight: 600;
    color: var(--color-white); margin-bottom: 30px;
}
.newsletter-input-wrap {
    display: flex; border-bottom: 1px solid var(--color-border-dark);
}
.newsletter-input-wrap input {
    flex: 1; background: none; border: none; color: var(--color-white);
    font-size: 16px; padding: 15px 0; outline: none;
}
.newsletter-input-wrap input::placeholder { color: #999; }
.newsletter-input-wrap button {
    color: var(--color-accent); font-family: var(--font-heading);
    font-size: 12px; font-weight: 600; letter-spacing: 2px;
    display: flex; align-items: center; gap: 8px;
}
.newsletter-input-wrap button:hover { color: var(--color-white); }
.newsletter-note {
    font-size: 13px; color: #aaa; margin-top: 15px;
}

/* Footer */
.footer {
    background: var(--color-darker); padding: 40px 0;
    border-top: 1px solid var(--color-border-dark);
}
.footer-inner {
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 20px;
}
.footer-logo img {
    height: var(--logo-height, 55px); max-width: 260px; object-fit: contain;
}
.footer-logo .logo-text {
    font-family: var(--font-heading); font-size: 22px; font-weight: 700;
    color: var(--color-white);
}
.footer-copyright p { font-size: 14px; color: #aaa; }
.footer-copyright a { color: var(--color-white); }
.footer-copyright a:hover { color: var(--color-accent); }
.footer-nav ul {
    display: flex; gap: 25px; flex-wrap: wrap;
}
.footer-nav a {
    font-size: 14px; color: #aaa;
}
.footer-nav a:hover { color: var(--color-accent); }
.footer-social {
    display: flex; gap: 15px;
}
.footer-social a {
    width: 36px; height: 36px; border-radius: 50%;
    border: 1px solid var(--color-border-dark);
    display: flex; align-items: center; justify-content: center;
    color: #aaa; font-size: 14px; transition: var(--transition);
}
.footer-social a:hover {
    background: var(--color-accent); border-color: var(--color-accent);
    color: var(--color-white);
}

/* ==========================================================
   PAGE HEADER (inner pages)
   ========================================================== */
.page-header {
    position: relative; height: 450px;
    display: flex; align-items: center; justify-content: center;
    text-align: center;
    background-size: cover; background-position: center;
    background-color: var(--color-darker);
    margin-bottom: 0;
    z-index: 2;
}
.page-header::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.05) 60%, transparent 100%);
}
.page-header::after {
    content: ''; position: absolute; bottom: -5px; left: -1px; right: -1px; height: 65px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'%3E%3Cpath d='M0,60C360,45,540,5,720,20C900,35,1080,55,1440,30L1440,60Z' fill='%23ffffff'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    z-index: 3;
    pointer-events: none;
}
.page-header-content { position: relative; z-index: 4; padding-top: 60px; }
.page-header h1 {
    font-family: var(--font-heading); font-size: clamp(36px, 5vw, 56px);
    font-weight: 700; color: var(--color-white);
    letter-spacing: -1px; margin-bottom: 10px;
}
.breadcrumb {
    font-size: 14px; color: rgba(255,255,255,0.6);
}
.breadcrumb a { color: var(--color-white); }
.breadcrumb a:hover { color: var(--color-accent); }
.breadcrumb span { margin: 0 10px; }

/* ==========================================================
   ABOUT PAGE
   ========================================================== */
.about-intro {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
    align-items: center;
}
.about-image { position: relative; }
.about-image img { border-radius: var(--radius); }
.about-badge {
    position: absolute; bottom: -30px; right: -30px;
    background: var(--color-accent); padding: 30px;
    border-radius: var(--radius); text-align: center;
}
.about-badge-number {
    font-family: var(--font-heading); font-size: 42px; font-weight: 800;
    color: var(--color-white); line-height: 1;
}
.about-badge-text {
    font-size: 13px; color: rgba(255,255,255,0.9); margin-top: 5px;
}
.about-text .section-title { margin-bottom: 20px; }
.about-text p { margin-bottom: 15px; }
.about-contact-link {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--color-accent); font-weight: 500;
    margin-top: 10px;
}

/* Awards */
.awards-row {
    display: flex; gap: 40px; flex-wrap: wrap;
    align-items: center; margin-top: 40px;
    padding-top: 40px; border-top: 1px solid var(--color-border);
}
.award-item { text-align: center; }
.award-item img { height: 40px; margin-bottom: 10px; }
.award-item p { font-size: 13px; color: var(--color-body); }

/* Why Choose Us */
.why-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
}
.why-card {
    position: relative; border-radius: var(--radius);
    overflow: hidden; height: 400px;
}
.why-card img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s ease;
}
.why-card:hover img { transform: scale(1.05); }
.why-card-content {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 30px; background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}
.why-card-content p {
    font-size: 16px; color: var(--color-white); margin-bottom: 10px;
}
.why-card-content span {
    font-family: var(--font-heading); font-size: 12px; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    color: var(--color-accent);
}

/* Team */
.team-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px;
}
.team-card { text-align: center; }
.team-photo {
    border-radius: var(--radius); overflow: hidden;
    height: 350px; margin-bottom: 20px;
}
.team-photo img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.5s ease;
}
.team-card:hover .team-photo img { transform: scale(1.05); }
.team-name {
    font-family: var(--font-heading); font-size: var(--tab-font-size, 22px); font-weight: 600;
    color: var(--color-dark); margin-bottom: 5px;
}
.team-position { font-size: 14px; color: var(--color-body); }

/* ==========================================================
   TOUR DETAIL PAGE
   ========================================================== */
.tour-detail-layout {
    display: grid; grid-template-columns: 1fr 380px; gap: 50px;
}
.tour-detail-top { grid-column: 1; }
.tour-detail-bottom { grid-column: 1; }
.tour-sidebar { grid-column: 2; grid-row: 1 / 3; }
.tour-detail-header { margin-bottom: 30px; }
.tour-detail-location {
    display: flex; align-items: center; gap: 8px;
    font-size: 15px; color: var(--color-accent); margin-bottom: 10px;
}
.tour-detail-location i { font-size: 14px; }
.tour-detail-title {
    font-family: var(--font-heading); font-size: 32px; font-weight: 700;
    color: var(--color-dark); line-height: 1.3; margin-bottom: 15px;
}

.tour-detail-image {
    border-radius: var(--radius); overflow: hidden;
    margin-bottom: 40px;
}
.tour-detail-image img { width: 100%; }

/* Tour tabs/accordion */
.tour-tabs { margin-bottom: 40px; }
.tour-tab {
    border-bottom: 1px solid var(--color-border);
}
.tour-tab-header {
    padding: 20px 0; cursor: pointer;
    display: flex; align-items: center; justify-content: space-between;
    font-family: var(--font-heading); font-size: var(--tab-font-size, 22px); font-weight: 600;
    color: var(--color-dark); transition: var(--transition);
}
.tour-tab-header:hover { color: var(--color-accent); }
.tour-tab-header i { transition: var(--transition); }
.tour-tab.active .tour-tab-header i { transform: rotate(180deg); }
.tour-tab-content {
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s ease;
}
.tour-tab.active .tour-tab-content { max-height: 10000px; }
.tour-tab-inner { padding: 0 0 25px; }

/* Included/Excluded */
.incl-excl {
    display: grid; grid-template-columns: 1fr 1fr; gap: 30px;
}
.incl-list li, .excl-list li {
    padding: 8px 0; display: flex; align-items: center; gap: 10px;
    font-size: 15px;
}
.incl-list li::before {
    content: '✓'; color: #28a745; font-weight: 700;
}
.excl-list li::before {
    content: '✗'; color: #dc3545; font-weight: 700;
}
.tour-notes {
    margin-top: 20px; padding: 16px 20px;
    background: rgba(245,245,220,0.3); border: 1px solid rgba(245,245,220,0.5);
    border-left: 3px solid var(--color-accent);
    border-radius: 6px; font-size: 14px; line-height: 1.7; color: #555;
}
.tour-notes p { margin: 0; }

/* Photo gallery */
.tour-gallery {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px;
}
.tour-gallery-item {
    border-radius: var(--radius); overflow: hidden;
    height: 200px; cursor: pointer;
}
.tour-gallery-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.4s ease;
}
.tour-gallery-item:hover img { transform: scale(1.08); }

/* Itinerary */
.itinerary-item { padding: 20px 0; border-bottom: 1px solid var(--color-border); }
.itinerary-day {
    font-family: var(--font-heading); font-size: 14px; font-weight: 700;
    color: var(--color-accent); letter-spacing: 1px;
    margin-bottom: 5px;
}
.itinerary-title {
    font-family: var(--font-heading); font-size: 16px; font-weight: 600;
    color: var(--color-dark);
}
.itinerary-desc { font-size: 14px; margin-top: 8px; }

/* Itinerary Time Schedule */
.itinerary-schedule { margin-top: 8px; }
.itinerary-time-row {
    display: flex; align-items: baseline; gap: 12px;
    padding: 6px 0; border-left: 2px solid var(--color-accent);
    margin-left: 4px; padding-left: 14px;
}
.itinerary-time-row + .itinerary-time-row { margin-top: 2px; }
.itinerary-time {
    font-family: var(--font-heading); font-size: 13px; font-weight: 700;
    color: var(--color-accent); white-space: nowrap; min-width: 52px;
}
.itinerary-activity {
    font-family: var(--font-body); font-size: 15px; font-weight: 400;
    color: var(--color-dark);
}

/* Tour Sidebar */
.tour-sidebar { position: sticky; top: 100px; align-self: start; }
.sidebar-price-box {
    background: var(--color-light); border-radius: var(--radius);
    padding: 30px; margin-bottom: 25px;
}
.sidebar-price {
    font-family: var(--font-heading); font-size: 36px; font-weight: 700;
    color: var(--color-dark);
}
.sidebar-price small {
    font-size: 14px; font-weight: 400; color: var(--color-body);
}
.sidebar-meta {
    display: flex; flex-direction: column; gap: 12px; margin-top: 15px;
}
.sidebar-meta-item {
    display: flex; align-items: center; gap: 10px;
    font-size: 14px; color: var(--color-body);
}
.sidebar-meta-item i { color: var(--color-accent); width: 20px; }

/* Booking Form */
.booking-form-box {
    background: var(--color-dark); border-radius: var(--radius);
    padding: 30px; color: var(--color-white);
}
.booking-form-box h3 {
    font-family: var(--font-heading); font-size: 20px; font-weight: 600;
    color: var(--color-white); margin-bottom: 20px;
}
.form-group { margin-bottom: 15px; }
.form-control {
    width: 100%; padding: 14px 18px; border: 1px solid var(--color-border-dark);
    background: rgba(255,255,255,0.05); color: var(--color-white);
    border-radius: 4px; font-size: 14px; outline: none;
    transition: var(--transition);
}
.form-control:focus { border-color: var(--color-accent); }
.form-control::placeholder { color: #999; }
textarea.form-control { resize: vertical; min-height: 100px; }
.form-submit {
    width: 100%; padding: 16px;
    background: var(--color-accent); color: var(--color-white);
    border: none; border-radius: 4px;
    font-family: var(--font-heading); font-size: 12px; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    cursor: pointer; transition: var(--transition);
}
.form-submit:hover { background: #b3862f; }

/* ==========================================================
   CONTACT PAGE
   ========================================================== */
.contact-info-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
    margin-bottom: 80px;
}
.contact-info-card {
    text-align: center; padding: 40px 25px;
    border-radius: var(--radius);
    transition: var(--transition);
}
.contact-info-card:hover { box-shadow: var(--shadow); }
.contact-info-card h4 {
    font-family: var(--font-heading); font-size: 14px; font-weight: 700;
    letter-spacing: 1px; text-transform: uppercase;
    color: var(--color-white); margin-bottom: 15px;
}
.contact-info-card p {
    font-size: 15px; margin-bottom: 5px; color: rgba(255,255,255,0.7);
}
.contact-info-card i {
    font-size: 28px; color: var(--color-accent); margin-bottom: 15px;
}
.contact-info-card a { color: rgba(255,255,255,0.7); }
.contact-info-card a:hover { color: var(--color-accent); }
.contact-info-label {
    display: inline-block; margin-top: 15px;
    font-family: var(--font-heading); font-size: 11px; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    color: var(--color-accent);
}

.contact-form-section {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
    align-items: start;
}
.contact-form-wrap {
    max-width: 700px;
    margin: 0 auto;
}
.contact-form { display: flex; flex-direction: column; gap: 0; }
.contact-form .form-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.contact-form .form-group { margin-bottom: 20px; }
.contact-form input,
.contact-form textarea {
    width: 100%; padding: 16px 20px;
    background: var(--color-light);
    border: 1px solid var(--color-border);
    border-radius: 6px;
    color: var(--color-dark);
    font-size: 15px; font-family: var(--font-main);
    outline: none; transition: var(--transition);
}
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--color-accent);
    background: var(--color-white);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #999;
}
.contact-form textarea { resize: vertical; min-height: 140px; }
.contact-form .form-label {
    display: block; font-size: 13px; font-weight: 600;
    color: var(--color-dark); margin-bottom: 5px;
}
.contact-form .form-label + .form-control { margin-top: 0; }
.contact-form .form-control {
    background: var(--color-light); border: 1px solid var(--color-border);
    color: var(--color-dark);
}
.contact-form .form-control:focus { border-color: var(--color-accent); }
.contact-form .form-control::placeholder { color: #999; }

.contact-social {
    display: flex; gap: 18px; justify-content: center; flex-wrap: wrap;
}
.contact-social h4 {
    font-family: var(--font-heading); font-size: 16px; font-weight: 600;
    color: var(--color-dark); margin-bottom: 20px;
}
.contact-social a {
    width: 60px; height: 60px; border-radius: 50%;
    border: 1px solid var(--color-border);
    display: flex; align-items: center; justify-content: center;
    color: var(--color-dark); font-size: 22px;
    transition: var(--transition);
}
.contact-social a:hover {
    background: var(--color-accent); border-color: var(--color-accent);
    color: var(--color-white);
}
.contact-social-dark a {
    border-color: rgba(255,255,255,0.2);
    color: var(--color-white);
}
.contact-social-dark a:hover {
    background: var(--color-accent); border-color: var(--color-accent);
    color: var(--color-white);
}
.contact-social-links {
    display: flex; gap: 18px;
}
.contact-social-links a {
    width: 60px; height: 60px; border-radius: 50%;
    border: 1px solid var(--color-border);
    display: flex; align-items: center; justify-content: center;
    color: var(--color-dark); font-size: 22px;
    transition: var(--transition);
}
.contact-social-links a:hover {
    background: var(--color-accent); border-color: var(--color-accent);
    color: var(--color-white);
}

/* ==========================================================
   BLOG SINGLE POST
   ========================================================== */
.post-content { max-width: 800px; margin: 0 auto; }
.post-meta {
    display: flex; align-items: center; gap: 20px;
    margin-bottom: 30px; font-size: 14px; color: var(--color-body);
}
.post-meta a { color: var(--color-accent); }
.post-body { line-height: 1.9; }
.post-body h6 {
    font-family: var(--font-heading); font-size: 20px; font-weight: 600;
    color: var(--color-dark); margin: 30px 0 15px;
}
.post-body p { margin-bottom: 20px; text-align: justify; }
.post-body img {
    border-radius: var(--radius); margin: 30px 0;
    width: 100%;
}
.post-body blockquote {
    font-family: var(--font-heading); font-size: 22px; font-weight: 500;
    color: var(--color-dark); line-height: 1.5;
    padding: 30px 0 30px 30px;
    border-left: 3px solid var(--color-accent);
    margin: 30px 0;
}
.post-tags {
    display: flex; flex-wrap: wrap; gap: 10px;
    margin: 40px 0; padding-top: 30px;
    border-top: 1px solid var(--color-border);
}
.post-tags a {
    padding: 6px 16px; border-radius: 20px;
    background: var(--color-light); font-size: 13px;
    color: var(--color-body); transition: var(--transition);
}
.post-tags a:hover { background: var(--color-accent); color: var(--color-white); }

.post-author-box {
    display: flex; gap: 25px; align-items: center;
    padding: 30px; background: var(--color-light);
    border-radius: var(--radius); margin: 40px 0;
}
.post-author-avatar {
    width: 80px; height: 80px; border-radius: 50%;
    overflow: hidden; flex-shrink: 0;
}
.post-author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.post-author-name {
    font-family: var(--font-heading); font-size: 16px; font-weight: 600;
    color: var(--color-dark); margin-bottom: 8px;
}
.post-author-bio { font-size: 14px; line-height: 1.7; }

/* Comments */
.comments-section { margin-top: 60px; }
.comments-section h6 {
    font-family: var(--font-heading); font-size: 20px; font-weight: 600;
    color: var(--color-dark); margin-bottom: 30px;
}
.comment-form { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.comment-form .full-width { grid-column: span 2; }
.comment-form .form-control {
    background: var(--color-light); border: 1px solid var(--color-border);
    color: var(--color-dark);
}

/* ==========================================================
   PAGINATION
   ========================================================== */
.pagination {
    display: flex; align-items: center; gap: 10px;
    justify-content: center; margin-top: 50px;
}
.pagination a, .pagination span {
    width: 45px; height: 45px; display: flex;
    align-items: center; justify-content: center;
    border-radius: 50%; font-family: var(--font-heading);
    font-size: 14px; font-weight: 600;
    border: 1px solid var(--color-border);
    transition: var(--transition);
}
.pagination a:hover, .pagination span.active {
    background: var(--color-accent); border-color: var(--color-accent);
    color: var(--color-white);
}

/* ==========================================================
   FORM MESSAGES
   ========================================================== */
.form-message {
    padding: 15px 20px; border-radius: var(--radius);
    font-size: 14px; margin-top: 15px; display: none;
}
.form-message.success {
    background: rgba(40,167,69,0.1); color: #28a745;
    border: 1px solid rgba(40,167,69,0.2);
}
.form-message.error {
    background: rgba(220,53,69,0.1); color: #dc3545;
    border: 1px solid rgba(220,53,69,0.2);
}

/* Flatpickr customisation for dark theme */
.flatpickr-calendar {
    background: #1a1a1a !important;
    border: 1px solid rgba(245,245,220,0.3) !important;
    box-shadow: 0 8px 30px rgba(0,0,0,0.5) !important;
}
.flatpickr-months .flatpickr-month,
.flatpickr-current-month .cur-month,
.flatpickr-current-month .numInputWrapper { color: #fff !important; }
.flatpickr-weekdays, .flatpickr-weekday { background: #1a1a1a !important; color: #F5F5DC !important; }
.flatpickr-day { color: #e0e0e0 !important; border-radius: 6px !important; }
.flatpickr-day:hover { background: rgba(245,245,220,0.2) !important; border-color: transparent !important; }
.flatpickr-day.selected { background: #F5F5DC !important; color: #0d0d0d !important; border-color: #F5F5DC !important; }
.flatpickr-day.today { border-color: #F5F5DC !important; }
.flatpickr-day.flatpickr-disabled,
.flatpickr-day.booked-date {
    color: #555 !important;
    background: rgba(255,255,255,0.05) !important;
    text-decoration: line-through !important;
    cursor: not-allowed !important;
}
.flatpickr-day.booked-date::after {
    content: '';
    position: absolute; bottom: 2px; left: 50%; transform: translateX(-50%);
    width: 4px; height: 4px; border-radius: 50%;
    background: #e74c3c;
}
.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month { color: #F5F5DC !important; fill: #F5F5DC !important; }
.flatpickr-months .flatpickr-prev-month:hover,
.flatpickr-months .flatpickr-next-month:hover { color: #fff !important; fill: #fff !important; }

/* Availability spots indicator */
.flatpickr-day .spots-dot {
    position: absolute; bottom: 1px; left: 50%; transform: translateX(-50%);
    font-size: 8px; line-height: 1; color: #F5F5DC; opacity: 0.7;
}
.flatpickr-day.few-spots { color: #f0ad4e !important; }
.flatpickr-day.few-spots .spots-dot { color: #f0ad4e; opacity: 1; font-weight: 700; }
.flatpickr-day.selected .spots-dot { color: #0d0d0d; }
.flatpickr-day.flatpickr-disabled .spots-dot { display: none; }

/* Date availability hint below input */
.date-availability-hint {
    font-size: 13px; margin-top: 6px; margin-bottom: 10px; min-height: 20px;
    display: flex; align-items: center; gap: 6px;
}
.date-availability-hint i { font-size: 14px; }
.hint-ok { color: #27ae60; }
.hint-few { color: #f0ad4e; }
.hint-full { color: #e74c3c; }

/* Booking Success Modal */
.booking-modal-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.6);
    z-index: 100000; display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.3s ease; padding: 20px;
}
.booking-modal-overlay.active { opacity: 1; }
.booking-modal {
    background: #fff; border-radius: 16px; padding: 40px 35px;
    max-width: 480px; width: 100%; text-align: center;
    transform: scale(0.9); transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.booking-modal-overlay.active .booking-modal { transform: scale(1); }
.booking-modal-icon { font-size: 56px; color: #28a745; margin-bottom: 16px; }
.booking-modal h3 {
    font-family: var(--font-heading); font-size: 24px; font-weight: 700;
    color: var(--color-dark); margin-bottom: 12px;
}
.booking-modal p { font-size: 15px; color: #555; line-height: 1.6; margin-bottom: 10px; }
.booking-modal-note {
    font-size: 13px; color: #888; font-style: italic;
    padding: 10px 15px; background: #f8f9fa; border-radius: 8px;
    margin: 15px 0;
}
.booking-modal-close {
    margin-top: 10px; padding: 12px 40px; font-size: 14px;
    border-radius: 8px;
}

/* Phone input with country code selector */
.phone-input-wrap {
    display: flex; align-items: stretch;
    border: 1px solid var(--color-border); border-radius: var(--radius);
    overflow: visible; background: var(--color-light);
    transition: border-color 0.3s; position: relative;
}
.phone-input-wrap:focus-within { border-color: var(--color-accent); }
.phone-country-select { position: relative; }
.phone-country-selected {
    display: flex; align-items: center; gap: 5px;
    padding: 0 10px; height: 100%; cursor: pointer;
    background: #f0f0f0; border-right: 1px solid var(--color-border);
    white-space: nowrap; font-size: 14px; user-select: none;
    min-width: 95px;
}
.phone-country-selected:hover { background: #e8e8e8; }
.phone-flag { font-size: 18px; line-height: 1; }
.phone-code { font-weight: 500; color: var(--color-dark); }
.phone-country-dropdown {
    display: none; position: absolute; top: 100%; left: 0;
    background: #fff; border: 1px solid var(--color-border);
    border-radius: 8px; box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    z-index: 1000; width: 280px; margin-top: 4px;
    overflow: hidden;
}
.phone-country-dropdown.open { display: block; }
.phone-country-search {
    width: 100%; padding: 10px 12px; border: none;
    border-bottom: 1px solid var(--color-border);
    font-size: 14px; outline: none;
}
.phone-country-list { max-height: 200px; overflow-y: auto; }
.phone-country-option {
    display: flex; align-items: center; gap: 8px;
    padding: 8px 12px; cursor: pointer; font-size: 14px;
    transition: background 0.15s;
}
.phone-country-option:hover { background: #f5f5f5; }
.phone-country-option .phone-flag { font-size: 18px; }
.phone-country-option .country-name { color: #555; flex: 1; }
.phone-country-option .country-code { color: var(--color-dark); font-weight: 500; }
.phone-input-wrap input[type="tel"] {
    border: none !important; background: transparent !important;
    flex: 1; padding: 12px 15px; font-size: 15px;
    outline: none; min-width: 0;
    color: var(--color-dark) !important;
}

/* ==========================================================
   LIGHTBOX
   ========================================================== */
.lightbox {
    position: fixed; inset: 0; background: rgba(0,0,0,0.95);
    z-index: 99999; display: none; align-items: center;
    justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 90%; max-height: 85vh; border-radius: var(--radius); object-fit: contain; user-select: none; }
.lightbox-close {
    position: absolute; top: 20px; right: 30px;
    color: var(--color-white); font-size: 30px; cursor: pointer;
    z-index: 2; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
}
.lightbox-prev,
.lightbox-next {
    position: absolute; top: 50%; transform: translateY(-50%);
    color: #fff; font-size: 24px; cursor: pointer; z-index: 2;
    width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.1); border-radius: 50%;
    transition: background 0.2s;
}
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.25); }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-counter {
    position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
    color: rgba(255,255,255,0.7); font-size: 14px; font-family: var(--font-main);
}
.gallery-item { cursor: pointer; display: block; overflow: hidden; border-radius: var(--radius); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.gallery-item:hover img { transform: scale(1.05); }

@media (max-width: 768px) {
    .lightbox-prev, .lightbox-next { width: 40px; height: 40px; font-size: 18px; }
    .lightbox-prev { left: 8px; }
    .lightbox-next { right: 8px; }
    .lightbox img { max-width: 95%; max-height: 80vh; }
    .lightbox-close { top: 12px; right: 16px; font-size: 24px; }
}

/* ==========================================================
   WHATSAPP CHAT WIDGET
   ========================================================== */
.wa-widget {
    position: fixed; bottom: 25px; right: 25px; z-index: 9998;
}
.wa-float-btn {
    width: 60px; height: 60px; border-radius: 50%; border: none; cursor: pointer;
    background: #25d366; color: #fff; font-size: 32px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.wa-float-btn:hover { transform: scale(1.1); box-shadow: 0 6px 20px rgba(0,0,0,0.4); }
.wa-popup {
    position: absolute; bottom: 75px; right: 0;
    width: 340px; border-radius: 16px; overflow: hidden;
    background: #e5ddd5; box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    opacity: 0; visibility: hidden; transform: translateY(15px) scale(0.95);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}
.wa-popup.active {
    opacity: 1; visibility: visible; transform: translateY(0) scale(1);
}
.wa-popup-header {
    display: flex; align-items: center; justify-content: space-between;
    background: #075e54; padding: 14px 16px; color: #fff;
}
.wa-popup-header-left { display: flex; align-items: center; gap: 12px; }
.wa-avatar {
    width: 42px; height: 42px; border-radius: 50%; overflow: hidden;
    background: #128c7e; display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.wa-avatar img { width: 100%; height: 100%; object-fit: cover; }
.wa-avatar i { font-size: 22px; color: #fff; }
.wa-popup-header-info { display: flex; flex-direction: column; }
.wa-popup-name { font-weight: 600; font-size: 15px; line-height: 1.2; }
.wa-popup-status { font-size: 12px; opacity: 0.85; }
.wa-popup-close {
    background: none; border: none; color: #fff; font-size: 18px;
    cursor: pointer; padding: 4px; opacity: 0.8;
}
.wa-popup-close:hover { opacity: 1; }
.wa-popup-body {
    padding: 20px 16px;
    background: url("data:image/svg+xml,%3Csvg width='300' height='300' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='p' width='60' height='60' patternUnits='userSpaceOnUse'%3E%3Cpath d='M30 5 L35 15 L30 12 L25 15Z' fill='%23d4ccb5' opacity='0.3'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='300' height='300' fill='%23e5ddd5'/%3E%3Crect width='300' height='300' fill='url(%23p)'/%3E%3C/svg%3E") #e5ddd5;
    min-height: 80px;
}
.wa-msg {
    background: #fff; border-radius: 0 8px 8px 8px; padding: 10px 14px;
    display: inline-block; max-width: 85%;
    box-shadow: 0 1px 1px rgba(0,0,0,0.1); position: relative;
}
.wa-msg::before {
    content: ''; position: absolute; top: 0; left: -8px;
    border-width: 0 8px 8px 0; border-style: solid;
    border-color: transparent #fff transparent transparent;
}
.wa-msg-text { font-size: 14px; line-height: 1.5; color: #303030; display: block; }
.wa-msg-time { font-size: 11px; color: #999; float: right; margin-top: 4px; margin-left: 10px; }
.wa-popup-cta {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    background: #25d366; color: #fff; padding: 14px;
    font-size: 15px; font-weight: 600; text-decoration: none;
    transition: background 0.2s;
}
.wa-popup-cta:hover { background: #1ebe5d; color: #fff; }
.wa-popup-cta i { font-size: 20px; }
@media (max-width: 768px) {
    .wa-widget { bottom: 20px; right: 16px; }
    .wa-float-btn { width: 52px; height: 52px; font-size: 28px; }
    .wa-popup { width: calc(100vw - 32px); right: 0; bottom: 65px; }
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 1024px) {
    .header {
        background: rgba(13,13,13,1); backdrop-filter: blur(10px);
        top: 0; padding: calc(2px + env(safe-area-inset-top, 0px)) 0 2px 0;
    }
    .header.scrolled {
        top: 0; padding: calc(2px + env(safe-area-inset-top, 0px)) 0 2px 0;
    }
    .main-nav { display: none; }
    .mobile-toggle { display: block; }
    .hero-sidebar { display: none; }
    .tour-detail-layout { display: flex; flex-direction: column; gap: 30px; }
    .tour-detail-top { order: 1; }
    .tour-sidebar { position: static; order: 2; width: 100%; }
    .tour-detail-bottom { order: 3; }
    .about-intro { grid-template-columns: 1fr; }
    .about-badge { padding: 12px 14px; bottom: -15px; right: 10px; width: 120px; }
    .about-badge-number { font-size: 24px; }
    .about-badge-text { font-size: 9px; line-height: 1.3; }
    .contact-form-section { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr 1fr; }
    .team-grid { grid-template-columns: 1fr 1fr; }
    .destinations-grid { grid-template-columns: 1fr 1fr; }
    .dest-card:nth-child(1), .dest-card:nth-child(2) { grid-column: span 1; }
    .logo img { height: var(--logo-height-mobile, 70px); max-width: 180px; }
    .header { padding: env(safe-area-inset-top, 0px) 0 0 0; }
    .header.scrolled { padding: env(safe-area-inset-top, 0px) 0 0 0; }
}

@media (max-width: 768px) {
    .section { padding: 80px 0; }
    .page-header { min-height: 250px; height: auto; }
    .page-header h1 { font-size: 26px; }
    .page-header-content { padding-top: 40px; }
    .tours-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .destinations-grid { grid-template-columns: 1fr; }
    .contact-info-grid { grid-template-columns: 1fr; gap: 15px; }
    .contact-info-card { padding: 25px 20px; }
    .why-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr 1fr; }
    .incl-excl { grid-template-columns: 1fr; }
    .tour-gallery { grid-template-columns: 1fr 1fr; }
    .hero-buttons { justify-content: center; }
    .hero-content { text-align: center; max-width: 100%; }
    .footer-inner { flex-direction: column; text-align: center; }
    .footer-nav ul { justify-content: center; }
    .footer-social { justify-content: center; }
    .comment-form { grid-template-columns: 1fr; }
    .comment-form .full-width { grid-column: span 1; }
    .cta-inner { flex-direction: column; text-align: center; }
    .contact-form .form-row { grid-template-columns: 1fr; }
    .newsletter-inner h3 { font-size: 18px; margin-bottom: 20px; }
    .newsletter-section { padding: 50px 0; }
    .about-intro { gap: 30px; }
    .about-badge { padding: 10px 12px; bottom: -10px; right: 10px; width: 110px; }
    .about-badge-number { font-size: 22px; }
    .about-badge-text { font-size: 8px; line-height: 1.3; }
}

@media (max-width: 480px) {
    .container { padding: 0 20px; }
    .hero { min-height: 90vh; }
    .page-header { min-height: 200px; height: auto; }
    .page-header h1 { font-size: 22px; }
    .page-header-content { padding-top: 30px; }
    .breadcrumb { font-size: 12px; }
    .tour-gallery { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .newsletter-inner h3 { font-size: 16px; }
    .section { padding: 50px 0; }
}



/* Discover Intro Section */
.discover-intro-section { padding: 60px 0 20px; }
.discover-intro { text-align: center; max-width: 800px; margin: 0 auto; }
.discover-intro .section-label { margin-bottom: 15px; }
.discover-intro .section-title { margin-bottom: 20px; }
.discover-intro-text {
    font-size: 16px; line-height: 1.8; color: #666;
    max-width: 700px; margin: 0 auto;
}
@media (max-width: 768px) {
    .discover-intro-section { padding: 40px 0 10px; }
    .discover-intro-text { font-size: 15px; line-height: 1.7; }
}
@media (max-width: 480px) {
    .discover-intro-section { padding: 30px 0 5px; }
    .discover-intro-text { font-size: 14px; line-height: 1.6; }
}

/* Text justify for body/description content (not headings) */
.tour-description p,
.tour-notes p,
.about-text p,
.post-content p,
.discover-intro-text {
    text-align: justify;
}

/* Tour card short description */
.tour-card-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #777;
    margin: 8px 0 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
