@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    /* Premium Color Palette */
    --primary-gold: #C9A961;
    --primary-gold-light: #E4D4A8;
    --primary-gold-dark: #9B7E3C;
    --accent-teal: #00B4A6;
    --accent-coral: #FF6B6B;
    --bg-dark: #0F0F0F;
    --bg-darker: #080808;
    --bg-card: #1A1A1A;
    --bg-card-hover: #222222;
    --text-light: #FFFFFF;
    --text-gray: #B8B8B8;
    --text-muted: #6B6B6B;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(201, 169, 97, 0.15);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 40px rgba(201, 169, 97, 0.15);
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 50%, #1a1410 100%);
    color: var(--text-light);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
}

/* Animated Background Pattern */
/* Background removed to fix fixed halo issue */
body::before {
    display: none;
}

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

ul {
    list-style: none;
}

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

/* Utilities */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 1;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-title::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
    border-radius: 2px;
}

.section-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-gold-light) 0%, var(--primary-gold) 50%, var(--primary-gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

.section-title p {
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.125rem;
    font-weight: 300;
    line-height: 1.8;
}

/* Premium Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 100%);
    color: var(--bg-dark);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    border: none;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 8px 24px rgba(201, 169, 97, 0.25);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: var(--transition-smooth);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(201, 169, 97, 0.4);
}

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

.btn-outline {
    background: transparent;
    color: var(--primary-gold);
    border: 2px solid var(--primary-gold);
    box-shadow: none;
}

.btn-outline:hover {
    background: var(--primary-gold);
    color: var(--bg-dark);
    box-shadow: 0 12px 32px rgba(201, 169, 97, 0.3);
}

/* Header - Premium Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 24px 0;
    z-index: 1000;
    transition: var(--transition-smooth);
    background: linear-gradient(180deg, rgba(15, 15, 15, 0.95) 0%, rgba(15, 15, 15, 0.7) 70%, transparent 100%);
    backdrop-filter: blur(0px);
}

header.scrolled {
    background: #0F0F0F;
    padding: 16px 0;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.6);
    border-bottom: 1px solid rgba(201, 169, 97, 0.15);
}

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

.logo {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 10;
}

.logo-img {
    height: 140px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(201, 169, 97, 0.3));
    transition: var(--transition-smooth);
}

header.scrolled .logo-img {
    height: 70px;
}

.nav-links {
    display: flex;
    gap: 48px;
    align-items: center;
}

.nav-links a {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 500;
    position: relative;
    letter-spacing: 0.5px;
    transition: var(--transition-fast);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--primary-gold-light), var(--primary-gold));
    transition: var(--transition-smooth);
    border-radius: 2px;
}

.nav-links a:hover {
    color: var(--primary-gold-light);
}

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

.menu-toggle {
    display: none;
    color: var(--text-light);
    font-size: 1.75rem;
    cursor: pointer;
    z-index: 1001;
    transition: var(--transition-fast);
}

.menu-toggle:hover {
    color: var(--primary-gold);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    background: #000;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 0;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-video.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* Darkens video for text readability */
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to top, var(--bg-darker), transparent);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1000px;
    padding-top: 80px;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.25rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 28px;
    line-height: 1.3;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.6);
    animation: fadeInUp 1s ease-out;
    letter-spacing: -0.5px;
}

.hero-content h1 span {
    background: linear-gradient(135deg, var(--primary-gold-light) 0%, var(--primary-gold) 50%, var(--primary-gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    position: relative;
}

.hero-content h1 span::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
    border-radius: 2px;
}

.hero-content p {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    margin-bottom: 40px;
    color: var(--text-gray);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    font-weight: 400;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.hero-btns {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

/* About Section - Premium */
.about {
    padding: 120px 0;
    background: var(--bg-darker);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
}

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

.about-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 24px;
    color: var(--text-light);
    font-weight: 700;
    line-height: 1.3;
}

.about-text p {
    color: var(--text-gray);
    margin-bottom: 32px;
    font-size: 1.125rem;
    line-height: 1.8;
    font-weight: 300;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
}

.feature-item:hover {
    background: rgba(201, 169, 97, 0.05);
    border-color: var(--primary-gold);
    transform: translateX(8px);
}

.feature-item i {
    color: var(--primary-gold);
    font-size: 1.5rem;
    transition: var(--transition-smooth);
}

.feature-item:hover i {
    transform: scale(1.2) rotate(5deg);
}

.feature-item span {
    font-weight: 500;
    font-size: 1rem;
}

/* Stats - Premium */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 0;
}

.stat-item {
    text-align: center;
    padding: 40px 24px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition-smooth);
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-item:hover {
    transform: translateY(-8px);
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-glow);
}

