* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

:root {
    --primary: #1d1d1f;
    --secondary: #86868b;
    --accent: #D4AF37;
    --white: #ffffff;
    --bg-light: #ffffff;
    --bg-secondary: #f5f5f7;
    --text-dark: #1d1d1f;
    
    /* Liquid Glass System */
    --glass-bg: rgba(230, 230, 230, 0.4);
    --glass-bg-dark: rgba(220, 220, 220, 0.65);
    --glass-border: rgba(255, 255, 255, 0.3);
    --glass-blur: blur(12px) saturate(160%);
    --glass-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    --inner-light: inset 0 1px 1px rgba(255, 255, 255, 0.8);
    
    /* Apple Motion Easing */
    --apple-ease: cubic-bezier(0.25, 0.1, 0.25, 1);
    --apple-spring: cubic-bezier(0.4, 0, 0.2, 1);
    --transition: transform 0.4s var(--apple-ease), opacity 0.4s var(--apple-ease), background 0.4s var(--apple-ease), border 0.4s var(--apple-ease);
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.section-title {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--secondary);
    text-align: center;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Navbar */
nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1400px;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: var(--transition);
    background: transparent;
    backdrop-filter: none;
    border: 1px solid transparent;
    border-radius: 100px;
    box-shadow: none;
}

nav.scrolled {
    top: 15px;
    padding: 1.2rem 5%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-radius: 50px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

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

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

nav.scrolled .nav-links a {
    color: var(--primary);
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    z-index: 2;
}

#nav-logo {
    height: 75px;
    width: auto;
    transition: var(--transition);
}

nav.scrolled #nav-logo {
    height: 50px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 32px;
    height: 32px;
    background: rgba(0,0,0,0.05);
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    z-index: 2000;
    transition: var(--transition);
}

.mobile-toggle span {
    width: 100%;
    height: 2px;
    background: var(--primary);
    border-radius: 10px;
    transition: var(--transition);
}

nav.scrolled .mobile-toggle {
    background: rgba(255, 255, 255, 0.1);
}

.nav-links.active {
    display: flex;
    position: absolute;
    top: calc(100% + 15px);
    right: 0;
    width: min(280px, 80vw);
    height: auto;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 2rem;
    gap: 1.2rem;
    z-index: 1500;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    transform-origin: top right;
    animation: dropdownSlow 0.6s var(--apple-ease) forwards;
}

@keyframes dropdownSlow {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes dropdownClose {
    from {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    to {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
}

.nav-links.closing {
    display: flex;
    position: absolute;
    top: calc(100% + 15px);
    right: 0;
    width: min(280px, 80vw);
    height: auto;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    flex-direction: column;
    padding: 2rem;
    gap: 1.2rem;
    z-index: 1500;
    animation: dropdownClose 0.6s var(--apple-ease) forwards;
}

.nav-links.active a {
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 600;
    width: 100%;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.03);
}

.nav-links.active a:last-child {
    border-bottom: none;
}

nav .btn-primary {
    background: #D4AF37;
    color: var(--white);
    border: none;
}

nav.scrolled .btn-primary {
    background: #D4AF37;
    color: var(--white);
    border: none;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.15), rgba(0,0,0,0.15)), url('assets/images/hero-desktop.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding: 0 5%;
    position: relative;
    overflow: hidden;
}

.smoke-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.smoke {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.1) 40%, transparent 70%);
    filter: blur(60px);
    border-radius: 50%;
    opacity: 0.5;
    will-change: transform;
}

.smoke-1 {
    top: -10%;
    left: -10%;
    animation: smokeFloat1 45s infinite linear;
}

.smoke-2 {
    bottom: -20%;
    right: -10%;
    animation: smokeFloat2 60s infinite linear;
    width: 800px;
    height: 800px;
    opacity: 0.4;
}

.smoke-3 {
    top: 40%;
    left: 40%;
    animation: smokeFloat3 50s infinite linear;
    width: 500px;
    height: 500px;
    opacity: 0.5;
}

@keyframes smokeFloat1 {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); }
    33% { transform: translate(20vw, 15vh) scale(1.2) rotate(120deg); }
    66% { transform: translate(-10vw, 25vh) scale(0.8) rotate(240deg); }
    100% { transform: translate(0, 0) scale(1) rotate(360deg); }
}

@keyframes smokeFloat2 {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); }
    33% { transform: translate(-25vw, -20vh) scale(1.1) rotate(-120deg); }
    66% { transform: translate(15vw, -10vh) scale(1.3) rotate(-240deg); }
    100% { transform: translate(0, 0) scale(1) rotate(-360deg); }
}

@keyframes smokeFloat3 {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-30vw, 10vh) scale(1.5); }
    100% { transform: translate(0, 0) scale(1); }
}

