:root {
    --primary-dark: #0a0a0a;
    --secondary-dark: #1a1a1a;
    --tertiary-dark: #2d2d2d;
    --accent: #c9a227;
    --accent-light: #e6c04a;
    --accent-dark: #9a7b1e;
    --text-light: #ffffff;
    --text-muted: #a0a0a0;
    --text-subtle: #666666;
    --earthy-brown: #3d2b1f;
    --forest-green: #1e3d2f;
    --gradient-dark: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.9) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.2);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.3);
    --shadow-lg: 0 16px 48px rgba(0,0,0,0.4);
    --shadow-glow: 0 0 30px rgba(201, 162, 39, 0.3);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--primary-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--gradient-accent);
    z-index: 9999;
    transform-origin: left;
    transform: scaleX(0);
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 5%;
    background: transparent;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.875rem 5%;
    box-shadow: var(--shadow-md);
}

.nav-logo img {
    height: 100px;
    /* filter: brightness(0) invert(1); */
    transition: var(--transition-base);
}

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

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

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

.navbar.scrolled .nav-links a {
    text-shadow: none;
}

.btn-download {
    background: var(--accent);
    color: var(--primary-dark) !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: var(--radius-sm);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.btn-download:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 2px;
    background: var(--text-light);
    transition: var(--transition-base);
    border-radius: 2px;
}

.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 2rem;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.logo-container {
    margin-bottom: 1.5rem;
}

.hero-logo {
    width: 180px;
    filter: brightness(0) invert(1);
    margin: 0 auto;
}

.hero-title {
    /* font-size: clamp(3rem, 8vw, 6rem); */
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.title-line {
    display: inline-block;
    text-shadow: 2px 4px 30px rgba(0,0,0,0.5);
}

.title-line.accent {
    color: var(--accent);
    text-shadow: 2px 4px 30px rgba(201, 162, 39, 0.3);
}

.hero-tagline {
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    font-weight: 300;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
    color: rgba(255,255,255,0.9);
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent);
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    transition: var(--transition-slow);
}

.hero-cta:hover {
    background: var(--accent-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.hero-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    border-radius: var(--radius-sm);
}

.hero-cta-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(201, 162, 39, 0.1);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    z-index: 20;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 10px;
    background: var(--accent);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease infinite;
}

.scroll-indicator span {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
    font-weight: 600;
}

.section-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.thinai-section {
    padding: 8rem 5%;
    background: var(--secondary-dark);
    position: relative;
    overflow: hidden;
}

.thinai-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.thinai-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.thinai-card {
    position: relative;
    height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.1);
}

.thinai-card__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.thinai-card[data-thinai="kurinji"] .thinai-card__bg {
    background-image: linear-gradient(180deg, rgba(74, 28, 107, 0.7) 0%, rgba(26, 10, 46, 0.95) 100%), 
                      url('../assets/images/hero/hima.jpg');
}

.thinai-card[data-thinai="mullai"] .thinai-card__bg {
    background-image: linear-gradient(180deg, rgba(30, 61, 47, 0.7) 0%, rgba(13, 31, 23, 0.95) 100%), 
                      url('../assets/images/hero/mullai.jpg');
}

.thinai-card[data-thinai="marutham"] .thinai-card__bg {
    background-image: linear-gradient(180deg, rgba(139, 115, 85, 0.7) 0%, rgba(93, 78, 55, 0.95) 100%), 
                      url('../assets/images/hero/hornbill.jpg');
}

.thinai-card[data-thinai="neithal"] .thinai-card__bg {
    background-image: linear-gradient(180deg, rgba(12, 74, 110, 0.7) 0%, rgba(8, 47, 73, 0.95) 100%), 
                      url('../assets/images/hero/palai.jpg');
}

.thinai-card[data-thinai="paalai"] .thinai-card__bg {
    background-image: linear-gradient(180deg, rgba(146, 64, 14, 0.7) 0%, rgba(69, 26, 3, 0.95) 100%), 
                      url('../assets/images/hero/sunset.jpg');
}

.thinai-card:hover .thinai-card__bg {
    transform: scale(1.1);
}

.thinai-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.5rem;
    z-index: 10;
    text-align: center;
}

.thinai-card__icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.thinai-card__title {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.thinai-card__subtitle {
    font-size: 0.85rem;
    color: var(--accent);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.thinai-card__desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.thinai-card:hover .thinai-card__desc {
    opacity: 1;
    transform: translateY(0);
}

.destinations {
    padding: 8rem 5%;
    background: var(--primary-dark);
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.destination-card {
    position: relative;
    height: 500px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.05);
}

.card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 20%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.95) 100%);
    transition: all 0.5s ease;
}

.destination-card:hover .card-overlay {
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.5) 40%, rgba(0,0,0,0.98) 100%);
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    z-index: 10;
}

.card-title {
    font-size: 1.8rem;
    margin-bottom: 0.25rem;
    transition: transform 0.4s ease;
}

