/* =========================================
   CSS Variables & Typography
   ========================================= */
:root {
    /* Brand Colors from Logo */
    --primary-color: #8B1E2D;      /* Deep Maroon Red */
    --secondary-color: #D89B1D;    /* Golden Yellow */
    --accent-cream: #F5E6C8;       /* Soft Cream */
    --light-bg: #FCFAF7;           /* Warm Light Background */

    /* Text Colors */
    --text-main: #3A2A2A;
    --text-muted: #7A6A6A;
    --white: #ffffff;

    /* Borders & Effects */
    --border-color: #E8DCCB;
    --transition: all 0.3s ease;
    --shadow-soft: 0 5px 20px rgba(139, 30, 45, 0.08);
    --shadow-hover: 0 10px 30px rgba(139, 30, 45, 0.15);

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Jost', sans-serif;

    /* Extra Theme Colors */
    --gold-gradient: linear-gradient(135deg, #D89B1D, #F0C75E);
    --red-gradient: linear-gradient(135deg, #8B1E2D, #B52E3F);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-weight: 600;
}

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

ul {
    list-style: none;
}

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

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.relative {
    position: relative;
}

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

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.mt-2 { margin-top: 10px; }
.mt-3 { margin-top: 20px; }
.mt-4 { margin-top: 30px; }
.mb-3 { margin-bottom: 20px; }
.mb-4 { margin-bottom: 30px; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* =========================================
   Buttons & Titles
   ========================================= */
.btn {
    display: inline-block;
    padding: 12px 25px;
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
}

.btn-solid {
    background-color: var(--primary-color);
    color: var(--white);
}
.btn-solid:hover {
    background-color: #06112a;
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}
.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

.btn-outline-dark {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}
.btn-outline-dark:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.title-bg {
    position: relative;
    display: inline-block;
}
.title-bg::before {
    content: '';
    position: absolute;
    bottom: 5px;
    left: -10px;
    right: -10px;
    height: 15px;
    background-color: #E8ECEF;
    z-index: -1;
}

.section-title {
    font-size: 2.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.section-subtitle {
    font-family: var(--font-body);
    color: var(--primary-color);
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 5px;
}
.subtitle-text {
    font-size: 1rem;
    color: var(--text-muted);
    margin-top: 10px;
}
.view-all {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 5px;
}
.view-all i {
    font-size: 1.2rem;
    transition: var(--transition);
}
.view-all:hover i {
    transform: translateX(5px);
}

/* Animations */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 1.5s ease;
}
.animate-up.show {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   Floating Elements
   ========================================= */
.enquire-tab {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background-color: var(--accent-orange);
    color: var(--white);
    padding: 15px 10px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    border-radius: 5px 0 0 5px;
    z-index: 1000;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    transition: var(--transition);
}
.enquire-tab:hover {
    padding-right: 20px;
}
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 20px;
    background-color: #25D366;
    color: white;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: var(--transition);
}
.whatsapp-float:hover {
    transform: scale(1.1);
}

/* =========================================
   1. Top Utility Bar
   ========================================= */
.top-bar {
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 0.75rem;
    padding: 8px 0;
    font-weight: 300;
    letter-spacing: 0.5px;
}
.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-left {
    display: flex;
    gap: 25px;
}
.top-left span {
    display: flex;
    align-items: center;
    gap: 8px;
}
.top-right {
    display: flex;
    align-items: center;
    gap: 25px;
}
.top-links {
    display: flex;
    gap: 20px;
}
.top-links a:hover {
    color: var(--accent-gold);
}
.social-icons a {
    margin-left: 10px;
    font-size: 1rem;
}
.social-icons a:hover {
    color: var(--accent-gold);
}

/* =========================================
   2. Main Navigation Header
   ========================================= */
.header {
    background-color: var(--white);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 999;
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo-img {
    height: 45px;
}
.nav-list {
    display: flex;
    gap: 30px;
}
.nav-link {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--primary-color);
    letter-spacing: 1px;
}
.nav-link:hover, .nav-link.active {
    color: var(--accent-gold);
}
.header-btn {
    padding: 10px 20px;
    font-size: 0.8rem;
}
.nav-toggle, .nav-close, .mobile-only {
    display: none;
}

/* =========================================
   3. Hero Section
   ========================================= */
.hero {
    position: relative;
    height: 80vh;
    min-height: 500px;
    display: flex;
    align-items: center;
}
.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1;
    overflow: hidden;
}
.hero-bg img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; height: 100%; object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}
.hero-bg img.active {
    opacity: 1;
    animation: kenBurns 10s ease-out forwards;
}

@keyframes kenBurns {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.12);
    }
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(11,27,61,0.7) 0%, rgba(11,27,61,0.1) 60%);
}
.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 60px;
}
.slider-indicators {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: var(--transition);
}
.dot.active {
    background-color: var(--white);
    transform: scale(1.5);
}
.hero-text {
    color: var(--white);
    font-family: var(--font-heading);
}
.hero-text .title {
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 10px;
    letter-spacing: 2px;
}
.hero-text .subtitle {
    font-size: 1.1rem;
    margin-bottom: 30px;
    font-weight: 300;
}

