/* ============================================
   CSS VARIABLES
============================================ */
:root {
    --primary: #f8c143;
    --primary-dark: #fab441;
    --secondary: #e5c94a;
    --secondary-light: #faf6e8;
    --accent: #0e5635;
    --accent-light: #e5f0eb;
    --accent-dark: #0e5635;
    --white: #ffffff;
    --off-white: #fafafa;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #717171;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ============================================
   RESET & BASE STYLES
============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.2;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Tel and mailto links - inherit color, no underline */
a[href^="tel:"],
a[href^="mailto:"] {
    color: inherit;
    text-decoration: none;
}

a[href^="tel:"]:hover,
a[href^="mailto:"]:hover {
    color: var(--primary);
}

/* ============================================
   HEADER & NAVIGATION
============================================ */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
}

header.scrolled {
    box-shadow: var(--shadow-sm);
}

.header-top {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 8px 0;
    font-size: 13px;
    color: var(--text-dark);
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-top a {
    color: var(--text-dark);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.header-top-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.header-top-social {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-top-social a {
    width: 28px;
    height: 28px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    transition: var(--transition);
}

.header-top-social a:hover {
    background: var(--text-dark);
    color: var(--white);
}

.header-top-social a svg {
    width: 14px;
    height: 14px;
}

.header-main {
    padding: 16px 0;
}

.header-main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-dark);
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 162, 18, 0.3);
    color: var(--white);
}

.logo-icon svg {
    stroke: var(--white);
}

.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.1;
}

.logo-text span {
    display: block;
    font-size: 11px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.logo-image {
    height: 80px;
    width: auto;
    max-width: 280px;
    object-fit: contain;
}

nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 36px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-medium);
    font-weight: 500;
    font-size: 15px;
    position: relative;
    padding: 8px 0;
    transition: var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--text-dark);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hide Book Now in nav on desktop */
.nav-book-now {
    display: none;
}

/* ============================================
   BUTTONS
============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    box-shadow: 0 4px 20px rgba(232, 152, 48, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(232, 152, 48, 0.45);
}

.btn-secondary {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: var(--transition);
}

/* ============================================
   HERO SECTION WITH SLIDER
============================================ */
.hero {
    position: relative;
    overflow: hidden;
    background: var(--text-dark);
}

.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 700px;
}

/* Individual Slides */
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1);
    transition: transform 8s ease-out;
}

.hero-slide.active .hero-slide-bg {
    transform: scale(1.08);
}

.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.6) 100%
    );
}

.hero-slide .container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding-top: 120px;
    padding-bottom: 180px;
}

.hero-slide-content {
    max-width: 700px;
}

/* Slide Content Animations */
.hero-slide .hero-tag {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease 0.3s;
}

.hero-slide .hero-slide-content h1 {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease 0.5s;
}

.hero-slide .hero-description {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease 0.7s;
}

.hero-slide .hero-buttons {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease 0.9s;
}

.hero-slide.active .hero-tag,
.hero-slide.active .hero-slide-content h1,
.hero-slide.active .hero-description,
.hero-slide.active .hero-buttons {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Typography for Slider */
.hero-slide .hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 162, 18, 0.2);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 162, 18, 0.3);
}

.hero-slide .hero-tag::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-slide-content h1 {
    font-size: clamp(42px, 5.5vw, 68px);
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -1px;
    line-height: 1.1;
}

.hero-slide-content h1 span {
    color: var(--primary);
    position: relative;
}

.hero-slide .hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 36px;
    max-width: 540px;
    line-height: 1.8;
}

.hero-slide .hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Light Button Variant for Slider */
.btn-light {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-light:hover {
    background: var(--white);
    color: var(--text-dark);
    border-color: var(--white);
}

/* Slider Navigation Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.slider-arrow:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: 40px;
}

.slider-next {
    right: 40px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.slider-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid transparent;
    transition: var(--transition);
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

.slider-dot.active {
    background: var(--primary);
}

.slider-dot.active::before {
    border-color: var(--primary);
}

/* Slider Progress Bar */
.slider-progress {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    overflow: hidden;
    z-index: 10;
}

.slider-progress-bar {
    height: 100%;
    background: var(--primary);
    width: 0%;
    transition: width 0.1s linear;
}

.slider-progress-bar.animating {
    animation: progressBar 6s linear forwards;
}

@keyframes progressBar {
    from { width: 0%; }
    to { width: 100%; }
}

/* Stats Bar at Bottom */
.hero-stats-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 10;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 24px 0;
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.stat-icon {
    font-size: 28px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon svg {
    fill: var(--primary);
    width: 28px;
    height: 28px;
}

.stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 6px;
}

/* ============================================
   ANIMATIONS
============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* ============================================
   SERVICES SECTION
============================================ */
.services {
    padding: 120px 0;
    background: var(--off-white);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, var(--white), var(--off-white));
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary);
    margin-bottom: 16px;
    position: relative;
}

.section-tag::before,
.section-tag::after {
    content: '//';
    color: var(--accent);
    margin: 0 12px;
}