.destination-card:hover .card-title {
    transform: translateY(-8px);
}

.card-location {
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    transition: all 0.4s ease;
}

.destination-card:hover .card-location {
    transform: translateY(-8px);
}

.card-itineraries {
    margin-top: 1.25rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.1s;
}

.destination-card:hover .card-itineraries {
    opacity: 1;
    transform: translateY(0);
}

.itinerary-label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.itinerary-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.itinerary-link:hover {
    color: var(--accent);
    padding-left: 0.75rem;
    border-bottom-color: var(--accent);
}

.itinerary-link.coming-soon {
    opacity: 0.5;
    cursor: default;
}

.itinerary-link.coming-soon:hover {
    color: inherit;
    padding-left: 0;
}

.itinerary-icon {
    color: var(--accent);
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.itinerary-link:hover .itinerary-icon {
    transform: translateX(5px);
}

.card-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.destination-card:hover .card-particles {
    opacity: 1;
}

.about {
    padding: 8rem 5%;
    background: var(--secondary-dark);
    position: relative;
    overflow: hidden;
}

.about-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../assets/images/hero/hero-nature.jpg') center/cover no-repeat;
    opacity: 0.08;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.about-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.about-text strong {
    color: var(--text-light);
}

.about-contact {
    margin-top: 2rem;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: rgba(201, 162, 39, 0.1);
    border: 1px solid var(--accent);
    border-radius: var(--radius-sm);
    color: var(--accent);
    font-weight: 500;
}

.contact-link:hover {
    background: var(--accent);
    color: var(--primary-dark);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--primary-dark);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,0.05);
}

.stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.85rem;
    letter-spacing: 1px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.cta-banner {
    position: relative;
    padding: 6rem 5%;
    text-align: center;
    overflow: hidden;
}

.cta-banner__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--forest-green) 0%, var(--earthy-brown) 50%, var(--accent-dark) 100%);
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
}

.cta-banner__content {
    position: relative;
    z-index: 10;
    max-width: 700px;
    margin: 0 auto;
}

.cta-banner h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.cta-banner p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: var(--text-light);
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.footer {
    padding: 5rem 5% 2rem;
    background: var(--primary-dark);
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    text-align: center;
    margin-bottom: 3rem;
}

.footer-logo img {
    height: 150px;
    /* filter: brightness(0) invert(1); */
    margin: 0 auto 1rem;
}

.footer-logo p {
    color: var(--text-muted);
    font-style: italic;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    font-size: 1rem;
    margin-bottom: 1.25rem;
    color: var(--accent);
}

.footer-col a, .footer-col p {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.footer-col a:hover {
    color: var(--text-light);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-subtle);
    font-size: 0.85rem;
}

@media (max-width: 1440px) {
    .thinai-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 1rem;
    }
    
    .thinai-card {
        height: 350px;
    }
}