/* =========================================
   4. Welcome Section
   ========================================= */
.welcome-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.welcome-text p {
    margin-bottom: 15px;
}
.welcome-reviews {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.review-box {
    border: 1px solid var(--border-color);
    padding: 20px;
    background-color: var(--light-bg);
}
.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.review-logo {
    height: 25px;
}
.review-logo.trustpilot {
    height: 20px;
}
.review-logo.tripadvisor {
    height: 35px;
}
.review-stars {
    color: #FABB05; /* Google star color */
    font-size: 1.1rem;
}
.trustpilot-stars {
    color: #00B67A;
}
.tripadvisor-stars {
    color: #34E0A1;
}
.review-score {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* =========================================
   5. Top Luxury Resorts (Masonry Grid)
   ========================================= */
.resorts {
    background-color: var(--white);
}
.resort-masonry {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 250px 250px 250px;
    gap: 15px;
    margin-top: 40px;
}
.resort-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.resort-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.resort-overlay {
    position: absolute;
    bottom: 0; left: 0; width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--white);
}
.resort-overlay h3 {
    color: var(--white);
    font-size: 1.2rem;
    font-family: var(--font-body);
    font-weight: 500;
}
.resort-overlay p {
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 5px;
    opacity: 0.9;
}
.resort-item:hover img {
    transform: scale(1.05);
}

/* Grid Placement */
.r-col-1.r-row-1 { grid-column: 1 / 2; grid-row: 1 / 2; }
.r-col-1.r-row-2-3 { grid-column: 1 / 2; grid-row: 2 / 4; }
.r-col-2.r-row-1-2 { grid-column: 2 / 3; grid-row: 1 / 3; }
.r-col-2.r-row-3 { grid-column: 2 / 3; grid-row: 3 / 4; }
.r-col-3-4.r-row-1-2 { grid-column: 3 / 5; grid-row: 1 / 3; }
.r-col-3-4.r-row-3 { grid-column: 3 / 5; grid-row: 3 / 4; }

/* =========================================
   6. Resort Styles Banner
   ========================================= */
.resort-styles {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.resort-styles img {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    z-index: -2;
}
.styles-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(11, 27, 61, 0.4);
    z-index: -1;
}
.styles-title {
    color: var(--white);
    font-size: 3rem;
    letter-spacing: 3px;
}
.styles-subtitle {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 300;
}

/* =========================================
   7. Popular Packages
   ========================================= */
.packages {
    position: relative;
    background-color: var(--light-bg);
}
.map-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('https://upload.wikimedia.org/wikipedia/commons/8/80/World_map_-_low_resolution.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.05;
    z-index: 0;
}
.package-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}
.pkg-card {
    background-color: var(--white);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}
.pkg-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}
.pkg-img {
    position: relative;
    height: 220px;
}
.pkg-img img {
    width: 100%; height: 100%; object-fit: cover;
}
.pkg-badge {
    position: absolute;
    top: 15px; right: 15px;
    background-color: var(--accent-orange);
    color: var(--white);
    padding: 5px 12px;
    font-size: 0.8rem;
    font-weight: 600;
}
.pkg-content {
    padding: 20px;
}
.pkg-content .stars {
    color: var(--accent-gold);
    font-size: 0.8rem;
    margin-bottom: 5px;
}
.pkg-content h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-family: var(--font-body);
}
.pkg-loc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}
.pkg-meta {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}
.pkg-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}
.pkg-meta i {
    color: var(--accent-gold);
}