.section-title {
    font-size: clamp(36px, 4vw, 48px);
    color: var(--text-dark);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 17px;
    color: var(--text-light);
    max-width: 560px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
    z-index: 1;
}

.service-card {
    background: var(--white);
    padding: 48px 36px;
    border-radius: 24px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-light), rgba(255, 162, 18, 0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: var(--transition);
    color: var(--primary);
}

.service-icon svg {
    stroke: var(--primary);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
}

/* ============================================
   ABOUT SECTION
============================================ */
.about {
    padding: 120px 0;
    background: var(--white);
}

.about .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
    height: 600px;
}

.about-img-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 65%;
    height: 70%;
    border-radius: 24px;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
}

.about-img-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 55%;
    border-radius: 24px;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
    border: 6px solid var(--white);
}

.about-experience {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 28px 36px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 12px 40px rgba(255, 162, 18, 0.4);
}

.about-experience-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px;
    font-weight: 700;
    line-height: 1;
}

.about-experience-text {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 4px;
}

.about-content .section-tag {
    display: inline-block;
    margin-bottom: 16px;
}

.about-content .section-tag::before {
    display: none;
}

.about-content h2 {
    font-size: clamp(36px, 4vw, 48px);
    color: var(--text-dark);
    margin-bottom: 24px;
}

.about-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-style: italic;
    color: var(--text-medium);
    margin-bottom: 32px;
    padding-left: 24px;
    border-left: 3px solid var(--primary);
}

.about-text {
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.about-feature {
    display: flex;
    gap: 16px;
}

.about-feature-icon {
    width: 52px;
    height: 52px;
    background: var(--accent-light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--accent);
}

.about-feature-icon svg {
    stroke: var(--accent);
}

.about-feature h4 {
    font-size: 18px;
    margin-bottom: 4px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
}

.about-feature p {
    font-size: 14px;
    color: var(--text-light);
}

/* ============================================
   TOUR PACKAGES SECTION
============================================ */
.packages {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.package-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.package-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
}

.package-image {
    height: 240px;
    position: relative;
    overflow: hidden;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.package-card:hover .package-image img {
    transform: scale(1.08);
}

.package-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--primary);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.package-content {
    padding: 28px;
}

.package-content h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.package-content p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.package-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.package-feature {
    background: var(--secondary-light);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 500;
    color: var(--text-medium);
}

.package-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.package-link:hover {
    gap: 12px;
}

.package-link svg {
    transition: var(--transition);
}

/* Experience highlight card */
.package-card.highlight {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 48px 32px;
    color: var(--white);
}

.package-card.highlight .highlight-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 96px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
}

.package-card.highlight h3 {
    color: var(--white);
    font-size: 28px;
    margin-bottom: 16px;
}

.package-card.highlight p {
    color: rgba(255,255,255,0.85);
    margin-bottom: 0;
}

/* ============================================
   ATTRACTIONS SECTION
============================================ */
.attractions {
    padding: 60px 0 120px;
    background: var(--white);
}

.attractions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.attraction-card {
    position: relative;
    height: 450px;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
}

.attraction-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.attraction-card:hover img {
    transform: scale(1.08);
}

.attraction-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.85) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 36px;
    transition: var(--transition);
}

.attraction-card:hover .attraction-overlay {
    background: linear-gradient(180deg, transparent 20%, rgba(0,0,0,0.9) 100%);
}

.attraction-tag {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    width: fit-content;
}

.attraction-card h3 {
    font-size: 28px;
    color: var(--white);
    margin-bottom: 12px;
}

.attraction-card p {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.attraction-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary);
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

/* ============================================
   CTA SECTION
============================================ */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: var(--secondary);
    border-radius: 50%;
    opacity: 0.15;
}

.cta::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: var(--white);
    border-radius: 50%;
    opacity: 0.08;
}

.cta .container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta h2 {
    font-size: clamp(36px, 5vw, 56px);
    color: var(--white);
    margin-bottom: 20px;
}

.cta p {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin: 0 auto 40px;
}

.cta .btn-primary {
    background: var(--white);
    color: var(--primary);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}