@media (max-width: 1024px) {
    .thinai-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-stats {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        padding: 2rem;
        gap: 2rem;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links a {
        font-size: 1.5rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    .thinai-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .thinai-card {
        height: 280px;
    }
    
    .destinations-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .destination-card {
        height: 420px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.hero-enhanced {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .hero-bg-slider {
            position: absolute;
            inset: 0;
            z-index: 0;
        }

        .hero-slide {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transform: scale(1.1);
            transition: opacity 1.5s ease, transform 8s ease;
        }

        .hero-slide.active {
            opacity: 1;
            transform: scale(1);
            animation: heroSlideZoom 8s ease-out forwards;
        }

        @keyframes heroSlideZoom {
            0% { transform: scale(1); }
            100% { transform: scale(1.08); }
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(10, 10, 10, 0.7) 0%, rgba(30, 61, 47, 0.5) 50%, rgba(10, 10, 10, 0.8) 100%);
            z-index: 1;
        }

        .hero-smoke {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 60%;
            z-index: 2;
            pointer-events: none;
            overflow: hidden;
        }

        .smoke-layer {
            position: absolute;
            bottom: -20%;
            left: -10%;
            right: -10%;
            height: 100%;
            background: 
                radial-gradient(ellipse 80% 50% at 20% 100%, rgba(255,255,255,0.08) 0%, transparent 50%),
                radial-gradient(ellipse 60% 40% at 50% 100%, rgba(255,255,255,0.06) 0%, transparent 45%),
                radial-gradient(ellipse 70% 45% at 80% 100%, rgba(255,255,255,0.07) 0%, transparent 50%);
            filter: blur(30px);
            animation: smokeRise 12s ease-in-out infinite;
        }

        .smoke-layer:nth-child(2) {
            background: 
                radial-gradient(ellipse 90% 55% at 30% 100%, rgba(255,255,255,0.05) 0%, transparent 55%),
                radial-gradient(ellipse 50% 35% at 70% 100%, rgba(255,255,255,0.04) 0%, transparent 40%);
            filter: blur(40px);
            animation: smokeRise 15s ease-in-out infinite reverse;
            animation-delay: -3s;
        }

        .smoke-layer:nth-child(3) {
            background: 
                radial-gradient(ellipse 100% 60% at 50% 100%, rgba(201, 162, 39, 0.03) 0%, transparent 50%),
                radial-gradient(ellipse 70% 40% at 15% 100%, rgba(255,255,255,0.04) 0%, transparent 45%);
            filter: blur(50px);
            animation: smokeRise 18s ease-in-out infinite;
            animation-delay: -6s;
        }

        @keyframes smokeRise {
            0%, 100% {
                transform: translateY(0) scaleY(1);
                opacity: 0.8;
            }
            50% {
                transform: translateY(-30%) scaleY(1.2);
                opacity: 0.4;
            }
        }

        .hero-enhanced .hero-content {
            position: relative;
            z-index: 10;
            text-align: center;
            max-width: 1000px;
            padding: 0 5%;
            margin-top: 60px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.75rem 1.5rem;
            background: rgba(201, 162, 39, 0.15);
            border: 1px solid rgba(201, 162, 39, 0.4);
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 1px;
            color: var(--accent);
            margin-bottom: 2rem;
            backdrop-filter: blur(10px);
        }

        .badge-icon {
            font-size: 1.2rem;
        }

        .hero-enhanced .hero-title {
            margin-bottom: 1.5rem;
        }

        .title-main {
            display: block;
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            font-weight: 700;
            line-height: 1.1;
            background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .title-accent-line {
            display: block;
            font-size: clamp(1.8rem, 4vw, 3rem);
            font-weight: 500;
            background: var(--gradient-accent);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-top: 0.25rem;
        }

        .hero-enhanced .hero-tagline {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.2rem, 2.5vw, 1.6rem);
            font-style: italic;
            color: rgba(255,255,255,0.8);
            margin-bottom: 1rem;
        }

        .tagline-quote {
            color: var(--accent);
            font-size: 1.5em;
        }

        .hero-enhanced .hero-subtitle {
            font-size: 1.1rem;
            color: rgba(255,255,255,0.7);
            max-width: 700px;
            margin: 0 auto 2rem;
            line-height: 1.8;
        }

        .hero-stats {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 2rem;
            margin-bottom: 2.5rem;
            flex-wrap: wrap;
        }

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

        .hero-stat-number {
            display: block;
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--accent);
            line-height: 1;
        }

        .hero-stat-label {
            font-size: 0.85rem;
            color: rgba(255,255,255,0.6);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .hero-stat-divider {
            width: 1px;
            height: 40px;
            background: rgba(255,255,255,0.2);
        }

        .hero-enhanced .hero-cta-group {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        .hero-cta-primary {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1.1rem 2.5rem;
            background: var(--gradient-accent);
            color: var(--primary-dark);
            font-weight: 700;
            font-size: 0.95rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            border-radius: 50px;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            box-shadow: 0 5px 30px rgba(201, 162, 39, 0.4);
        }

        .hero-cta-primary:hover {
            transform: translateY(-4px) scale(1.02);
            box-shadow: 0 10px 40px rgba(201, 162, 39, 0.6);
        }

        .hero-cta-primary svg {
            transition: transform 0.3s ease;
        }

        .hero-cta-primary:hover svg {
            transform: translateX(5px);
        }

        .hero-enhanced .hero-cta-secondary {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1.1rem 2rem;
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.3);
            color: white;
            font-weight: 600;
            font-size: 0.95rem;
            border-radius: 50px;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        .hero-enhanced .hero-cta-secondary:hover {
            background: rgba(255,255,255,0.2);
            border-color: rgba(255,255,255,0.5);
        }

        .play-icon {
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--accent);
            color: var(--primary-dark);
            border-radius: 50%;
            font-size: 0.7rem;
        }

        .hero-scroll-indicator {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.75rem;
            z-index: 10;
            color: rgba(255,255,255,0.5);
            font-size: 0.75rem;
            letter-spacing: 1px;
        }

        .scroll-mouse {
            width: 24px;
            height: 38px;
            border: 2px solid rgba(255,255,255,0.4);
            border-radius: 12px;
            position: relative;
        }

        .scroll-wheel {
            width: 4px;
            height: 8px;
            background: var(--accent);
            border-radius: 2px;
            position: absolute;
            top: 6px;
            left: 50%;
            transform: translateX(-50%);
            animation: scrollWheel 2s ease-in-out infinite;
        }

        @keyframes scrollWheel {
            0%, 100% { opacity: 1; top: 6px; }
            50% { opacity: 0.3; top: 18px; }
        }

        .hero-slide-indicators {
            position: absolute;
            bottom: 2rem;
            right: 5%;
            display: flex;
            gap: 0.75rem;
            z-index: 10;
        }

        .slide-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255,255,255,0.3);
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .slide-dot.active {
            background: var(--accent);
            transform: scale(1.2);
        }

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

        .welcome-section-new {
            padding: 8rem 5%;
            background: linear-gradient(180deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
            position: relative;
            overflow: hidden;
        }

        .welcome-bg-pattern {
            position: absolute;
            inset: 0;
            background-image: 
                radial-gradient(circle at 20% 80%, rgba(201, 162, 39, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(30, 61, 47, 0.1) 0%, transparent 50%);
        }

        .section-smoke {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 50%;
            pointer-events: none;
            overflow: hidden;
            z-index: 0;
        }

        .section-smoke .smoke-layer {
            position: absolute;
            bottom: -30%;
            left: -10%;
            right: -10%;
            height: 100%;
            background: 
                radial-gradient(ellipse 80% 50% at 25% 100%, rgba(255,255,255,0.04) 0%, transparent 50%),
                radial-gradient(ellipse 60% 40% at 60% 100%, rgba(255,255,255,0.03) 0%, transparent 45%),
                radial-gradient(ellipse 70% 45% at 85% 100%, rgba(255,255,255,0.035) 0%, transparent 50%);
            filter: blur(40px);
            animation: sectionSmokeRise 15s ease-in-out infinite;
        }

        .section-smoke .smoke-layer:nth-child(2) {
            background: 
                radial-gradient(ellipse 90% 55% at 40% 100%, rgba(201, 162, 39, 0.02) 0%, transparent 55%),
                radial-gradient(ellipse 50% 35% at 75% 100%, rgba(255,255,255,0.025) 0%, transparent 40%);
            filter: blur(50px);
            animation: sectionSmokeRise 20s ease-in-out infinite reverse;
            animation-delay: -5s;
        }

        @keyframes sectionSmokeRise {
            0%, 100% {
                transform: translateY(0) scaleY(1);
                opacity: 0.7;
            }
            50% {
                transform: translateY(-25%) scaleY(1.15);
                opacity: 0.3;
            }
        }


        .welcome-container-new {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 5rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

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

        .welcome-img-main {
            position: relative;
            width: 85%;
            height: 400px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 30px 80px rgba(0,0,0,0.5);
        }

        .welcome-img-main img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .welcome-img-main:hover img {
            transform: scale(1.05);
        }

        .img-overlay-text {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 2rem;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
        }

        .img-overlay-text span {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            font-style: italic;
            color: var(--accent);
        }

        .welcome-img-float {
            position: absolute;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0,0,0,0.4);
            border: 4px solid var(--primary-dark);
        }

        .welcome-img-float img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .welcome-img-float-1 {
            width: 180px;
            height: 180px;
            bottom: 20px;
            right: 0;
            animation: floatImage1 4s ease-in-out infinite;
        }

        .welcome-img-float-2 {
            width: 150px;
            height: 150px;
            top: 50px;
            right: -20px;
            animation: floatImage2 5s ease-in-out infinite;
        }

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

        @keyframes floatImage2 {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-10px) rotate(2deg); }
        }

        .welcome-experience-badge {
            position: absolute;
            bottom: 100px;
            left: -30px;
            padding: 1.5rem;
            background: var(--gradient-accent);
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 15px 40px rgba(201, 162, 39, 0.4);
            z-index: 10;
        }

        .exp-number {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-dark);
            line-height: 1;
        }

        .exp-text {
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--primary-dark);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .welcome-label {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .label-line {
            width: 50px;
            height: 2px;
            background: var(--accent);
        }

        .welcome-label span:last-child {
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--accent);
        }

        .welcome-heading {
            font-size: clamp(2.2rem, 4vw, 3.2rem);
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }

        .text-gradient {
            background: var(--gradient-accent);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .welcome-description {
            font-size: 1.05rem;
            line-height: 1.9;
            color: var(--text-muted);
            margin-bottom: 1.25rem;
        }

        .welcome-highlights {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin: 2rem 0;
        }

        .highlight-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            padding: 1rem;
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .highlight-item:hover {
            background: rgba(201, 162, 39, 0.1);
            border-color: rgba(201, 162, 39, 0.3);
            transform: translateX(10px);
        }

        .highlight-icon {
            font-size: 1.5rem;
            padding: 0.75rem;
            background: rgba(201, 162, 39, 0.15);
            border-radius: 10px;
        }

        .highlight-content h4 {
            font-size: 1.1rem;
            margin-bottom: 0.25rem;
        }

        .highlight-content p {
            font-size: 0.9rem;
            color: var(--text-muted);
        }

        .welcome-cta-row {
            display: flex;
            align-items: center;
            gap: 2rem;
            flex-wrap: wrap;
            margin-top: 2rem;
        }

        .welcome-btn-primary {
            display: inline-block;
            padding: 1rem 2.5rem;
            background: var(--gradient-accent);
            color: var(--primary-dark);
            font-weight: 700;
            font-size: 0.95rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            border-radius: 50px;
            transition: all 0.4s ease;
            box-shadow: 0 5px 25px rgba(201, 162, 39, 0.3);
        }

        .welcome-btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 35px rgba(201, 162, 39, 0.5);
        }

        .welcome-trust {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .trust-avatars {
            display: flex;
        }

        .trust-avatars img {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 2px solid var(--primary-dark);
            margin-left: -12px;
            object-fit: cover;
        }

        .trust-avatars img:first-child {
            margin-left: 0;
        }

        .trust-text {
            display: flex;
            flex-direction: column;
        }

        .trust-rating {
            color: var(--accent);
            font-size: 0.9rem;
            letter-spacing: 2px;
        }

        .trust-text span:last-child {
            font-size: 0.8rem;
            color: var(--text-muted);
        }

        @media (max-width: 1024px) {
            .welcome-container-new {
                grid-template-columns: 1fr;
                gap: 4rem;
            }

            .welcome-images-stack {
                height: auto;
                display: flex;
                justify-content: center;
            }

            .welcome-img-main {
                width: 100%;
                max-width: 500px;
                height: 350px;
            }

            .welcome-img-float-1,
            .welcome-img-float-2 {
                display: none;
            }

            .welcome-experience-badge {
                left: auto;
                right: 10px;
                bottom: 10px;
            }
        }

        @media (max-width: 768px) {
            .hero-stats {
                gap: 1rem;
            }

            .hero-stat-number {
                font-size: 2rem;
            }

            .hero-stat-divider {
                height: 30px;
            }

            .hero-slide-indicators {
                right: auto;
                left: 50%;
                transform: translateX(-50%);
                bottom: 6rem;
            }

            .welcome-cta-row {
                flex-direction: column;
                align-items: flex-start;
            }
        }

        .welcome-text {
            font-size: 1.1rem;
            line-height: 1.9;
            color: var(--text-muted);
            margin-bottom: 1.5rem;
        }

        .welcome-features {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-top: 2rem;
        }

        .welcome-feature {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.6rem 1rem;
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 8px;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .welcome-feature:hover {
            background: rgba(201, 162, 39, 0.15);
            border-color: rgba(201, 162, 39, 0.4);
        }

        .welcome-visual {
            position: relative;
        }

        .welcome-image-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .welcome-img {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0,0,0,0.4);
        }

        .welcome-img:first-child {
            grid-column: span 2;
            height: 250px;
        }

        .welcome-img:nth-child(2),
        .welcome-img:nth-child(3) {
            height: 150px;
        }

        .welcome-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .welcome-img:hover img {
            transform: scale(1.05);
        }

        .welcome-rating {
            position: absolute;
            top: -20px;
            right: -20px;
            padding: 1rem 1.5rem;
            background: var(--gradient-accent);
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(201, 162, 39, 0.4);
            z-index: 10;
        }

        .welcome-rating .stars {
            color: var(--primary-dark);
            font-size: 1rem;
            letter-spacing: 2px;
        }

        .welcome-rating .rating-text {
            font-size: 0.7rem;
            font-weight: 600;
            color: var(--primary-dark);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .explore-section {
            padding: 8rem 5%;
            background: var(--primary-dark);
            position: relative;
        }

        .explore-container {
            max-width: 1300px;
            margin: 0 auto;
        }

        .explore-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .explore-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }

        .explore-card {
            position: relative;
            padding: 3rem;
            background: linear-gradient(135deg, rgba(30, 30, 30, 0.9), rgba(20, 20, 20, 0.95));
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.4s ease;
        }

        .explore-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            opacity: 0.15;
            background-size: cover;
            background-position: center;
            transition: opacity 0.4s ease, transform 0.6s ease;
        }

        .explore-card--cultural::before {
            background-image: url('../assets/images/hero/_DSC3191.jpg');
        }

        .explore-card--adventure::before {
            background-image: url('../assets/images/hero/moonrise.jpg');
        }

        .explore-card:hover::before {
            opacity: 0.25;
            transform: scale(1.05);
        }

        .explore-card:hover {
            transform: translateY(-5px);
            border-color: rgba(201, 162, 39, 0.3);
            box-shadow: 0 25px 60px rgba(0,0,0,0.4);
        }

        .explore-card__content {
            position: relative;
            z-index: 1;
        }

        .explore-card__icon {
            width: 70px;
            height: 70px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, rgba(201, 162, 39, 0.2), rgba(201, 162, 39, 0.1));
            border: 2px solid rgba(201, 162, 39, 0.4);
            border-radius: 50%;
            font-size: 2rem;
            margin-bottom: 1.5rem;
            transition: all 0.4s ease;
        }

        .explore-card:hover .explore-card__icon {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 0 30px rgba(201, 162, 39, 0.4);
        }

        .explore-card__title {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }

        .explore-card__text {
            font-size: 1rem;
            line-height: 1.8;
            color: var(--text-muted);
            margin-bottom: 1.5rem;
        }

        .explore-card__features {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .explore-card__feature {
            padding: 0.4rem 0.8rem;
            background: rgba(255,255,255,0.05);
            border-radius: 20px;
            font-size: 0.8rem;
            color: var(--text-muted);
        }

        .about-full {
            padding: 8rem 5%;
            background: linear-gradient(180deg, var(--secondary-dark) 0%, var(--primary-dark) 100%);
            position: relative;
            overflow: hidden;
        }

        .about-full::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--accent), transparent);
        }

        .about-full-container {
            max-width: 1300px;
            margin: 0 auto;
        }

        .about-intro {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 4rem;
            align-items: center;
            margin-bottom: 5rem;
        }

        .about-intro-content {
            padding-right: 2rem;
        }

        .about-intro-image {
            position: relative;
        }

        .about-main-img {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 30px 70px rgba(0,0,0,0.5);
        }

        .about-main-img img {
            width: 100%;
            height: 400px;
            object-fit: cover;
        }

        .about-accent-img {
            position: absolute;
            bottom: -30px;
            left: -40px;
            width: 180px;
            height: 180px;
            border-radius: 15px;
            overflow: hidden;
            border: 4px solid var(--primary-dark);
            box-shadow: 0 15px 40px rgba(0,0,0,0.5);
        }

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

        .mission-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }

        .mission-card {
            padding: 2.5rem;
            background: linear-gradient(135deg, rgba(30, 30, 30, 0.8), rgba(20, 20, 20, 0.9));
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 20px;
            transition: all 0.4s ease;
        }

        .mission-card:hover {
            transform: translateY(-5px);
            border-color: rgba(201, 162, 39, 0.3);
        }

        .mission-card__icon {
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(201, 162, 39, 0.15);
            border-radius: 12px;
            font-size: 1.5rem;
            margin-bottom: 1.25rem;
        }

        .mission-card__title {
            font-family: 'Playfair Display', serif;
            font-size: 1.4rem;
            margin-bottom: 1rem;
        }

        .mission-card__text {
            font-size: 0.95rem;
            line-height: 1.8;
            color: var(--text-muted);
        }

        .testimonial-section {
            padding: 8rem 5%;
            background: var(--primary-dark);
            position: relative;
        }

        .testimonial-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .testimonial-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .testimonial-card {
            padding: 2rem;
            background: linear-gradient(135deg, rgba(30, 30, 30, 0.9), rgba(20, 20, 20, 0.95));
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 20px;
            transition: all 0.4s ease;
            position: relative;
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 1rem;
            right: 1.5rem;
            font-family: 'Playfair Display', serif;
            font-size: 5rem;
            color: rgba(201, 162, 39, 0.15);
            line-height: 1;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            border-color: rgba(201, 162, 39, 0.3);
            box-shadow: 0 20px 50px rgba(0,0,0,0.3);
        }

        .testimonial-stars {
            color: var(--accent);
            margin-bottom: 1rem;
            letter-spacing: 2px;
        }

        .testimonial-text {
            font-size: 1rem;
            line-height: 1.8;
            color: var(--text-muted);
            margin-bottom: 1.5rem;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .testimonial-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            overflow: hidden;
            border: 2px solid rgba(201, 162, 39, 0.4);
        }

        .testimonial-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .testimonial-info {
            flex: 1;
        }

        .testimonial-name {
            font-weight: 600;
            font-size: 1rem;
            margin-bottom: 0.25rem;
        }

        .testimonial-role {
            font-size: 0.8rem;
            color: var(--text-muted);
        }

        .sustainability-section {
            padding: 8rem 5%;
            background: linear-gradient(135deg, rgba(30, 61, 47, 0.4), var(--primary-dark));
            position: relative;
            overflow: hidden;
        }

        .sustainability-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('../assets/images/gallery/pine-forest.jpg') center/cover;
            opacity: 0.1;
        }

        .sustainability-container {
            max-width: 1100px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .sustainability-icon {
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, rgba(76, 175, 80, 0.3), rgba(45, 90, 63, 0.4));
            border: 2px solid rgba(76, 175, 80, 0.5);
            border-radius: 50%;
            font-size: 2.5rem;
            margin: 0 auto 2rem;
            animation: floatUpDown 3s ease-in-out infinite;
        }

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

        .sustainability-title {
            font-size: clamp(2rem, 4vw, 3rem);
            margin-bottom: 1.5rem;
        }

        .sustainability-title .highlight {
            color: #4caf50;
        }

        .sustainability-text {
            font-size: 1.2rem;
            line-height: 1.9;
            color: var(--text-muted);
            max-width: 800px;
            margin: 0 auto 2.5rem;
        }

        .sustainability-features {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .sustainability-feature {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1rem 1.5rem;
            background: rgba(76, 175, 80, 0.15);
            border: 1px solid rgba(76, 175, 80, 0.3);
            border-radius: 30px;
            font-size: 0.95rem;
            color: rgba(255,255,255,0.9);
            transition: all 0.3s ease;
        }

        .sustainability-feature:hover {
            background: rgba(76, 175, 80, 0.25);
            transform: translateY(-3px);
        }

        .sustainability-cta {
            margin-top: 3rem;
        }

        .sustainability-cta a {
            display: inline-block;
            padding: 1rem 2.5rem;
            background: linear-gradient(135deg, #4caf50, #2e7d32);
            color: white;
            font-weight: 600;
            font-size: 0.95rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            border-radius: 50px;
            transition: all 0.4s ease;
            box-shadow: 0 5px 25px rgba(76, 175, 80, 0.3);
        }

        .sustainability-cta a:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 35px rgba(76, 175, 80, 0.5);
        }

        .social-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.social-links a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.85);
    transition: all 0.3s ease;
}