/* =========================================
   8. Process Band
   ========================================= */
.process-band {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 50px 0;
}
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.process-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 40px;
}
.border-sides {
    border-left: 1px solid rgba(255,255,255,0.1);
    border-right: 1px solid rgba(255,255,255,0.1);
}
.icon-wrap i {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 15px;
}
.process-item h4 {
    color: var(--white);
    font-size: 1rem;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-family: var(--font-body);
}
.process-item p {
    font-size: 0.85rem;
    opacity: 0.7;
}

/* =========================================
   9. Top Villas
   ========================================= */
.villas-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.villas-left .main-villa-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}
.villas-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
}
.villa-small-card {
    position: relative;
    overflow: hidden;
}
.villa-small-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.villa-small-card:hover img {
    transform: scale(1.05);
}
.villa-label {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--white);
    color: var(--primary-color);
    padding: 8px 15px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    box-shadow: var(--shadow-soft);
}

/* =========================================
   10. Testimonials
   ========================================= */
.testimonials {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}
.testi-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0.2;
}
.testi-slider {
    max-width: 700px;
    margin: 40px auto 0;
    position: relative;
}
.testi-slide {
    display: none;
    animation: fadeIn 0.5s;
}
.testi-slide.active {
    display: block;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.testi-headline {
    font-size: 2rem;
    margin-bottom: 15px;
}
.testi-slide .stars {
    color: var(--accent-gold);
    font-size: 1.2rem;
}
.testi-desc {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 20px;
}
.testi-author {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.testi-author i {
    font-size: 2rem;
    color: var(--accent-gold);
    opacity: 0.5;
}
.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    font-size: 3rem;
    color: var(--primary-color);
    cursor: pointer;
    opacity: 0.5;
    transition: var(--transition);
}
.nav-arrow:hover {
    opacity: 1;
}
.nav-arrow.prev { left: -100px; }
.nav-arrow.next { right: -100px; }

/* =========================================
   11. Blog
   ========================================= */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}
.blog-card {
    text-align: center;
}
.blog-img {
    position: relative;
    height: 220px;
    margin-bottom: 30px;
}
.blog-img img {
    width: 100%; height: 100%; object-fit: cover;
}
.date-badge {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px; height: 60px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-soft);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}
.date-badge .day {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1;
}
.date-badge .month {
    font-size: 0.7rem;
    font-weight: 600;
}
.blog-content h3 {
    font-size: 1.1rem;
    font-family: var(--font-body);
    margin-bottom: 15px;
    padding: 0 10px;
}
.read-more {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.read-more:hover {
    color: var(--accent-gold);
}

/* =========================================
   12. Newsletter
   ========================================= */
.newsletter {
    background-color: #D5AD6D; /* Sand color from screenshot */
    padding: 60px 0;
    color: var(--white);
}
.nl-title {
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1.5rem;
    letter-spacing: 1px;
    margin-bottom: 5px;
}
.nl-subtitle {
    font-size: 0.9rem;
    margin-bottom: 25px;
}
.nl-form {
    display: flex;
    justify-content: center;
    gap: 15px;
    max-width: 700px;
    margin: 0 auto;
}
.nl-form input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    font-family: var(--font-body);
    outline: none;
}
.nl-form button {
    border: none;
}

/* =========================================
   13. Footer
   ========================================= */