/* ============================================
   FOOTER
============================================ */
footer {
    background: var(--white);
    color: var(--text-dark);
    padding: 80px 0 0;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.footer-brand .logo {
    color: var(--text-dark);
    margin-bottom: 20px;
}

.footer-brand .logo-text span {
    color: var(--text-light);
}

.footer-brand p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    background: rgba(0,0,0,0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-column h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 8px;
}

.footer-contact-item {
    display: flex;
    gap: 14px;
    margin-bottom: 20px;
}

.footer-contact-icon {
    width: 44px;
    height: 44px;
    background: rgba(0,0,0,0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary);
}

.footer-contact-icon svg {
    stroke: var(--primary);
}

.footer-contact-text {
    font-size: 14px;
    color: var(--text-light);
}

.footer-contact-text strong {
    display: block;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 2px;
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    color: var(--text-light);
}

.footer-bottom a {
    color: var(--primary);
    text-decoration: none;
}

/* ============================================
   RESPONSIVE STYLES
============================================ */
@media (max-width: 1200px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    /* Hero Slider Responsive */
    .hero-slider {
        min-height: 600px;
    }

    .hero-slide-content {
        text-align: center;
        max-width: 100%;
    }

    .hero-slide .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-slide .hero-buttons {
        justify-content: center;
    }

    .slider-arrow {
        width: 44px;
        height: 44px;
    }

    .slider-prev {
        left: 20px;
    }

    .slider-next {
        right: 20px;
    }

    .hero-stats {
        gap: 40px;
    }

    .about .container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-images {
        height: 400px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .attractions-grid {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .header-top {
        display: none;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        box-shadow: var(--shadow-md);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        border-bottom: 1px solid rgba(0,0,0,0.05);
        text-align: center;
    }

    .nav-links a {
        display: block;
        padding: 16px 0;
    }

    .nav-links .nav-dropdown > a {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 6px;
    }

    /* Show Book Now button in mobile menu */
    .nav-book-now {
        display: block;
        border-bottom: none;
        padding-top: 16px;
        margin-top: 8px;
    }

    .nav-book-now .btn {
        width: 100%;
        justify-content: center;
        padding: 16px 28px;
    }

    .nav-book-now .btn::after {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .logo-image {
        height: 55px;
        max-width: 200px;
    }

    /* Hero Slider Mobile */
    .hero-slider {
        min-height: 100vh;
        height: auto;
    }

    .hero-slide .container {
        padding-top: 100px;
        padding-bottom: 140px;
    }

    .hero-slide-content h1 {
        font-size: clamp(32px, 8vw, 48px);
    }

    .hero-slide .hero-description {
        font-size: 16px;
    }

    .slider-arrow {
        display: none;
    }

    .slider-dots {
        bottom: 30px;
    }

    .slider-progress {
        bottom: 15px;
        width: 150px;
    }

    .hero-slide .hero-buttons {
        margin-bottom: 80px;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 24px 40px;
        padding: 20px 0;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 10px;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand .logo {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-contact-item {
        justify-content: flex-start;
    }

    .footer-column {
        text-align: left;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

/* ============================================
   PAGE HERO BANNER (for inner pages)
============================================ */
.page-hero {
    position: relative;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 106px;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.6) 100%
    );
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero-content {
    text-align: center;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 14px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.6);
}

.page-hero h1 {
    font-size: clamp(42px, 6vw, 64px);
    color: var(--white);
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   ABOUT PAGE - STORY SECTION
============================================ */
.story-section {
    padding: 120px 0;
    background: var(--white);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-images {
    position: relative;
    height: 550px;
}

.story-img-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    height: 75%;
    border-radius: 24px;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
}

.story-img-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 50%;
    border-radius: 24px;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
    border: 6px solid var(--white);
}

.story-badge {
    position: absolute;
    top: 50%;
    right: 20%;
    transform: translateY(-50%);
    background: var(--white);
    padding: 20px 28px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 14px;
}

.story-badge-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.story-badge-icon svg {
    stroke: var(--white);
}

.story-badge span {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
}

.story-content .section-tag {
    display: inline-block;
    margin-bottom: 16px;
}

.story-content .section-tag::before {
    display: none;
}

.story-content h2 {
    font-size: clamp(36px, 4vw, 48px);
    color: var(--text-dark);
    margin-bottom: 28px;
}

.story-lead {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 24px;
    line-height: 1.8;
    font-weight: 500;
}

.story-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.story-signature {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.signature-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 3px;
}

.story-signature span {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   ABOUT PAGE - INTRO SECTION
============================================ */
.about-intro-section {
    padding: 100px 0;
    background: var(--white);
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.about-intro-content {
    max-width: 680px;
}

.about-intro-lead {
    font-size: 22px;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 28px;
    font-weight: 500;
}

.about-intro-content p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 20px;
}

.about-intro-highlight {
    font-size: 18px !important;
    color: var(--primary) !important;
    font-style: italic;
    font-weight: 500;
    margin-top: 32px;
    padding-top: 28px;
    border-top: 2px solid var(--secondary-light);
}

.about-intro-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 500px;
}

.about-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   ABOUT PAGE - MISSION & VISION SECTION
============================================ */
.mission-vision-section {
    padding: 100px 0;
    background: var(--off-white);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.mission-block,
.vision-block {
    padding: 48px;
    background: var(--white);
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
}

.mission-block .section-tag,
.vision-block .section-tag {
    display: inline-block;
    margin-bottom: 16px;
}

.mission-block .section-tag::before,
.vision-block .section-tag::before {
    display: none;
}

.mission-block h2,
.vision-block h2 {
    font-size: clamp(28px, 3vw, 36px);
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.3;
}

.mission-block p,
.vision-block p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.mission-block p:last-child,
.vision-block p:last-child {
    margin-bottom: 0;
}

/* ============================================
   ABOUT PAGE - STATS SECTION
============================================ */
.about-stats {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    position: relative;
    overflow: hidden;
}

.about-stats::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: var(--secondary);
    border-radius: 50%;
    opacity: 0.1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
}

.stat-item .stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(48px, 5vw, 64px);
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-item .stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ============================================
   ABOUT PAGE - WHY CHOOSE US
============================================ */
.why-choose-section {
    padding: 100px 0;
    background: var(--white);
}

.why-choose-section .section-header {
    margin-bottom: 60px;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.why-choose-item {
    padding: 40px;
    background: var(--off-white);
    border-radius: 20px;
    transition: var(--transition);
    position: relative;
}

.why-choose-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary), var(--secondary));
    border-radius: 4px 0 0 4px;
    opacity: 0;
    transition: var(--transition);
}

.why-choose-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.why-choose-item:hover::before {
    opacity: 1;
}

.why-choose-item h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-family: 'Cormorant Garamond', serif;
}

.why-choose-item p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}

/* ============================================
   ABOUT PAGE - GIVING BACK SECTION
============================================ */
.giving-back-section {
    padding: 100px 0;
    background: var(--accent);
    color: var(--white);
}

.giving-back-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.giving-back-section .section-tag {
    color: var(--secondary);
}

.giving-back-section h2 {
    font-size: clamp(32px, 4vw, 48px);
    color: var(--white);
    margin-bottom: 20px;
}

.giving-back-lead {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 60px;
    line-height: 1.8;
}

.giving-back-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.giving-back-item {
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: var(--transition);
}

.giving-back-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.giving-back-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.giving-back-icon svg {
    stroke: var(--secondary);
}

.giving-back-item h3 {
    font-size: 22px;
    color: var(--white);
    margin-bottom: 14px;
    font-family: 'Cormorant Garamond', serif;
}

.giving-back-item p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin: 0;
}

.giving-back-note {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;
    margin: 0;
}

/* ============================================
   ABOUT PAGE - COMMITMENT SECTION
============================================ */
.commitment-section {
    padding: 120px 0;
    background: var(--off-white);
}

.commitment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.commitment-content .section-tag {
    display: inline-block;
    margin-bottom: 16px;
}

.commitment-content .section-tag::before {
    display: none;
}

.commitment-content h2 {
    font-size: clamp(32px, 4vw, 44px);
    color: var(--text-dark);
    margin-bottom: 24px;
}

.commitment-lead {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.7;
    font-weight: 500;
}

.commitment-content > p {
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.8;
}

.commitment-list {
    list-style: none;
}

.commitment-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
    color: var(--text-medium);
    font-size: 15px;
}