.stat-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    background: linear-gradient(135deg, var(--primary-gold-light), var(--primary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    font-weight: 900;
}

.stat-item p {
    color: var(--text-gray);
    font-size: 1.125rem;
    font-weight: 400;
}

/* Destinations - Premium Cards */
.destinations {
    padding: 120px 0;
    background: var(--bg-dark);
    position: relative;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
}

.destination-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 420px;
    cursor: pointer;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    transition: var(--transition-smooth);
}

.destination-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 1;
}

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

.destination-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4), 0 0 0 1px var(--primary-gold);
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 32px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 60%, transparent 100%);
    transform: translateY(0);
    transition: var(--transition-smooth);
    z-index: 2;
}

.destination-card:hover .destination-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.85) 70%, transparent 100%);
}

.destination-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.875rem;
    margin-bottom: 8px;
    font-weight: 700;
    color: var(--text-light);
}

.destination-card p {
    color: var(--text-gray);
    font-size: 1rem;
    margin-bottom: 16px;
    line-height: 1.6;
}

.destination-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

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

.price {
    color: var(--primary-gold);
    font-weight: 700;
    font-size: 1.125rem;
    letter-spacing: 0.5px;
}

.btn-small {
    padding: 10px 24px;
    font-size: 0.875rem;
    border: 2px solid var(--primary-gold);
    border-radius: 50px;
    color: var(--primary-gold);
    background: transparent;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
}

.btn-small:hover {
    background: var(--primary-gold);
    color: var(--bg-dark);
    transform: scale(1.05);
}

/* Services - Premium */
.services {
    padding: 120px 0;
    background: var(--bg-darker);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
}

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

.service-card {
    background: var(--glass-bg);
    padding: 48px 32px;
    border-radius: 24px;
    text-align: center;
    border: 1px solid var(--glass-border);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition-smooth);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-12px);
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-glow);
    background: rgba(201, 169, 97, 0.03);
}

.service-icon {
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--primary-gold-light), var(--primary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
    transition: var(--transition-bounce);
    display: inline-block;
}

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

.service-card h3 {
    margin-bottom: 16px;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-light);
}

.service-card p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1rem;
}

/* Contact - Premium */
.contact {
    padding: 120px 0;
    background: var(--bg-dark);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--bg-card);
    border-radius: 32px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--glass-border);
}

.contact-info {
    padding: 64px;
    background: linear-gradient(135deg, var(--primary-gold-dark) 0%, var(--primary-gold) 100%);
    color: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 32px;
    font-weight: 700;
    position: relative;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
    font-size: 1.125rem;
    position: relative;
    padding: 16px;
    border-radius: 12px;
    transition: var(--transition-fast);
}

.contact-detail:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: translateX(8px);
}

.contact-detail i {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 12px;
}

.contact-form {
    padding: 64px;
    background: var(--bg-card);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 24px;
    background: var(--glass-bg);
    border: 2px solid var(--glass-border);
    border-radius: 16px;
    color: var(--text-light);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    background: rgba(201, 169, 97, 0.05);
}

.form-group textarea {
    height: 160px;
    resize: none;
}

/* Footer - Premium */
footer {
    background: var(--bg-darker);
    padding: 100px 0 40px;
    border-top: 1px solid var(--glass-border);
    position: relative;
}

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