.footer {
    background-color: var(--primary-color);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 20px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-logo {
    height: 40px;
    margin-bottom: 20px;
}
.footer-desc {
    font-size: 0.85rem;
    margin-bottom: 20px;
}
.footer-contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.85rem;
}
.footer-contact-info i {
    color: var(--accent-gold);
}
.footer-social a {
    color: var(--white);
    margin-right: 10px;
    font-size: 1.2rem;
}
.footer-social a:hover {
    color: var(--accent-gold);
}
.footer-col h3 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 20px;
    font-family: var(--font-body);
    letter-spacing: 1px;
}
.footer-links li {
    margin-bottom: 10px;
}
.footer-links a {
    font-size: 0.85rem;
    transition: var(--transition);
}
.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}
.insta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
}
.insta-grid img {
    aspect-ratio: 1;
    object-fit: cover;
    opacity: 0.8;
    transition: var(--transition);
    cursor: pointer;
}
.insta-grid img:hover {
    opacity: 1;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    font-size: 0.75rem;
}
.policy-links a {
    margin: 0 5px;
}
.policy-links a:hover {
    color: var(--white);
}

/* =========================================
   Responsive Media Queries
   ========================================= */
@media (max-width: 1200px) {
    .nav-arrow.prev { left: 0; }
    .nav-arrow.next { right: 0; }
}