.social-links svg {
    width: 22px;
    height: 22px;
    fill: var(--accent);
}

.social-links a:hover {
    color: var(--accent);
    transform: translateX(6px);
}


        @media (max-width: 1024px) {
            .welcome-container,
            .about-intro {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .welcome-content,
            .about-intro-content {
                padding-right: 0;
                text-align: center;
            }

            .welcome-features {
                justify-content: center;
            }

            .welcome-rating {
                right: 10px;
                top: 10px;
            }

            .about-accent-img {
                left: auto;
                right: -20px;
            }
        }

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

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

            .welcome-image-grid {
                grid-template-columns: 1fr;
            }

            .welcome-img:first-child {
                grid-column: span 1;
            }

            .sustainability-features {
                flex-direction: column;
                align-items: center;
            }
        }

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    .hero-content {
        padding: 1rem;
    }
    .hero-title {
    font-size: clamp(1.8rem, 7vw, 2.6rem);
    line-height: 1.2;
    letter-spacing: 0.02em;

    padding: 0 10px;
}
    
    .hero-cta-group {
        flex-direction: column;
    }
    
    .thinai-grid {
        grid-template-columns: 1fr;
    }
    
    .thinai-card {
        height: 250px;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 320px) {
    .navbar {
        padding: 1rem 4%;
    }
    
    .section-header {
        margin-bottom: 2.5rem;
    }
    
    .destinations, .thinai-section, .about {
        padding: 5rem 4%;
    }
}
@media (max-width: 768px) {
    .card-itineraries {
        opacity: 1;
        transform: translateY(0);
    }

    /* Optional: disable hover animation jump on mobile */
    .destination-card:hover .card-itineraries {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ========================================================= */
/* ✅ MOBILE FIX: Welcome Section Layout Perfect on Phones     */
/* ========================================================= */

@media (max-width: 768px) {

  /* ✅ Convert 2-column grid into single column */
  .welcome-container-new {
    display: flex !important;
    flex-direction: column !important;
    gap: 2.5rem !important;
    text-align: center !important;
  }

  /* ✅ Text Content First */
  .welcome-text-content {
    order: 1 !important;
    width: 100% !important;
    padding: 0 15px !important;
  }

  /* ✅ Image Section Second */
  .welcome-images-stack {
    order: 2 !important;
    width: 100% !important;
    height: auto !important;

    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }

  /* ✅ Show only Main Image */
  .welcome-img-main {
    width: 90% !important;
    height: auto !important;

    position: static !important;
    transform: none !important;
    margin: 0 auto !important;
  }

  .welcome-img-main img {
    width: 100% !important;
    height: auto !important;
    object-fit: cover !important;
    border-radius: 18px !important;
  }

  /* ❌ Hide Floating Small Images */
  .welcome-img-float,
  .welcome-img-float-1,
  .welcome-img-float-2 {
    display: none !important;
  }

  /* ❌ Hide Experience Badge */
  .welcome-experience-badge {
    display: none !important;
  }

  /* ✅ Prevent Overflow Issues */
  .welcome-section-new {
    overflow-x: hidden !important;
  }

  /* ✅ Highlights Full Width */
  .highlight-item {
    text-align: left !important;
  }

  /* ✅ CTA Button Center */
  .welcome-cta-row {
    justify-content: center !important;
  }
}


.logo {
    filter: brightness(1.2);
    animation: fadeIn 2s ease-in-out;
    position: relative;
}

.logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.5); /* Semi-transparent white background */
    z-index: -1; /* Behind the logo */
    border-radius: 10px; /* Optional: rounded corners */
    animation: fadeIn 2s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

html, body {
  overflow-x: hidden !important;
  width: 100% !important;
}


/* ===================================================== */
/* ✅ NAV LOGO Smoky Glow (Stronger + Larger Radius)      */
/* ===================================================== */

.nav-logo {
    position: relative;
    display: inline-block;
    z-index: 2000;
}

/* ✅ Bigger + stronger smoky glow */
.nav-logo::before {
    content: "";
    position: absolute;
    inset: -45px; /* ✅ Increased radius */

    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.35) 0%,   /* ✅ Stronger white smoke */
        rgba(201, 162, 39, 0.28) 45%,   /* ✅ Stronger golden glow */
        transparent 80%
    );

    filter: blur(28px); /* ✅ More blur for cloudiness */
    opacity: 1;

    border-radius: 50%;
    z-index: -1;

    animation: logoSmokeGlow 4s ease-in-out infinite;
}