.footer-logo {
    height: 120px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-col h4 {
    color: var(--primary-gold);
    margin-bottom: 28px;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

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

.footer-links a {
    color: var(--text-gray);
    transition: var(--transition-fast);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-gold);
    transform: translateX(8px);
}

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

.social-links a {
    width: 48px;
    height: 48px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition-smooth);
    font-size: 1.125rem;
}

.social-links a:hover {
    background: var(--primary-gold);
    color: var(--bg-dark);
    transform: translateY(-4px) scale(1.1);
    border-color: var(--primary-gold);
    box-shadow: 0 8px 16px rgba(201, 169, 97, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Floating WhatsApp - Premium */
.whatsapp-float {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #25d366 0%, #1ea952 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition-smooth);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.15);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.6);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.6), 0 0 0 8px rgba(37, 211, 102, 0.1);
    }
}

/* Scroll Animation Classes */
.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), transform 1s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
}

.fade-in-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 24px;
        max-width: 100%;
    }

    /* Header & Navigation */
    header {
        padding: 15px 0;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 1rem;
        padding: 0 10px;
    }

    .hero-btns {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        padding: 0 20px;
    }

    .hero-btns .btn {
        width: 100%;
        margin: 0 !important;
        /* Override inline styles */
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 85%;
        max-width: 320px;
        background: rgba(15, 15, 15, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 100px 40px;
        gap: 0;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.7);
        border-left: 1px solid var(--glass-border);
        z-index: 1000;
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-links a {
        display: block;
        padding: 20px 0;
        font-size: 1.25rem;
        font-weight: 500;
    }

    .nav-links.active {
        right: 0;
    }

    .menu-toggle {
        display: block;
        z-index: 1001;
    }

    /* Sections Adjustment */
    .section-title h2 {
        font-size: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .destinations-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .destination-card {
        height: 350px;
        /* Slightly shorter for mobile scroll */
    }

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

    .contact-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-info,
    .contact-form {
        padding: 30px 24px;
        border-radius: 20px;
    }

    /* Footer Mobile */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-col {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-links a:hover {
        transform: none;
        /* Disable shift on touch */
        color: var(--primary-gold);
    }

    .footer-logo {
        height: 90px;
        /* Reduced from 120px for mobile balance */
        margin-bottom: 24px;
    }

    .whatsapp-float {
        width: 56px;
        height: 56px;
        font-size: 28px;
        bottom: 24px;
        right: 24px;
    }
}

@media (max-width: 380px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .logo-img {
        height: 32px;
        /* Smaller logo for very small screens */
    }
}

/* =========================================
   Chatbot Widget Styles
   ========================================= */
.chatbot-widget {
    position: fixed;
    bottom: 110px;
    right: 24px;
    width: 360px;
    height: 520px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(0, 0, 0, 0.08);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    /* Prevent clicks when hidden */
}

.chatbot-widget.active {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
    pointer-events: all;
}

/* Chat Toggle Button */
.chat-toggle-btn {
    position: fixed;
    bottom: 105px;
    /* Above WhatsApp button usually at ~20-25px */
    right: 24px;
    width: 60px;
    height: 60px;
    background: var(--primary-gold);
    color: #fff;
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.5);
    cursor: pointer;
    z-index: 9998;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.chat-toggle-btn.hidden {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.8);
}

.chat-toggle-btn:hover {
    transform: scale(1.1);
}

/* Notification Badge */
.notification-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: #ff3b30;
    color: white;
    font-size: 11px;
    font-weight: 700;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #fff;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-5px);
    }

    60% {
        transform: translateY(-3px);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Header */
.chat-header {
    background: #111;
    /* Dark theme */
    padding: 16px 20px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--primary-gold);
}

.chat-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bot-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: contain;
    background: #fff;
    padding: 4px;
}

.chat-header-text h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
}

.status-indicator {
    font-size: 11px;
    color: #4cd964;
    /* iOS Green */
    display: block;
    margin-top: 2px;
    font-weight: 500;
}