@media (max-width: 992px) {
    .resort-masonry {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto auto;
    }
    .r-col-1.r-row-1 { grid-column: 1 / 2; grid-row: 1 / 2; }
    .r-col-1.r-row-2-3 { grid-column: 1 / 2; grid-row: 2 / 3; }
    .r-col-2.r-row-1-2 { grid-column: 2 / 3; grid-row: 1 / 2; }
    .r-col-2.r-row-3 { grid-column: 2 / 3; grid-row: 2 / 3; }
    .r-col-3-4.r-row-1-2 { grid-column: 1 / 3; grid-row: 3 / 4; }
    .r-col-3-4.r-row-3 { grid-column: 1 / 3; grid-row: 4 / 5; }

    .welcome-grid, .villas-layout, .process-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .process-item.border-sides {
        border-left: none;
        border-right: none;
        border-top: 1px solid rgba(255,255,255,0.1);
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding: 40px 0;
    }
    .process-item {
        padding: 20px 0;
    }

    .package-grid, .blog-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .nl-form {
        flex-direction: column;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .top-bar { display: none; }
    .desktop-only { display: none; }
    
    .nav-toggle, .mobile-only {
        display: block;
    }
    .nav-close {
        display: none !important;
    }
    
    .header-right {
        position: relative;
        z-index: 1002; /* Ensure it stays above the menu */
    }

    /* CSS Animated Hamburger */
    .nav-toggle {
        width: 30px;
        height: 20px;
        position: relative;
        cursor: pointer;
        z-index: 1002;
    }
    /* Hide the boxicon content and repurpose the <i> tag */
    .nav-toggle i::before {
        content: '' !important;
    }
    .nav-toggle i {
        display: block;
        width: 100%;
        height: 2px;
        background-color: var(--primary-color);
        position: absolute;
        top: 9px;
        left: 0;
        transition: 0.3s ease;
    }
    .nav-toggle::before,
    .nav-toggle::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 2px;
        background-color: var(--primary-color);
        transition: 0.3s ease;
        left: 0;
    }
    .nav-toggle::before { top: 0; }
    .nav-toggle::after { bottom: 0; }

    /* X state */
    .nav-toggle.open::before {
        transform: rotate(45deg);
        top: 9px;
        background-color: var(--white);
    }
    .nav-toggle.open i {
        opacity: 0;
    }
    .nav-toggle.open::after {
        transform: rotate(-45deg);
        bottom: 9px;
        background-color: var(--white);
    }
    
    .nav-menu {
        position: fixed;
        top: 0; right: -100%;
        width: 80%; height: 100vh;
        background-color: var(--primary-color); /* Dark Blue */
        padding: 80px 40px 60px;
        box-shadow: -5px 0 15px rgba(0,0,0,0.5);
        transition: 0.4s ease;
        z-index: 1001;
        overflow-y: auto;
    }
    .nav-menu.show-menu { right: 0; }
    
    .nav-list {
        flex-direction: column;
        gap: 0;
    }
    .nav-list li {
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .nav-list li:last-child {
        border-bottom: none;
    }
    .nav-link {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 0;
        color: var(--white) !important;
        font-size: 1rem;
        font-weight: 500;
        letter-spacing: 1px;
    }
    .nav-link:hover, .nav-link.active {
        color: var(--accent-gold) !important;
    }

    
    .hero-text .title { font-size: 2.5rem; }
    .section-title { font-size: 1.8rem; }
    
    .resort-masonry, .package-grid, .blog-grid, .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .r-col-1.r-row-1, .r-col-1.r-row-2-3, 
    .r-col-2.r-row-1-2, .r-col-2.r-row-3,
    .r-col-3-4.r-row-1-2, .r-col-3-4.r-row-3 {
        grid-column: 1 / 2;
        grid-row: auto;
    }
    
    .flex-between {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .villas-right {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

/* =========================================
   Resorts Page Specific Styles
   ========================================= */

/* 1. Page Hero */
.page-hero {
    position: relative;
    height: 45vh;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.page-hero .hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1;
}
.page-title {
    color: var(--white);
    font-size: 3rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-family: var(--font-heading);
}
.page-subtitle {
    color: var(--white);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
    font-family: var(--font-heading);
}

/* 2. Filter Bar */
.filter-section {
    background-color: var(--light-bg);
    padding: 30px 0;
    margin-top: -60px; /* pull up into hero */
    position: relative;
    z-index: 10;
}
.filter-box {
    background-color: var(--white);
    padding: 25px 30px;
    box-shadow: var(--shadow-hover);
    border-radius: 4px;
}
.filter-title {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    letter-spacing: 1px;
    text-align: center;
    font-family: var(--font-body);
}
.filter-form {
    display: flex;
    gap: 15px;
    align-items: center;
}
.filter-group {
    flex: 1;
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    padding: 10px 15px;
    border-radius: 4px;
}
.filter-group i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-right: 10px;
}
.filter-group input, .filter-group select {
    width: 100%;
    border: none;
    outline: none;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-main);
    background: transparent;
}
.filter-btn {
    background-color: var(--accent-orange);
    border: none;
    padding: 13px 30px;
    border-radius: 4px;
}
.filter-btn:hover {
    background-color: #e55c2c;
}

/* 3. Resorts Listing Grid */
.resorts-listing {
    padding: 80px 0;
    background-color: var(--white);
}
.listing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.listing-card {
    background-color: var(--white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.listing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}
.listing-img {
    position: relative;
    height: 220px;
}
.listing-img img {
    width: 100%; height: 100%; object-fit: cover;
}
.rating-badge {
    position: absolute;
    bottom: -15px;
    right: 20px;
    background-color: var(--accent-orange);
    color: var(--white);
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.1rem;
    border: 3px solid var(--white);
    box-shadow: var(--shadow-soft);
}
.listing-content {
    padding: 25px 20px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.listing-content .stars {
    color: var(--accent-orange);
    font-size: 0.9rem;
    margin-bottom: 5px;
}
.listing-content h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    font-family: var(--font-body);
}
.listing-content .loc {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 20px;
}
.listing-bottom {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
}
.features {
    display: flex;
    gap: 10px;
    color: var(--primary-color);
    font-size: 1.1rem;
    opacity: 0.8;
}
.btn-gold {
    background-color: var(--accent-gold);
    color: var(--white);
    padding: 8px 15px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 4px;
    transition: var(--transition);
}
.btn-gold:hover {
    background-color: #a7814b;
}

/* 4. Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 50px;
}
.page-link {
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--border-color);
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 4px;
}
.page-link:hover, .page-link.active {
    background-color: var(--accent-gold);
    color: var(--white);
    border-color: var(--accent-gold);
}
.page-dots {
    color: var(--text-muted);
}

@media (max-width: 992px) {
    .listing-grid {
        grid-template-columns: 1fr 1fr;
    }
    .filter-form {
        flex-direction: column;
    }
    .filter-btn {
        width: 100%;
    }
}
@media (max-width: 768px) {
    .listing-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .listing-grid {
        grid-template-columns: 1fr;
    }
    .page-title {
        font-size: 2.2rem;
    }
}

/* =========================================
   Holidays Page Specifics
   ========================================= */
.vip-tab {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background-color: #FF7452; /* Orange color */
    color: var(--white);
    padding: 20px 10px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    border-radius: 10px 0 0 10px;
    z-index: 1000;
    box-shadow: -2px 0 10px rgba(0,0,0,0.15);
    transition: var(--transition);
    text-transform: uppercase;
}
.vip-tab:hover {
    padding-right: 20px;
    background-color: #e65b39;
    color: var(--white);
}

.holidays-filter {
    padding: 30px 0;
}
.h-filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.h-filter-left, .h-filter-right {
    display: flex;
    gap: 15px;
}
.h-select {
    position: relative;
    background-color: var(--white);
    border: 1px solid #e1e1e1;
    border-radius: 4px;
    overflow: hidden;
    min-width: 180px;
}
.h-select select {
    appearance: none;
    background: transparent;
    border: none;
    padding: 12px 40px 12px 20px;
    font-size: 0.9rem;
    color: #666;
    width: 100%;
    cursor: pointer;
    font-family: var(--font-body);
}
.h-select select:focus {
    outline: none;
}
.h-select i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    pointer-events: none;
    font-size: 1.2rem;
}

.h-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
}
.h-card {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}
.h-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    min-height: 45px;
}
.h-title {
    font-size: 1rem;
    font-weight: 600;
    color: #0b1b3d;
    font-family: var(--font-body);
    line-height: 1.4;
    max-width: 75%;
}
.h-price {
    background-color: #FF7452;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 4px;
    white-space: nowrap;
}
.h-card-img {
    position: relative;
    width: 100%;
    height: 220px;
    border-radius: 0;
    overflow: hidden;
}
.h-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.h-card:hover .h-card-img img {
    transform: scale(1.05);
}
.h-logo-overlay {
    position: absolute;
    bottom: 10px;
    left: 10px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: rgba(0,0,0,0.6);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
}
.h-card-footer {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-main);
    font-weight: 400;
}
.h-card-footer i {
    color: #FF7452;
    font-size: 1.1rem;
}