/* ✅ Extra drifting smoke layer (more intense) */
.nav-logo::after {
    content: "";
    position: absolute;
    inset: -60px; /* ✅ Larger outer smoke */

    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.22) 0%,
        rgba(201, 162, 39, 0.12) 55%,
        transparent 85%
    );

    filter: blur(45px);
    opacity: 0.85;

    border-radius: 50%;
    z-index: -2;

    animation: logoSmokeFloat 6.5s ease-in-out infinite alternate;
}

/* ✅ Pulsing glow animation */
@keyframes logoSmokeGlow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.85;
    }
    50% {
        transform: scale(1.25); /* ✅ More expansion */
        opacity: 1;
    }
}

/* ✅ Slow drifting cloud animation */
@keyframes logoSmokeFloat {
    0% {
        transform: translateX(-18px) translateY(8px) scale(1);
    }
    100% {
        transform: translateX(20px) translateY(-10px) scale(1.2);
    }
}

/* ✅ Optional: Slight brightness boost */
.nav-logo img {
    filter: brightness(1.2) contrast(1.15);
}

/* ✅ Mobile: Reduce radius slightly */
@media (max-width: 768px) {
    .nav-logo::before {
        inset: -30px;
    }

    .nav-logo::after {
        inset: -40px;
    }
}