#close-chat {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    font-size: 18px;
    padding: 4px;
    transition: 0.2s;
}

#close-chat:hover {
    color: #fff;
    transform: scale(1.1);
}

/* Body */
.chat-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    gap: 16px;
    scroll-behavior: smooth;
}

/* Messages */
.message {
    max-width: 85%;
    margin-bottom: 4px;
    position: relative;
    animation: fadeIn 0.3s ease-out forwards;
}

.bot-message {
    align-self: flex-start;
}

.user-message {
    align-self: flex-end;
}

.message-content {
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 14px;
    line-height: 1.5;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
    position: relative;
}

.bot-message .message-content {
    background: #fff;
    border-bottom-left-radius: 4px;
    color: #333;
    border: 1px solid #eee;
}

.user-message .message-content {
    background: var(--primary-gold);
    color: #000;
    border-bottom-right-radius: 4px;
    font-weight: 500;
}

.message-timestamp {
    font-size: 10px;
    color: #999;
    margin-top: 4px;
    display: block;
    width: 100%;
    padding: 0 4px;
}

.user-message .message-timestamp {
    text-align: right;
}

/* Typing Indicator */
.typing-indicator {
    display: flex;
    gap: 4px;
    padding: 12px 16px;
    background: #fff;
    border-radius: 16px;
    border-bottom-left-radius: 4px;
    width: fit-content;
    border: 1px solid #eee;
}

.typing-dot {
    width: 6px;
    height: 6px;
    background: #ccc;
    border-radius: 50%;
    animation: typing 1.4s infinite ease-in-out both;
}

.typing-dot:nth-child(1) {
    animation-delay: -0.32s;
}

.typing-dot:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes typing {

    0%,
    80%,
    100% {
        transform: scale(0);
    }

    40% {
        transform: scale(1);
    }
}

/* Footer & Input */
.chat-footer {
    padding: 16px;
    background: #fff;
    border-top: 1px solid #f0f0f0;
}

.suggestion-chips {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 12px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.suggestion-chips::-webkit-scrollbar {
    display: none;
}

.chip {
    padding: 8px 14px;
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    font-size: 12px;
    cursor: pointer;
    white-space: nowrap;
    transition: 0.2s;
    color: #555;
    font-weight: 500;
}

.chip:hover {
    background: var(--primary-gold-light);
    /* Assuming light gold variable exists or fallback */
    background: rgba(201, 169, 97, 0.15);
    /* Fallback */
    color: var(--primary-gold-dark);
    color: #8c7335;
    /* Fallback */
    border-color: var(--primary-gold);
}

.input-group {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f5f5f5;
    padding: 6px 6px 6px 16px;
    border-radius: 30px;
    border: 1px solid transparent;
    transition: 0.3s;
}

.input-group:focus-within {
    border-color: var(--primary-gold);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(201, 169, 97, 0.1);
}

#chat-input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 14px;
    outline: none;
    color: #333;
}

#send-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: var(--primary-gold);
    color: white;
    cursor: pointer;
    transition: 0.2s;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
}

#send-btn:hover {
    transform: scale(1.05);
    background: linear-gradient(135deg, var(--primary-gold) 0%, #b89a55 100%);
    box-shadow: 0 4px 10px rgba(201, 169, 97, 0.3);
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .chatbot-widget {
        bottom: 0 !important;
        right: 0 !important;
        width: 100% !important;
        height: 100% !important;
        border-radius: 0 !important;
        z-index: 10000 !important;
    }

    .chat-header {
        padding-top: max(20px, env(safe-area-inset-top));
        /* Handle notch */
    }

    .chat-toggle-btn {
        bottom: 105px;
        right: 20px;
    }
}
/* Language Flags */
.lang-option {
    opacity: 0.4;
    transition: opacity 0.3s ease;
    cursor: pointer;
    filter: grayscale(0.2); 
}

.lang-option:hover {
    opacity: 0.7;
    transform: scale(1.1);
}

.lang-option.active {
    opacity: 1;
    filter: grayscale(0);
    transform: scale(1.2);
}