@media (max-width: 992px) {
    .h-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .h-grid {
        grid-template-columns: 1fr;
    }
    .h-filter-bar {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    .h-filter-left {
        flex-direction: column;
    }
}

/* =========================================
   Villas Page Specifics
   ========================================= */
.v-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.v-card {
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: var(--transition);
}
.v-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}
.v-card-img {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}
.v-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.v-card:hover .v-card-img img {
    transform: scale(1.03);
}
.v-logo-overlay {
    position: absolute;
    bottom: 15px;
    left: 15px;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50%;
    border: 2px solid white;
    object-fit: cover;
    background-color: white;
}
.v-card-content {
    padding: 20px;
}
.v-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}
.v-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0b1b3d;
    font-family: var(--font-body);
    margin-bottom: 5px;
    text-transform: capitalize;
}
.v-price {
    color: #0b1b3d;
    font-weight: 700;
    font-size: 1rem;
}
.v-arrow {
    width: 35px;
    height: 35px;
    background-color: #f0f4f8;
    color: #0b1b3d;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: var(--transition);
    flex-shrink: 0;
    cursor: pointer;
}
.v-card:hover .v-arrow {
    background-color: #0b1b3d;
    color: white;
}
.v-card-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.85rem;
    color: #666;
    border-top: 1px solid #f0f0f0;
    padding-top: 15px;
}
.v-card-footer span {
    display: flex;
    align-items: center;
    gap: 5px;
}
.v-card-footer i {
    color: #FF7452; /* Orange accent for icons */
    font-size: 1rem;
}

@media (max-width: 992px) {
    .v-search-bar {
        flex-direction: column;
    }
    .v-search-item {
        border-right: none !important;
        border-bottom: 1px solid #eee;
        width: 100%;
        padding: 10px 0 !important;
    }
    .v-search-bar .btn {
        width: 100%;
        margin-top: 10px;
    }
}
@media (max-width: 768px) {
    .v-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   Yachts Page Specifics
   ========================================= */
.yachts-hero {
    position: relative;
    padding: 150px 0 180px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #fff;
}
.yachts-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1;
}
.yachts-bg img {
    width: 100%; height: 100%; object-fit: cover; object-position: center;
}
.yachts-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.85) 45%, rgba(255,255,255,0) 100%);
    z-index: 2;
}
.yachts-content {
    position: relative;
    z-index: 3;
}
.yachts-watermark {
    position: absolute;
    top: -50px;
    left: -20px;
    font-size: 7rem;
    font-family: var(--font-heading);
    color: rgba(11, 27, 61, 0.04);
    white-space: nowrap;
    z-index: -1;
    pointer-events: none;
    font-weight: 700;
}
.yachts-text {
    max-width: 600px;
}
.yachts-text h2 {
    font-size: 3.5rem;
    font-family: var(--font-heading);
    color: #0b1b3d;
    line-height: 1.15;
    margin-bottom: 25px;
    font-weight: 700;
}
.yachts-divider {
    width: 60px;
    height: 2px;
    background-color: #DFA26E;
    margin-bottom: 30px;
}
.yachts-text p {
    color: #0b1b3d;
    font-size: 0.95rem;
    line-height: 1.8;
    opacity: 0.85;
    font-family: var(--font-heading);
}

