/* --- Variables & Theme --- */
:root {
    --color-green: #005C32;         /* Deep Safari Green */
    --color-dark-green: #0b2e1e;    /* Footer Background */
    --color-gold: #D3AF5E;          /* Luxury Gold */
    --color-earth: #8b4513;         /* Earthy Brown */
    --color-light-earth: #f9f7f2;   /* Section Background */
    
    /* --font-heading: 'Playfair Display', serif; */
    --font-heading: 'Raleway', sans-serif;
    --font-body: 'Raleway', sans-serif;
}

body {
    font-family: var(--font-body);
    color: #333;
    overflow-x: hidden;
    background-color: #e8f5e8;
}

h1, h2, h3, h4, h5, .font-heading {
    font-family: var(--font-heading);
}

/* --- Utilities --- */
.text-gold { color: var(--color-gold) !important; }
.text-green { color: var(--color-green) !important; }
.text-earth { color: var(--color-earth) !important; }
.text-dark-green { color: var(--color-dark-green) !important; }
.bg-dark-green { background-color: var(--color-dark-green); }
.bg-light-earth { background-color: var(--color-light-earth); }

.letter-spacing-3 { letter-spacing: 3px; }

.divider {
    height: 3px;
    width: 60px;
    background-color: var(--color-gold);
}

/* --- Navbar --- */
.navbar {
    padding: 20px 0;
    transition: all 0.4s ease;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent);
}

.navbar.scrolled {
    padding: 10px 0;
    background-color: var(--color-green);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.nav-link {
    color: #fff !important;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    font-weight: 600;
    margin: 0 5px;
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1;
    color: #fff;
}
.logo-sub {
    font-size: 1.2rem;
    letter-spacing: 3px;
    color: var(--color-gold);
}

/* --- Hero Section & Video --- */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.video-wrapper {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
}

.bg-video {
    width: 100%; height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 40, 20, 0.4); 
    z-index: 1;
}

.hero-title {
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.7);
}

.scroll-down-indicator {
    position: absolute;
    bottom: 30px;
    z-index: 5;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-10px);}
    60% {transform: translateY(-5px);}
}

/* --- Services --- */
.service-card {
    transition: transform 0.3s ease;
    border: none;
    border-radius: 0;
}
.border-gold-top {
    border-top: 3px solid var(--color-gold) !important;
}
.service-card:hover {
    transform: translateY(-10px);
}

/* --- Destinations Mosaic (Fixed) --- */
.destination-item {
    position: relative;
    width: 100%;
    cursor: pointer;
}

.destination-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}

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

/* Height Fixes */
.dest-large {
    height: 520px;
}
.dest-small {
    height: 252px; /* (520px - 16px gap) / 2 */
}

/* Responsive Heights */
@media (max-width: 991px) {
    .dest-large { height: 400px; margin-bottom: 16px; }
    .dest-small { height: 250px; }
    .hero-title { font-size: 2.5rem; }
}

.dest-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 25px;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
    color: #fff;
    z-index: 2;
}
.dest-title {
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 5px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

/* --- Partners / Accreditations --- */
.grayscale-logos i {
    color: #555;
    transition: 0.3s;
}
.grayscale-logos div:hover i, 
.grayscale-logos div:hover small {
    color: var(--color-gold);
    opacity: 1;
}

/* --- Buttons --- */
.btn-gold {
    background-color: var(--color-gold);
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    border: 1px solid var(--color-gold);
    transition: 0.3s;
}
.btn-gold:hover {
    background-color: transparent;
    color: var(--color-gold);
}
.btn-outline-green {
    border: 2px solid var(--color-green);
    color: var(--color-green);
    transition: 0.3s;
}
.btn-outline-green:hover {
    background-color: var(--color-green);
    color: #fff;
}

/* --- Navbar Variations --- */
.navbar-solid {
    padding: 10px 0 !important;
    background-color: var(--color-green) !important;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1) !important;
}

/* --- Social Icons --- */
.social-icons a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 6px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    background-color: var(--color-gold);
    color: #fff;
    transform: translateY(-2px);
}

/* Footer bottom social icons - compact version */
.border-top .social-icons {
    gap: 8px;
}

.border-top .social-icons a {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
    margin: 0 4px;
}

@media (max-width: 768px) {
    .border-top {
        text-align: center !important;
    }
    .border-top .social-icons {
        margin: 1rem 0;
        justify-content: center;
    }
}

/* --- Floating WhatsApp --- */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 100px;
    right: 25px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    background-color: #20ba5a;
    color: white;
    transform: scale(1.1);
    text-decoration: none;
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* --- Floating Book Now --- */
.book-now-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 175px; /* Positioned above WhatsApp (100px) */
    right: 25px;
    background-color: var(--color-gold);
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(211, 175, 94, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.book-now-float:hover {
    background-color: var(--color-earth); /* Darkens on hover */
    color: white;
    transform: translateY(-5px);
    text-decoration: none;
}

/* --- Back to Top Button --- */
.back-to-top {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 25px;
    right: 25px;
    background-color: var(--color-gold);
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(211, 175, 94, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: var(--color-earth);
    color: white;
    transform: translateY(-3px);
    text-decoration: none;
}

/* --- Footer --- */
.form-control::placeholder { color: rgba(255,255,255,0.5); }
.form-control:focus { box-shadow: none; border-color: var(--color-gold) !important; }
.hover-gold { transition: color 0.3s; }
.hover-gold:hover { color: var(--color-gold) !important; }

.top-margin-spacing { margin-top: 75px;}