.commitment-list li svg {
    flex-shrink: 0;
    margin-top: 2px;
    stroke: var(--primary);
}

.commitment-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 500px;
}

.commitment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.commitment-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    padding: 40px;
}

.commitment-quote {
    color: var(--white);
}

.commitment-quote svg {
    margin-bottom: 16px;
}

.commitment-quote p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 12px;
}

.commitment-quote span {
    font-size: 14px;
    color: var(--secondary);
    font-weight: 500;
}

/* ============================================
   ABOUT PAGE - CERTIFICATIONS SECTION
============================================ */
.certifications-section {
    padding: 100px 0;
    background: var(--white);
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.certification-card {
    text-align: center;
    padding: 40px 24px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    transition: var(--transition);
}

.certification-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.certification-icon {
    width: 80px;
    height: 80px;
    background: var(--secondary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary);
}

.certification-icon svg {
    stroke: var(--primary);
}

.certification-card h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.certification-card p {
    font-size: 13px;
    color: var(--text-light);
}

/* ============================================
   NAV ACTIVE STATE
============================================ */
.nav-links a.active {
    color: var(--primary);
}

.nav-links a.active::after {
    width: 100%;
}

/* ============================================
   DESTINATIONS PAGE
============================================ */
.destinations-intro {
    padding: 80px 0 40px;
}

.destinations-section {
    padding: 40px 0 100px;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.destination-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.destination-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.destination-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.destination-card.featured .destination-image {
    height: 100%;
    min-height: 400px;
}

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.destination-card:hover .destination-image img {
    transform: scale(1.08);
}

.destination-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
}

.destination-content {
    padding: 24px;
}

.destination-card.featured .destination-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    color: var(--white);
}

.destination-card.featured .destination-content h3 {
    color: var(--white);
}

.destination-card.featured .destination-content p {
    color: rgba(255,255,255,0.9);
}

.destination-tag {
    display: inline-block;
    background: var(--secondary-light);
    color: var(--primary-dark);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.destination-card.featured .destination-tag {
    background: var(--primary);
    color: var(--white);
}

.destination-content h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.destination-content p {
    color: var(--text-medium);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.destination-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.destination-highlights span {
    background: var(--off-white);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    color: var(--text-medium);
}

.destination-card.featured .destination-highlights span {
    background: rgba(255,255,255,0.2);
    color: var(--white);
}

.destination-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition);
}

.destination-link:hover {
    gap: 12px;
}

.destination-card.featured .destination-link {
    color: var(--secondary);
}

/* Travel Info Section */
.travel-info-section {
    padding: 80px 0;
    background: var(--off-white);
}