@media (max-width: 992px) {
    .yachts-overlay {
        background: linear-gradient(to right, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.9) 70%, rgba(255,255,255,0.4) 100%);
    }
    .yachts-watermark {
        font-size: 5rem;
        top: -30px;
    }
}
@media (max-width: 768px) {
    .yachts-text h2 {
        font-size: 2.5rem;
    }
    .yachts-overlay {
        background: rgba(255,255,255,0.9);
    }
}

/* =========================================
   15. Contact Page Styles
   ========================================= */
.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}
.contact-info-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
}
.contact-info-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
.contact-icon {
    font-size: 2.5rem;
    color: #D3B58B;
    margin-bottom: 15px;
}
.contact-info-card h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: #0b1b3d;
    margin-bottom: 5px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.contact-info-card h6 {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: #999;
    letter-spacing: 1px;
    margin-bottom: 25px;
    font-weight: 500;
}
.contact-info-card p {
    font-size: 0.9rem;
    color: #0b1b3d;
    font-weight: 600;
    margin-bottom: 25px;
    line-height: 1.6;
}
.contact-info-card .card-action {
    font-size: 0.8rem;
    color: #0b1b3d;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
}

.contact-split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.contact-form-area {
    padding-right: 20px;
    background: #fff;
}
.contact-form-area h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: #0b1b3d;
    font-weight: 400;
    margin-bottom: 5px;
}
.contact-form-area h2 span {
    font-weight: 700;
}
.contact-form-area p.subtitle {
    font-size: 0.85rem;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 40px;
}
.c-form-group {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}
.c-form-group > div {
    flex: 1;
}
.c-form-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #333;
    margin-bottom: 8px;
    font-weight: 500;
}
.c-form-input, .c-form-textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #e5e5e5;
    outline: none;
    font-family: var(--font-body);
    font-size: 0.9rem;
    background: #fafafa;
}
.c-form-textarea {
    min-height: 150px;
    resize: vertical;
}
.recaptcha-box {
    margin-top: 20px;
    margin-bottom: 20px;
    border: 1px solid #e5e5e5;
    background: #fafafa;
    padding: 10px;
    display: inline-block;
}
.contact-submit-btn {
    background-color: #D3B58B;
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 1px;
    width: 100%;
    cursor: pointer;
    text-transform: uppercase;
    transition: 0.3s;
}
.contact-submit-btn:hover {
    background-color: #c0a177;
}

.contact-map-area {
    width: 100%;
    height: 100%;
    min-height: 500px;
    background-color: #eee;
}
.contact-map-area iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 992px) {
    .contact-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-cards-grid {
        grid-template-columns: 1fr;
    }
    .contact-split-layout {
        grid-template-columns: 1fr;
    }
    .contact-form-area {
        padding-right: 0;
    }
}

/* =========================================
   16. Preloader
   ========================================= */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--light-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader-hidden {
    opacity: 0;
    visibility: hidden;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 5px solid rgba(216, 155, 29, 0.2); /* Secondary color faint */
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    position: relative;
}

.spinner::before {
    content: '';
    position: absolute;
    top: 5px; left: 5px; right: 5px; bottom: 5px;
    border: 3px solid rgba(139, 30, 45, 0.2); /* Primary color faint */
    border-top-color: var(--secondary-color);
    border-radius: 50%;
    animation: spin 1.5s linear infinite reverse;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

