/* --- Variables & Theme --- */
:root {
    /* MAPPING: Green becomes Black/Dark Grey, Earth becomes Grey */
    --color-green: #1a1a1a;         /* Primary Black (Was Deep Safari Green) */
    --color-dark-green: #000000;    /* Pure Black (Was Footer Background) */
    --color-gold: #C5A059;          /* Refined Luxury Gold */
    --color-earth: #555555;         /* Medium Grey (Was Earthy Brown) */
    --color-light-earth: #f8f9fa;   /* Very Light Grey (Was Section Background) */
    
    /* --font-heading: 'Playfair Display', serif; */
    --font-heading: 'Raleway', sans-serif;n
    --font-body: 'Raleway', sans-serif;
}

body {
    font-family: var(--font-body);
    color: #333; /* Dark Grey Text */
    overflow-x: hidden;
    background-color: #ffffff; /* White Background */
}

h1, h2, h3, h4, h5, .font-heading {
    font-family: var(--font-heading);
    color: #111; /* Almost Black Headings */
}

/* --- Utilities --- */
.text-gold { color: var(--color-gold) !important; }
/* These classes now render as Black/Grey to fit the new theme */
.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;
    /* Dark gradient for contrast on transparent header */
    background: linear-gradient(to bottom, rgba(0,0,0,0.9), transparent);
}

.navbar.scrolled {
    padding: 10px 0;
    background-color: var(--color-dark-green); /* Becomes Black */
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.nav-link {
    color: #fff !important;
    text-transform: uppercase;
    font-size: 0.9rem;        /* Increased size for boldness */
    letter-spacing: 1.5px;    /* Increased spacing for elegance */
    font-weight: 800;         /* Much bolder (was 600) */
    margin: 0 10px;
    position: relative;       /* Required for the underline effect */
    padding-bottom: 5px;      /* Space for the underline */
}

/* Fancy Golden Expanding Underline */
.nav-link::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;                 /* Starts at 0 width */
    height: 3px;              /* Thickness of the gold line */
    background-color: var(--color-gold);
    transition: all 0.4s ease;
    transform: translateX(-50%); /* Keeps it centered */
}

.nav-link:hover::after {
    width: 100%;              /* Expands to full width on hover */
}

.nav-link:hover {
    color: var(--color-gold) !important;
}

.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);
}

.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%;
    /* Changed from Green tint to Black tint for monochrome look */
    background: rgba(0, 0, 0, 0.5); 
    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;
    color: var(--color-gold);
}

@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;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.border-gold-top {
    border-top: 3px solid var(--color-gold) !important;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* --- Destinations Mosaic (Fixed) --- */
.destination-item {
    position: relative;
    width: 100%;
    cursor: pointer;
    overflow: hidden; /* Ensures zoom stays within box */
}

.destination-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
    filter: grayscale(20%); /* Slight grayscale for chic look */
}

.destination-item:hover img {
    transform: scale(1.1);
    filter: grayscale(0%); /* Full color on hover */
}

/* 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;
    /* Black gradient */
    background: linear-gradient(to top, rgba(0,0,0,0.9), 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);
    color: var(--color-gold);
}

/* --- Partners / Accreditations --- */
.grayscale-logos i {
    color: #999; /* Light Grey */
    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: #000; /* Black text on gold is high contrast */
    text-transform: uppercase;
    font-weight: 700;
    border: 1px solid var(--color-gold);
    transition: 0.3s;
}
.btn-gold:hover {
    background-color: #000;
    border-color: #000;
    color: var(--color-gold);
}

/* Outline Green class reused but styled as Outline Black/Gold */
.btn-outline-green {
    border: 2px solid #000;
    color: #000;
    text-transform: uppercase;
    font-weight: 600;
    transition: 0.3s;
}
.btn-outline-green:hover {
    background-color: #000;
    color: var(--color-gold);
    border-color: #000;
}

/* --- Navbar Variations --- */
.navbar-solid {
    padding: 10px 0 !important;
    background-color: #000000 !important; /* Pure Black */
    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;
    border: 1px solid rgba(255,255,255,0.1);
}

.social-icons a:hover {
    background-color: var(--color-gold);
    border-color: var(--color-gold);
    color: #000;
    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 (Kept Green as per Brand Guidelines, or can be gold/black) --- */
/* Kept green for recognition, but added black hover */
.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(0,0,0, 0.2);
    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: #128C7E;
    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; 
    right: 25px;
    background-color: var(--color-gold);
    color: #000; /* Black icon on Gold */
    border-radius: 50%;
    text-align: center;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(0,0,0, 0.3);
    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: #000; /* Black on hover */
    color: var(--color-gold);
    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: #000; /* Black */
    color: var(--color-gold); /* Gold Icon */
    border: 1px solid var(--color-gold);
    border-radius: 50%;
    text-align: center;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    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-gold);
    color: #000;
    transform: translateY(-3px);
    text-decoration: none;
}

/* --- Footer --- */
.form-control {
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    color: #333;
}
.form-control::placeholder { color: #999; }
.form-control:focus { 
    box-shadow: none; 
    border-color: var(--color-gold) !important;
    background-color: #fff;
}

.hover-gold { transition: color 0.3s; }
.hover-gold:hover { color: var(--color-gold) !important; }

.top-margin-spacing { margin-top: 75px;}