.travel-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.travel-info-card {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.travel-info-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.travel-info-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.travel-info-icon svg {
    stroke: var(--accent);
}

.travel-info-card h4 {
    font-size: 1.2rem;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.travel-info-card p {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 12px;
}

.travel-info-card p:last-child {
    margin-bottom: 0;
}

/* ============================================
   DESTINATION DETAIL PAGE
============================================ */
.destination-badge {
    display: inline-block;
    background: var(--primary);
    color: var(--text-dark);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.destination-detail {
    padding: 80px 0;
}

.destination-detail-content {
    max-width: 900px;
    margin: 0 auto;
}

.detail-section {
    margin-bottom: 60px;
}

.detail-section:last-child {
    margin-bottom: 0;
}

.detail-section h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--secondary);
}

.detail-section p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 16px;
}

.detail-section p:last-child {
    margin-bottom: 0;
}

.attraction-item {
    margin-bottom: 32px;
    padding-left: 20px;
    border-left: 3px solid var(--primary);
}

.attraction-item:last-child {
    margin-bottom: 0;
}

.attraction-item h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.attraction-item p {
    margin-bottom: 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.info-item {
    background: var(--off-white);
    padding: 24px;
    border-radius: 12px;
}

.info-item h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.info-item p {
    font-size: 14px;
    margin-bottom: 0;
}

.tour-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 24px;
}

.tour-link-card {
    display: flex;
    flex-direction: column;
    padding: 24px;
    background: var(--white);
    border: 2px solid var(--off-white);
    border-radius: 12px;
    text-decoration: none;
    transition: var(--transition);
}

.tour-link-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.tour-link-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.tour-link-duration {
    font-size: 14px;
    color: var(--primary-dark);
    font-weight: 500;
}