.hero-content {
    max-width: 900px;
    z-index: 2;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.01);
    backdrop-filter: blur(12px);
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.hero h1 {
    font-size: clamp(3.5rem, 10vw, 5.5rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero h1 .small-text {
    font-size: 0.45em;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 4px;
    display: block;
    margin-bottom: -10px;
    opacity: 0.8;
}

.hero h1 .highlight {
    background: linear-gradient(135deg, #fff 20%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    font-weight: 800;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    line-height: 1.7;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn-secondary-outline {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

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

.btn {
    padding: 1rem 2.5rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: #D4AF37;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    background: #c59b27;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.35);
}

.btn-primary:active {
    transform: translateY(0) scale(0.98);
}

/* About Section */
.about {
    padding: 100px 10%;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-content {
    flex: 1;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--accent);
    border-radius: 20px;
    z-index: -1;
}

/* Destinations Section */
.destinations {
    padding: 100px 5%;
    background: var(--bg-light);
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.destinations-grid.collapsed .dest-card:nth-child(n+7) {
    display: none;
}

.see-more-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    background: var(--primary);
    color: var(--white);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
}

.see-more-btn:hover {
    background: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.destinations-slogan {
    margin-top: 3rem;
    font-size: 1.3rem;
    color: var(--text-dark);
    font-style: italic;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}
.destinations-slogan span {
    color: var(--accent);
    font-weight: 600;
}

.dest-card {
    height: 500px;
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

.dest-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--apple-ease);
}

.dest-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    color: var(--white);
    transition: var(--transition);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

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

.dest-card:hover .dest-overlay {
    transform: translateY(-10px);
}

.dest-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

/* Tours/Services Section */
.services {
    padding: 100px 10%;
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    padding: 3.5rem 2.5rem;
    border-radius: 40px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow), var(--inner-light);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.03);
    background: rgba(255, 255, 255, 0.6);
}

.service-icon {
    width: 90px;
    height: 90px;
    background: white;
    color: var(--primary);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Gallery Section */
.gallery {
    padding: 100px 5%;
}

/* Gallery Section - Scrolling Marquee */
.gallery {
    padding: 100px 0;
    background: var(--bg-secondary);
    overflow: hidden;
}

.gallery-marquee {
    width: 100%;
    display: flex;
}

.marquee-content {
    display: flex;
    animation: scroll-right 60s linear infinite;
}

.marquee-content:hover {
    animation-play-state: paused;
}

.marquee-content .gallery-item {
    width: 450px;
    height: 320px;
    margin: 0 1rem;
    flex-shrink: 0;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 5px solid var(--white);
    transition: var(--transition);
}

.marquee-content .gallery-item:hover {
    transform: scale(1.05);
    border-color: var(--secondary);
    z-index: 10;
}

.marquee-content .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes scroll-right {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* Why Choose Us */
.why-us {
    padding: 100px 10%;
    background: var(--bg-light);
    color: var(--text-dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.feature-item {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    padding: 3.5rem 2.5rem;
    border-radius: 40px;
    transition: var(--transition);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow), var(--inner-light);
}

.feature-item:hover {
    transform: translateY(-15px) scale(1.03);
    background: rgba(255, 255, 255, 0.6);
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

/* Testimonials */
.testimonials {
    padding: 100px 10%;
    background: var(--bg-light);
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    padding: 4rem;
    border-radius: 50px;
    box-shadow: var(--glass-shadow), var(--inner-light);
    border: 1px solid var(--glass-border);
}

/* Button Shimmer Effect */
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transform: skewX(-25deg);
    transition: 0.75s;
}

.btn:hover::before {
    left: 150%;
}

.stars {
    color: #ffc107;
    margin-bottom: 1rem;
}

/* Contact Section */
.contact {
    padding: 100px 10%;
    display: flex;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

.contact-form {
    flex: 1.5;
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 10px;
    outline: none;
    transition: var(--transition);
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--secondary);
}

/* Footer */
footer {
    padding: 80px 10% 30px;
    background: var(--bg-secondary);
    color: var(--secondary);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.footer-links h4 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

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

.social-icons {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--primary);
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--accent);
    color: var(--white);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 992px) {
    .about, .contact {
        flex-direction: column;
    }
    .section-title { font-size: 2.5rem; }
}

@media (max-width: 768px) {
    .nav-links { 
        display: none; 
    }
    
    .mobile-toggle {
        display: flex;
    }

    nav {
        width: 95%;
        padding: 0.8rem 1.5rem;
        top: 15px;
    }

    nav.scrolled {
        padding: 0.5rem 1rem;
        top: 10px;
        width: 90%;
    }

    #nav-logo {
        height: 45px;
        transition: var(--transition);
    }

    nav.scrolled #nav-logo {
        height: 35px;
    }

    .nav-btn {
        padding: 0.5rem 1rem !important;
        font-size: 0.8rem;
    }

    nav.scrolled .nav-btn {
        padding: 0.4rem 0.8rem !important;
        font-size: 0.75rem;
    }

    .hero {
        background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)), url('assets/images/hero-mobile-optimized.jpg');
        background-size: cover;
        background-position: center;
        background-attachment: scroll; /* Better for mobile performance */
    }
    
    .hero h1 {
        font-size: clamp(2rem, 8vw, 2.8rem);
        line-height: 1.2;
    }

    .hero h1 .small-text {
        font-size: 0.4em;
        margin-bottom: 5px;
        letter-spacing: 2px;
    }

    .hero p {
        font-size: 0.95rem;
        padding: 0;
    }

    .hero-content {
        padding: 2rem 1.2rem;
        width: 92%;
        border-radius: 25px;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
        gap: 0.8rem;
    }

    .btn {
        width: 100%;
        text-align: center;
        padding: 0.8rem 1.5rem;
    }

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

    .destinations-grid.collapsed .dest-card:nth-child(n+5) {
        display: none;
    }

    .see-more-btn {
        display: inline-block;
        margin-top: 1rem;
    }

    .dest-card {
        height: 280px;
        border-radius: 20px;
    }

    .dest-overlay {
        bottom: 15px;
        left: 15px;
        right: 15px;
    }

    .dest-card h3 {
        font-size: 1.1rem;
    }

    .service-card {
        padding: 1.5rem 1rem;
        border-radius: 25px;
    }

    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .service-card h3 {
        font-size: 1rem;
    }

    .service-card p {
        font-size: 0.8rem;
    }

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

    .feature-item i {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }

    .feature-item h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .feature-item p {
        font-size: 0.85rem;
    }
}