/* ===================================================== */
/* ✅ FOOTER LOGO Smoky Glow (Centered - No Position Shift) */
/* ===================================================== */

.footer-logo {
    position: relative;
    z-index: 10;
    text-align: center; /* ✅ Keep centered */
}

/* ✅ Smoke layers will not affect layout */
.footer-logo::before {
    content: "";
    position: absolute;
    inset: -45px;
    left: 50%;
    transform: translateX(-50%);

    width: 220px;
    height: 220px;

    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.30) 0%,
        rgba(201, 162, 39, 0.22) 45%,
        transparent 80%
    );

    filter: blur(28px);
    opacity: 1;
    border-radius: 50%;
    z-index: -1;

    animation: footerSmokeGlow 4s ease-in-out infinite;
}

.footer-logo::after {
    content: "";
    position: absolute;
    inset: -60px;
    left: 50%;
    transform: translateX(-50%);

    width: 280px;
    height: 280px;

    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.18) 0%,
        rgba(201, 162, 39, 0.10) 55%,
        transparent 85%
    );

    filter: blur(45px);
    opacity: 0.85;
    border-radius: 50%;
    z-index: -2;

    animation: footerSmokeFloat 6.5s ease-in-out infinite alternate;
}

/* ✅ Animations */
@keyframes footerSmokeGlow {
    0%, 100% {
        transform: translateX(-50%) scale(1);
        opacity: 0.85;
    }
    50% {
        transform: translateX(-50%) scale(1.25);
        opacity: 1;
    }
}