/* Destination Detail Responsive */
@media (max-width: 768px) {
    .destination-detail {
        padding: 60px 0;
    }

    .detail-section h2 {
        font-size: 1.6rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .tour-links {
        grid-template-columns: 1fr;
    }

    .attraction-item {
        padding-left: 16px;
    }

    .attraction-item h3 {
        font-size: 1.2rem;
    }
}

/* Destinations Page Responsive */
@media (max-width: 1024px) {
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .travel-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .destinations-grid {
        grid-template-columns: 1fr;
    }

    .travel-info-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   CONTACT PAGE
============================================ */
.contact-section {
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.contact-info > p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.contact-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px;
    min-width: 0;
    background: var(--off-white);
    border-radius: 12px;
    transition: var(--transition);
}

.contact-card:hover {
    background: var(--secondary-light);
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-card-icon svg {
    stroke: var(--accent);
}

.contact-card-content h4 {
    font-size: 1rem;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.contact-card-content p {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
    word-break: break-word;
}

.contact-card-content {
    flex: 1;
    min-width: 0;
}

.contact-card-content span {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.5;
}

.contact-social h4 {
    font-size: 1rem;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 44px;
    height: 44px;
    background: var(--off-white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
}

.social-links a svg {
    color: var(--text-medium);
    transition: var(--transition);
}

.social-links a svg path {
    fill: currentColor;
}

.social-links a svg rect,
.social-links a svg line {
    stroke: currentColor;
    fill: none;
}

.social-links a:hover svg {
    color: var(--white);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.contact-form > p {
    color: var(--text-medium);
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 162, 18, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Contact Form 7 Styling */
.contact-form-wrapper .wpcf7 {
    width: 100%;
}

.contact-form-wrapper .wpcf7-form {
    display: flex;
    flex-direction: column;
}

.contact-form-wrapper .wpcf7-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form-wrapper .wpcf7-form .form-group {
    margin-bottom: 20px;
}

.contact-form-wrapper .wpcf7-form .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
    font-size: 14px;
}

.contact-form-wrapper .wpcf7-form .form-group .wpcf7-form-control {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    transition: var(--transition);
    background: var(--white);
}

.contact-form-wrapper .wpcf7-form .form-group .wpcf7-form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 162, 18, 0.1);
}

.contact-form-wrapper .wpcf7-form .form-group input::placeholder,
.contact-form-wrapper .wpcf7-form .form-group textarea::placeholder {
    color: var(--text-light);
}

.contact-form-wrapper .wpcf7-form .form-group textarea.wpcf7-form-control {
    resize: vertical;
    min-height: 120px;
}

.contact-form-wrapper .wpcf7-form .form-group select.wpcf7-form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23717171' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.contact-form-wrapper .wpcf7-form input[type="submit"] {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    box-shadow: 0 4px 20px rgba(232, 152, 48, 0.35);
}

.contact-form-wrapper .wpcf7-form input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(232, 152, 48, 0.45);
}

/* CF7 Validation and Response Messages */
.contact-form-wrapper .wpcf7-not-valid-tip {
    color: #dc3545;
    font-size: 12px;
    margin-top: 6px;
    display: block;
}

.contact-form-wrapper .wpcf7-not-valid {
    border-color: #dc3545 !important;
}

.contact-form-wrapper .wpcf7-response-output {
    margin: 20px 0 0;
    padding: 16px 20px;
    border-radius: 8px;
    font-size: 14px;
}

.contact-form-wrapper .wpcf7-mail-sent-ok {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.contact-form-wrapper .wpcf7-mail-sent-ng,
.contact-form-wrapper .wpcf7-aborted {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.contact-form-wrapper .wpcf7-validation-errors {
    background: #fff3cd;
    border: 1px solid #ffeeba;
    color: #856404;
}

.contact-form-wrapper .wpcf7-spam-blocked {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

/* CF7 Spinner */
.contact-form-wrapper .wpcf7-spinner {
    margin: 10px auto;
    display: block;
}

/* Turnstile Position */
.contact-form-wrapper .wpcf7-form {
    display: flex;
    flex-direction: column;
}

.contact-form-wrapper .wpcf7-form > * {
    order: 1;
}

.contact-form-wrapper .wpcf7-form > .cf-turnstile {
    order: 97;
    margin: 20px 0;
}

.contact-form-wrapper .wpcf7-form > input[type="submit"] {
    order: 99;
}

.contact-form-wrapper .wpcf7-form > .wpcf7-response-output {
    order: 100;
}

/* Responsive CF7 */
@media (max-width: 768px) {
    .contact-form-wrapper .wpcf7-form .form-row {
        grid-template-columns: 1fr;
    }
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--off-white);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.faq-item {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-item h4 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.faq-item p {
    color: var(--text-medium);
    font-size: 14px;
    line-height: 1.7;
}

/* Contact Page Responsive */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-cards {
        grid-template-columns: 1fr 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }

    .contact-cards {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 24px;
    }
}

/* ============================================
   ABOUT PAGE - RESPONSIVE STYLES
============================================ */
@media (max-width: 1024px) {
    .page-hero {
        height: 350px;
        margin-top: 80px;
    }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .story-images {
        height: 450px;
    }

    .mission-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .commitment-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .commitment-image {
        height: 400px;
    }

    .certifications-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-hero {
        height: 300px;
        margin-top: 70px;
    }

    .page-hero h1 {
        font-size: 36px;
    }

    .story-images {
        height: 400px;
    }

    .story-badge {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        margin-top: 20px;
        justify-content: center;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .certifications-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   NAVIGATION DROPDOWN
============================================ */
.nav-dropdown {
    position: relative;
}

.nav-dropdown > a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.nav-dropdown > a::before {
    display: none;
}

.dropdown-arrow {
    width: 10px;
    height: 10px;
    flex-shrink: 0;
    vertical-align: middle;
    transition: var(--transition);
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--white);
    min-width: 220px;
    padding: 12px 0;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 100;
    list-style: none;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid var(--white);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 24px;
    color: var(--text-medium);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.dropdown-menu a:hover {
    background: var(--secondary-light);
    color: var(--primary);
    padding-left: 28px;
}

.dropdown-menu a::after {
    display: none;
}

/* ============================================
   TOUR OVERVIEW PAGE
============================================ */
.filter-section {
    padding: 60px 0;
    background: var(--white);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 28px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    background: transparent;
    color: var(--text-medium);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.tours-grid {
    padding: 0 0 120px;
    background: var(--white);
}

.tours-grid .packages-grid {
    grid-template-columns: repeat(3, 1fr);
}

.tour-card {
    opacity: 1;
    transform: scale(1);
    transition: var(--transition);
}

.tour-card.hidden {
    opacity: 0;
    transform: scale(0.8);
    position: absolute;
    pointer-events: none;
}

/* ============================================
   TOUR DETAIL PAGE
============================================ */
.tour-hero {
    position: relative;
    height: 500px;
    margin-top: 106px;
    overflow: hidden;
}

.tour-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.tour-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
}

.tour-hero .container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 60px;
}

.tour-hero .breadcrumb {
    justify-content: flex-start;
    margin-bottom: 16px;
}

.tour-hero h1 {
    font-size: clamp(36px, 5vw, 56px);
    color: var(--white);
    margin-bottom: 16px;
}

.tour-hero-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    max-width: 600px;
}

/* Tour Info Bar */
.tour-info-bar {
    background: var(--white);
    box-shadow: var(--shadow-md);
    margin-top: -40px;
    position: relative;
    z-index: 10;
    border-radius: 16px;
    margin-left: 24px;
    margin-right: 24px;
}

.tour-info-bar .container {
    padding: 0;
}

.info-bar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.info-bar-item {
    padding: 28px 32px;
    text-align: center;
    border-right: 1px solid rgba(0,0,0,0.08);
}

.info-bar-item:last-child {
    border-right: none;
}

.info-bar-icon {
    width: 48px;
    height: 48px;
    background: var(--accent-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    color: var(--accent);
}

.info-bar-icon svg {
    stroke: var(--accent);
}

.info-bar-label {
    font-size: 12px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.info-bar-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
}

/* Tour Content */
.tour-content {
    padding: 80px 0;
    background: var(--off-white);
}

.tour-content .container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.tour-main h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.tour-main > p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 24px;
}

.tour-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 48px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--white);
    border-radius: 12px;
}

.highlight-item svg {
    flex-shrink: 0;
    stroke: var(--accent);
}

.highlight-item span {
    font-size: 14px;
    color: var(--text-medium);
    font-weight: 500;
}

/* Itinerary Section */
.itinerary-section {
    margin-top: 48px;
}

.itinerary-section h2 {
    margin-bottom: 32px;
}

.itinerary-day {
    background: var(--white);
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.itinerary-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    cursor: pointer;
    transition: var(--transition);
}

.itinerary-header:hover {
    background: var(--secondary-light);
}

.day-number {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.day-number span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
}

.day-info {
    flex: 1;
}

.day-info h4 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 4px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
}

.day-info p {
    font-size: 14px;
    color: var(--text-light);
}

.day-toggle {
    width: 32px;
    height: 32px;
    background: var(--off-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.itinerary-day.active .day-toggle {
    background: var(--accent);
    transform: rotate(180deg);
}

.itinerary-day.active .day-toggle svg {
    stroke: var(--white);
}

.itinerary-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.itinerary-day.active .itinerary-content {
    max-height: 500px;
}

.itinerary-content-inner {
    padding: 0 24px 24px 100px;
    color: var(--text-light);
    line-height: 1.8;
}

.itinerary-content-inner ul {
    margin-top: 16px;
    padding-left: 20px;
}

.itinerary-content-inner li {
    margin-bottom: 8px;
}

/* Tour Sidebar */
.tour-sidebar {
    position: sticky;
    top: 140px;
}

.sidebar-card {
    background: var(--white);
    border-radius: 20px;
    padding: 32px;
    box-shadow: var(--shadow-md);
    margin-bottom: 24px;
}

.sidebar-card h3 {
    font-size: 24px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.price-display {
    text-align: center;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    margin-bottom: 24px;
}

.price-label {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.price-amount {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.price-amount span {
    font-size: 18px;
    font-family: 'DM Sans', sans-serif;
    color: var(--text-light);
    font-weight: 400;
}

.sidebar-card .btn {
    width: 100%;
    justify-content: center;
    margin-bottom: 16px;
}

.sidebar-card .btn:last-child {
    margin-bottom: 0;
}

/* Inclusions List */
.inclusions-card h4 {
    font-size: 16px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.inclusions-list {
    list-style: none;
    margin-bottom: 24px;
}

.inclusions-list:last-child {
    margin-bottom: 0;
}

.inclusions-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    font-size: 14px;
    color: var(--text-medium);
}

.inclusions-list li:last-child {
    border-bottom: none;
}

.inclusions-list li svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.inclusions-list.included li svg {
    stroke: var(--accent);
}

.inclusions-list.excluded li svg {
    stroke: #ef4444;
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
    background: var(--white);
}

.gallery-section .section-header {
    margin-bottom: 48px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

.gallery-item:first-child {
    /* Keep first item same size as the rest (uniform grid) */
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    transition: var(--transition);
}

.gallery-item:hover::after {
    background: rgba(0,0,0,0.2);
}

/* Gallery Lightbox Zoom Icon */
.gallery-item .zoom-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.gallery-item:hover .zoom-icon {
    transform: translate(-50%, -50%) scale(1);
}

.gallery-item .zoom-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary);
}

/* Lightbox Modal */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.lightbox.active .lightbox-content img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.lightbox-close:hover {
    background: var(--primary);
}

.lightbox-close:hover svg {
    stroke: var(--white);
}

.lightbox-close svg {
    width: 24px;
    height: 24px;
    stroke: var(--text-dark);
    transition: var(--transition);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.lightbox-nav:hover {
    background: var(--primary);
}

.lightbox-nav:hover svg {
    stroke: var(--white);
}

.lightbox-nav svg {
    width: 24px;
    height: 24px;
    stroke: var(--text-dark);
    transition: var(--transition);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    background: rgba(0, 0, 0, 0.5);
    padding: 8px 16px;
    border-radius: 20px;
}

/* Lightbox Mobile Responsive */
@media (max-width: 768px) {
    .lightbox-nav {
        width: 40px;
        height: 40px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
    }
}

/* Related Tours */
.related-section {
    padding: 80px 0;
    background: var(--off-white);
}

.related-section .packages-grid {
    grid-template-columns: repeat(3, 1fr);
}

/* ============================================
   TOUR PAGE RESPONSIVE
============================================ */
@media (max-width: 1024px) {
    .tour-hero {
        height: 400px;
        margin-top: 80px;
    }

    .info-bar-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .info-bar-item {
        border-bottom: 1px solid rgba(0,0,0,0.08);
    }

    .info-bar-item:nth-child(2) {
        border-right: none;
    }

    .info-bar-item:nth-child(3),
    .info-bar-item:nth-child(4) {
        border-bottom: none;
    }

    .tour-content .container {
        grid-template-columns: 1fr;
    }

    .tour-sidebar {
        position: static;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item:first-child {
        /* Keep first item same size as the rest (uniform grid) */
        grid-column: auto;
        grid-row: auto;
        aspect-ratio: 1;
    }

    .related-section .packages-grid,
    .tours-grid .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Mobile Dropdown */
    .nav-dropdown > a {
        justify-content: center;
    }

    .nav-dropdown > a .dropdown-arrow {
        display: inline-block;
        transition: transform 0.3s ease;
    }

    .nav-dropdown.active > a .dropdown-arrow {
        transform: rotate(180deg);
    }

    .nav-dropdown {
        position: static;
    }

    .dropdown-menu {
        position: static !important;
        transform: none !important;
        opacity: 1;
        visibility: visible;
        box-shadow: none !important;
        background: transparent !important;
        padding: 0 !important;
        margin: 0 !important;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        min-width: 0 !important;
        width: 100% !important;
        left: 0 !important;
        right: 0 !important;
        list-style: none;
    }

    .dropdown-menu::before {
        display: none !important;
    }

    .nav-dropdown.active .dropdown-menu {
        max-height: 300px;
    }

    .dropdown-menu li {
        text-align: center !important;
        border-bottom: 1px solid rgba(0,0,0,0.05);
        margin: 0 !important;
        padding: 0 !important;
    }

    .dropdown-menu li a {
        display: block !important;
        padding: 12px 20px !important;
        font-size: 14px;
        color: var(--text-light);
        text-align: center !important;
    }

    .dropdown-menu li a:hover {
        background: transparent !important;
        color: var(--primary);
    }

    .tour-hero {
        height: 350px;
        margin-top: 70px;
    }

    .tour-hero h1 {
        font-size: 32px;
    }

    .tour-info-bar {
        margin-left: 16px;
        margin-right: 16px;
        margin-top: -30px;
    }

    .info-bar-grid {
        grid-template-columns: 1fr 1fr;
    }

    .info-bar-item {
        padding: 20px 16px;
    }

    .tour-highlights {
        grid-template-columns: 1fr;
    }

    .itinerary-content-inner {
        padding-left: 24px;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-item:first-child {
        /* Keep first item same size as the rest (uniform grid) */
        grid-column: auto;
    }

    .related-section .packages-grid,
    .tours-grid .packages-grid {
        grid-template-columns: 1fr;
    }

    .filter-buttons {
        gap: 8px;
    }

    .filter-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* ============================================
   ABOUT PAGE - RESPONSIVE STYLES
============================================ */
@media (max-width: 1024px) {
    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-intro-image {
        height: 400px;
        order: -1;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .giving-back-items {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .about-intro-section {
        padding: 60px 0;
    }

    .about-intro-lead {
        font-size: 18px;
    }

    .about-intro-image {
        height: 300px;
    }

    .mission-vision-section {
        padding: 60px 0;
    }

    .mission-block,
    .vision-block {
        padding: 32px;
    }

    .mission-block h2,
    .vision-block h2 {
        font-size: 24px;
    }

    .why-choose-section {
        padding: 60px 0;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .why-choose-item {
        padding: 30px;
    }

    .why-choose-item h3 {
        font-size: 20px;
    }

    .giving-back-section {
        padding: 60px 0;
    }

    .giving-back-items {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .giving-back-item {
        padding: 30px 24px;
    }

    .giving-back-lead {
        font-size: 16px;
        margin-bottom: 40px;
    }
}

/* ============================================
   ITINERARIES SLIDER SECTION
============================================ */
.itineraries-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}

.itineraries-slider-wrapper {
    position: relative;
    margin: 0 -15px;
    padding: 0 50px;
}

.itineraries-slider {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px 0;
}

.itineraries-slider::-webkit-scrollbar {
    display: none;
}

.itineraries-slider .package-card {
    flex: 0 0 calc(33.333% - 16px);
    min-width: 320px;
    max-width: 400px;
}

.itineraries-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.itineraries-arrow:hover {
    background: var(--primary-color, #ffa212);
    color: #fff;
}

.itineraries-arrow:hover svg {
    stroke: #fff;
}

.itineraries-arrow svg {
    stroke: #333;
    transition: stroke 0.3s ease;
}

.itineraries-prev {
    left: 0;
}

.itineraries-next {
    right: 0;
}

.itineraries-view-all {
    text-align: center;
    margin-top: 40px;
}

.itineraries-view-all .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: transparent;
    border: 2px solid var(--primary-color, #ffa212);
    color: var(--primary-color, #ffa212);
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.itineraries-view-all .btn-secondary:hover {
    background: var(--primary-color, #ffa212);
    color: #fff;
}

/* Itineraries Slider Responsive */
@media (max-width: 1200px) {
    .itineraries-slider .package-card {
        flex: 0 0 calc(50% - 12px);
    }
}

@media (max-width: 768px) {
    .itineraries-section {
        padding: 60px 0;
    }

    .itineraries-slider-wrapper {
        padding: 0 40px;
    }

    .itineraries-slider .package-card {
        flex: 0 0 calc(100% - 20px);
        min-width: 280px;
    }

    .itineraries-arrow {
        width: 40px;
        height: 40px;
    }

    .itineraries-arrow svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .itineraries-slider-wrapper {
        padding: 0 35px;
    }

    .itineraries-arrow {
        width: 32px;
        height: 32px;
    }

    .itineraries-arrow svg {
        width: 16px;
        height: 16px;
    }
}