@keyframes footerSmokeFloat {
    0% {
        transform: translateX(-50%) translateX(-18px) translateY(8px) scale(1);
    }
    100% {
        transform: translateX(-50%) translateX(20px) translateY(-10px) scale(1.2);
    }
}

/* ✅ Logo boost */
.footer-logo img {
    filter: brightness(1.2) contrast(1.15);
    margin: 0 auto; /* ✅ Stay centered */
}

/* ✅ Mobile adjustment */
@media (max-width: 768px) {
    .footer-logo::before {
        width: 170px;
        height: 170px;
    }

    .footer-logo::after {
        width: 210px;
        height: 210px;
    }
}
/* ===================================================== */
/* ✅ Mission Cards — Background Image Like Explore Cards */
/* ===================================================== */

.mission-card {
    position: relative !important;
    overflow: hidden !important;
    border-radius: 20px;
}

/* ✅ Background Image Layer */
.mission-card::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;

    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;

    opacity: 0.18 !important;   /* subtle like explore-card */
    z-index: 0 !important;

    transition: opacity 0.4s ease, transform 0.6s ease;
}

/* ✅ Assign Different Images to Both Mission Cards */
.mission-grid .mission-card:nth-of-type(1)::before {
    background-image: url("../assets/images/hero/_DSC1285.jpg") !important;
}

.mission-grid .mission-card:nth-of-type(2)::before {
    background-image: url("../assets/images/hero/DJI_0543.jpg") !important;
}

/* ✅ Hover Effect Like Explore Cards */
.mission-card:hover::before {
    opacity: 0.28 !important;
    transform: scale(1.05);
}

/* ✅ Keep Text Above Image */
.mission-card * {
    position: relative !important;
    z-index: 2 !important;
}
