/* ===============================
   COCOVISTA HOLIDAYS
   COMPLETE PREMIUM STYLESHEET
================================ */

:root {
    --primary: #0b2233;
    --primary-dark: #061722;
    --accent: #c9a45c;
    --dark: #102333;
    --text: #687985;
    --light: #f7f4ed;
    --white: #ffffff;
    --border: #e4ded1;
    --shadow: 0 18px 50px rgba(7, 19, 31, 0.10);
    --gold-light: #ead39b;
    --cream: #fbf8f1;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

img {
    width: 100%;
    display: block;
}

.container {
    width: min(1180px, 92%);
    margin: auto;
}

.section {
    padding: 100px 0;
}


/* ===============================
   TOP BAR
================================ */

.top-bar {
    background: #f7f8f7;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
}

.top-bar-content {
    min-height: 42px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-contact,
.top-social {
    display: flex;
    align-items: center;
    gap: 18px;
}

.top-contact a,
.top-social a,
.top-social span {
    color: var(--text);
}

.top-contact i {
    color: var(--primary);
}

.top-social a:hover {
    color: var(--accent);
}


/* ===============================
   NAVBAR
================================ */

.navbar {
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    min-height: 82px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 11px;
}

.logo-icon {
    width: 51px;
    height: 51px;
    background: linear-gradient(135deg, var(--primary), #1a3d52);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 21px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text span {
    font-size: 23px;
    font-weight: 800;
    color: var(--dark);
}

.logo-text small {
    font-size: 9px;
    letter-spacing: 3px;
    color: var(--accent);
    font-weight: bold;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-left: auto;
}

.nav-menu a {
    color: var(--dark);
    font-size: 14px;
    font-weight: 700;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary);
}

.nav-menu a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    left: 0;
    bottom: -9px;
    background: var(--accent);
    transition: 0.3s;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-btn,
.primary-btn,
.search-btn {
    background: var(--primary);
    color: white;
    border: none;
    font-family: inherit;
    font-weight: 700;
    border-radius: 12px;
    padding: 14px 22px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.nav-btn:hover,
.primary-btn:hover,
.search-btn:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

.mobile-menu {
    display: none;
}


/* ===============================
   HERO
================================ */

.hero {
    min-height: 720px;
    position: relative;
    display: flex;
    align-items: center;

    background:
        url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1920&q=90")
        center/cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(7, 38, 45, 0.88) 0%,
            rgba(7, 38, 45, 0.72) 42%,
            rgba(7, 38, 45, 0.30) 100%
        );
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 760px;
    padding-top: 70px;
}

.hero-tag {
    display: inline-flex;
    gap: 9px;
    align-items: center;
    color: white;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.hero-tag i {
    color: #ead39b;
}

.hero h1 {
    font-family: "Playfair Display", serif;
    font-size: clamp(48px, 6vw, 76px);
    color: white;
    line-height: 1.1;
    margin-bottom: 18px;
}

.hero h1 span {
    color: #ead39b;
}

.hero-content p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 18px;
    max-width: 680px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-top: 28px;
}

.primary-btn {
    padding: 17px 27px;
}

.secondary-btn {
    color: white;
    font-weight: 700;
}

.secondary-btn i {
    margin-right: 8px;
}


/* ===============================
   BOOKING CARD
================================ */

.booking-card {
    background: white;
    border-radius: 22px;
    padding: 30px;
    margin-top: 55px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.20);
}

.booking-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.booking-heading span {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.4px;
    color: var(--accent);
}

.booking-heading h2 {
    font-family: "Playfair Display", serif;
    color: var(--dark);
    font-size: 28px;
    margin-top: 5px;
}

.booking-heading > i {
    font-size: 30px;
    color: var(--primary);
}

.form-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr auto;
    gap: 15px;
    align-items: end;
}

.booking-field label {
    display: block;
    color: var(--dark);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 8px;
}

.booking-field label i {
    color: var(--primary);
    margin-right: 5px;
}

.booking-field select,
.booking-field input {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text);
    font-family: inherit;
    outline: none;
}

.booking-field select:focus,
.booking-field input:focus {
    border-color: var(--primary);
}

.search-btn {
    height: 49px;
    white-space: nowrap;
}


/* ===============================
   FEATURES
================================ */

.features {
    background: #f8f5ee;
    padding: 45px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-icon {
    width: 53px;
    height: 53px;
    flex-shrink: 0;
    background: #f2e7c9;
    color: var(--primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
}

.feature-item h3 {
    color: var(--dark);
    font-size: 16px;
    margin-bottom: 3px;
}

.feature-item p {
    font-size: 13px;
}


/* ===============================
   SECTION HEADINGS
================================ */

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 45px;
}

.section-heading > div {
    max-width: 700px;
}

.section-tag {
    color: var(--primary);
    background: #f2e7c9;
    padding: 8px 14px;
    border-radius: 30px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 15px;
}

.section-heading h2,
.why-content h2 {
    font-family: "Playfair Display", serif;
    color: var(--dark);
    font-size: 46px;
    margin-bottom: 12px;
}

.section-heading h2 span,
.why-content h2 span {
    color: var(--accent);
}

.text-link {
    color: var(--primary);
    font-weight: 700;
    white-space: nowrap;
}

.text-link i {
    margin-left: 8px;
}


/* ===============================
   DESTINATIONS
================================ */

.destinations-section {
    background: white;
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 27px;
}

.destination-card {
    border-radius: 20px;
    overflow: hidden;
    background: white;
    box-shadow: var(--shadow);
    transition: 0.3s;
}

.destination-card:hover {
    transform: translateY(-10px);
}

.destination-card img {
    height: 270px;
    object-fit: cover;
}

.destination-content {
    padding: 25px;
}

.destination-content span {
    font-size: 11px;
    font-weight: 700;
    color: var(--accent);
}

.destination-content h3 {
    font-family: "Playfair Display", serif;
    color: var(--dark);
    font-size: 27px;
    margin: 5px 0 10px;
}

.destination-content p {
    font-size: 14px;
    line-height: 1.6;
}

.destination-content a {
    display: inline-block;
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
    margin-top: 17px;
}

.destination-content a i {
    margin-left: 5px;
}


/* ===============================
   WHY SECTION
================================ */

.why-section {
    background: #f7f4ed;
    padding: 110px 0;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 85px;
    align-items: center;
}

.why-image {
    position: relative;
}

.why-image img {
    height: 570px;
    object-fit: cover;
    border-radius: 24px;
}

.experience-box {
    position: absolute;
    right: -25px;
    bottom: 40px;
    background: var(--accent);
    color: white;
    padding: 25px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.experience-box strong {
    font-size: 40px;
}

.experience-box span {
    font-size: 13px;
    line-height: 1.4;
}

.why-content > p {
    margin: 20px 0 25px;
    line-height: 1.8;
}

.why-list {
    display: grid;
    gap: 15px;
    margin-bottom: 30px;
}

.why-list div {
    color: var(--dark);
    font-weight: 600;
}

.why-list i {
    color: var(--primary);
    margin-right: 9px;
}


/* ===============================
   CTA
================================ */

.cta-section {
    padding: 75px 0;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta-content span {
    color: #ead39b;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 1.5px;
}

.cta-content h2 {
    font-family: "Playfair Display", serif;
    color: white;
    font-size: 42px;
    margin-top: 10px;
}

.cta-btn {
    background: var(--accent);
    color: white;
    padding: 17px 25px;
    border-radius: 12px;
    font-weight: bold;
}

.cta-btn i {
    margin-left: 8px;
}


/* ===============================
   FOOTER
================================ */

footer {
    background: #061722;
    color: rgba(255,255,255,0.7);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: 50px;
    padding: 75px 0 55px;
}

.footer-logo .logo-text span {
    color: white;
}

.footer-about p {
    margin: 20px 0;
    line-height: 1.7;
    font-size: 14px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social a:hover {
    background: var(--accent);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links h3,
.footer-contact h3 {
    color: white;
    margin-bottom: 8px;
}

.footer-links a,
.footer-contact p {
    color: rgba(255,255,255,0.65);
    font-size: 14px;
}

.footer-contact p {
    margin-bottom: 13px;
    line-height: 1.5;
}

.footer-contact i {
    color: var(--accent);
    margin-right: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p,
.footer-bottom a {
    color: rgba(255,255,255,0.5);
    font-size: 12px;
}

.footer-bottom > .container > div {
    display: flex;
    gap: 20px;
}


/* ===============================
   WHATSAPP
================================ */

.whatsapp-btn {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25d366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(37,211,102,0.35);
}


/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 1050px) {

    .nav-menu {
        gap: 15px;
    }

    .nav-menu a {
        font-size: 12px;
    }

    .form-grid {
        grid-template-columns: 1fr 1fr;
    }

    .destination-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 850px) {

    .top-bar {
        display: none;
    }

    .mobile-menu {
        display: block;
        margin-left: auto;
        background: var(--primary);
        color: white;
        border: none;
        width: 45px;
        height: 45px;
        border-radius: 10px;
        font-size: 18px;
    }

    .nav-btn {
        display: none;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 82px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 4%;
        box-shadow: var(--shadow);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu a {
        padding: 10px 0;
        font-size: 14px;
    }

    .hero {
        min-height: 850px;
    }

    .hero-content {
        padding-top: 70px;
    }

    .features-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        gap: 50px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cta-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }

}


@media (max-width: 600px) {

    .section {
        padding: 70px 0;
    }

    .hero {
        min-height: 900px;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .booking-card {
        padding: 20px;
        margin-top: 40px;
    }

    .form-grid,
    .destination-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .section-heading {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .section-heading h2,
    .why-content h2 {
        font-size: 37px;
    }

    .why-image img {
        height: 420px;
    }

    .experience-box {
        right: 10px;
        bottom: 20px;
    }

    .footer-bottom .container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .cta-content h2 {
        font-size: 34px;
    }

}

/* ===============================
   INNER PAGE HERO
================================ */

.page-hero {
    min-height: 440px;
    position: relative;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}

.about-page-hero {
    background-image:
        url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?auto=format&fit=crop&w=1920&q=85");
}

.page-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(7, 38, 45, 0.88),
        rgba(7, 38, 45, 0.48)
    );
}

.page-hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.page-hero-content > span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
    color: #ead39b;
    margin-bottom: 15px;
}

.page-hero-content h1 {
    font-family: "Playfair Display", serif;
    font-size: clamp(42px, 5vw, 65px);
    line-height: 1.1;
    margin-bottom: 18px;
}

.page-hero-content p {
    max-width: 620px;
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255,255,255,0.85);
}

.breadcrumb {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 25px;
    font-size: 13px;
}

.breadcrumb a {
    color: white;
}

.breadcrumb i {
    font-size: 10px;
    color: var(--accent);
}

.breadcrumb span {
    color: #ead39b;
}


/* ===============================
   ABOUT INTRO
================================ */

.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
}

.about-image-box {
    position: relative;
    padding-bottom: 50px;
    padding-right: 50px;
}

.about-image-box > img {
    height: 530px;
    object-fit: cover;
    border-radius: 25px;
}

.about-small-image {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 230px;
    border: 8px solid white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-small-image img {
    height: 190px;
    object-fit: cover;
}

.about-intro-content h2 {
    font-family: "Playfair Display", serif;
    color: var(--dark);
    font-size: 43px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.about-intro-content h2 span {
    color: var(--accent);
}

.about-intro-content > p {
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 28px 0;
}

.about-stats div {
    border-left: 2px solid var(--accent);
    padding-left: 13px;
}

.about-stats strong {
    display: block;
    font-size: 28px;
    color: var(--primary);
}

.about-stats span {
    font-size: 12px;
}


/* ===============================
   MISSION
================================ */

.mission-section {
    padding: 100px 0;
    background: #f4f8f7;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.mission-card {
    background: white;
    padding: 38px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: 0.3s;
}

.mission-card:hover {
    transform: translateY(-8px);
}

.mission-icon {
    width: 60px;
    height: 60px;
    background: #f2e7c9;
    color: var(--primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 22px;
}

.mission-card h3 {
    color: var(--dark);
    font-size: 21px;
    margin-bottom: 12px;
}

.mission-card p {
    font-size: 14px;
    line-height: 1.8;
}


/* ===============================
   CENTER HEADING
================================ */

.center-heading {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.center-heading h2 {
    font-family: "Playfair Display", serif;
    color: var(--dark);
    font-size: 44px;
    margin-bottom: 15px;
}

.center-heading h2 span {
    color: var(--accent);
}

.center-heading p {
    line-height: 1.7;
}


/* ===============================
   ABOUT FEATURES
================================ */

.about-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.about-feature {
    text-align: center;
    padding: 30px 20px;
    border: 1px solid var(--border);
    border-radius: 18px;
    transition: 0.3s;
}

.about-feature:hover {
    background: var(--primary);
    transform: translateY(-7px);
}

.about-feature > div {
    width: 58px;
    height: 58px;
    margin: auto auto 18px;
    background: #f2e7c9;
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
}

.about-feature h3 {
    color: var(--dark);
    font-size: 17px;
    margin-bottom: 10px;
}

.about-feature p {
    font-size: 13px;
    line-height: 1.6;
}

.about-feature:hover h3,
.about-feature:hover p {
    color: white;
}


/* ===============================
   ABOUT RESPONSIVE
================================ */

@media (max-width: 900px) {

    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .mission-grid {
        grid-template-columns: 1fr;
    }

    .about-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 600px) {

    .page-hero {
        min-height: 390px;
    }

    .about-intro-content h2,
    .center-heading h2 {
        font-size: 35px;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .about-features-grid {
        grid-template-columns: 1fr;
    }

    .about-image-box {
        padding-right: 20px;
    }

    .about-small-image {
        width: 180px;
    }
}
/* =========================================
   DESTINATIONS PAGE
========================================= */

.destinations-page-hero {
    background-image:
        url("https://images.unsplash.com/photo-1488646953014-85cb44e25828?auto=format&fit=crop&w=1920&q=85");
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.destination-card {
    height: 430px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.destination-card:hover img {
    transform: scale(1.1);
}

.destination-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(5, 30, 35, 0.92),
        rgba(5, 30, 35, 0.08)
    );
}

.destination-content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 28px;
    color: white;
}

.destination-content span {
    color: #ffd1bd;
    font-size: 12px;
}

.destination-content h3 {
    font-family: "Playfair Display", serif;
    font-size: 30px;
    margin: 8px 0;
}

.destination-content p {
    color: rgba(255,255,255,0.8);
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 18px;
}

.destination-content a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-weight: 700;
    font-size: 13px;
}

.destination-content a i {
    transition: 0.3s;
}

.destination-content a:hover i {
    transform: translateX(5px);
}


/* DESTINATION INFO */

.destination-info-section {
    padding: 100px 0;
    background: #f7f4ed;
}

.destination-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.destination-info-content h2,
.custom-package-content h2 {
    font-family: "Playfair Display", serif;
    font-size: 43px;
    line-height: 1.2;
    color: var(--dark);
    margin: 15px 0 20px;
}

.destination-info-content h2 span,
.custom-package-content h2 span {
    color: var(--accent);
}

.destination-info-content > p,
.custom-package-content > p {
    line-height: 1.8;
    margin-bottom: 25px;
}

.destination-checks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 17px;
    margin-bottom: 30px;
}

.destination-checks div {
    font-size: 14px;
    font-weight: 600;
}

.destination-checks i {
    color: var(--primary);
    margin-right: 6px;
}

.destination-info-image img {
    width: 100%;
    height: 470px;
    object-fit: cover;
    border-radius: 25px;
}


/* =========================================
   PACKAGES PAGE
========================================= */

.packages-page-hero {
    background-image:
        url("https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?auto=format&fit=crop&w=1920&q=85");
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.package-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: 0.35s ease;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.14);
}

.package-image {
    height: 250px;
    position: relative;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.package-tag {
    position: absolute;
    top: 18px;
    left: 18px;
    background: var(--accent);
    color: white;
    padding: 7px 13px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
}

.package-price {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background: var(--primary);
    color: white;
    padding: 10px 16px;
    border-radius: 14px;
    text-align: center;
    min-width: 90px;
}

.package-price small {
    display: block;
    font-size: 10px;
    opacity: 0.8;
}

.package-price strong {
    font-size: 19px;
}

.package-content {
    padding: 32px 25px 25px;
}

.package-location {
    font-size: 12px;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 10px;
}

.package-location i {
    margin-right: 4px;
}

.package-content h3 {
    font-family: "Playfair Display", serif;
    color: var(--dark);
    font-size: 24px;
    margin-bottom: 12px;
}

.package-content > p {
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.package-details {
    display: flex;
    gap: 25px;
    padding: 15px 0;
    border-top: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
    margin-bottom: 20px;
}

.package-details span {
    font-size: 12px;
    font-weight: 600;
}

.package-details i {
    color: var(--primary);
    margin-right: 5px;
}

.package-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--primary);
    font-weight: 700;
    font-size: 13px;
}


/* CUSTOM PACKAGE */

.custom-package-section {
    padding: 100px 0;
    background: #f7f4ed;
}

.custom-package-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.custom-package-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 25px;
}

.custom-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 30px;
}

.custom-points div {
    font-size: 14px;
    font-weight: 600;
}

.custom-points i {
    color: var(--primary);
    margin-right: 7px;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1000px) {

    .destination-grid,
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .destination-info-grid,
    .custom-package-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

}

@media (max-width: 650px) {

    .destination-grid,
    .packages-grid {
        grid-template-columns: 1fr;
    }

    .destination-checks,
    .custom-points {
        grid-template-columns: 1fr;
    }

    .destination-info-content h2,
    .custom-package-content h2 {
        font-size: 34px;
    }

    .destination-card {
        height: 400px;
    }
}

/* =========================================
   SERVICES PAGE
========================================= */

.services-page-hero {
    background-image: url("https://images.unsplash.com/photo-1488646953014-85cb44e25828?auto=format&fit=crop&w=1920&q=85");
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-card {
    padding: 35px 30px;
    background: #fff;
    border: 1px solid #edf0ef;
    border-radius: 20px;
    transition: 0.35s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.1);
}

.service-icon {
    width: 65px;
    height: 65px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: rgba(31, 119, 118, 0.12);
    color: var(--primary);
    font-size: 25px;
    margin-bottom: 22px;
}

.service-card h3 {
    font-family: "Playfair Display", serif;
    font-size: 23px;
    margin-bottom: 12px;
    color: var(--dark);
}

.service-card p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-card a {
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
}

.travel-process-section {
    padding: 100px 0;
    background: var(--dark);
}

.light-heading h2 {
    color: white;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.process-card {
    position: relative;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 20px;
    color: white;
}

.process-card > i {
    font-size: 40px;
    color: var(--accent);
    margin-bottom: 20px;
}

.process-card h3 {
    font-family: "Playfair Display", serif;
    font-size: 23px;
    margin-bottom: 12px;
}

.process-card p {
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    font-size: 14px;
}

.process-number {
    position: absolute;
    top: 15px;
    right: 20px;
    color: rgba(255,255,255,0.15);
    font-size: 30px;
    font-weight: 700;
}


/* =========================================
   OFFERS PAGE
========================================= */

.offers-page-hero {
    background-image: url("https://images.unsplash.com/photo-1519671482749-fd09be7ccebf?auto=format&fit=crop&w=1920&q=85");
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.offer-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
}

.offer-image {
    height: 260px;
    position: relative;
}

.offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.offer-image span {
    position: absolute;
    top: 18px;
    right: 18px;
    background: var(--accent);
    color: white;
    padding: 10px 15px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
}

.offer-content {
    padding: 28px;
}

.offer-content small {
    color: var(--primary);
    font-weight: 700;
}

.offer-content h3 {
    font-family: "Playfair Display", serif;
    font-size: 25px;
    color: var(--dark);
    margin: 12px 0;
}

.offer-content p {
    font-size: 14px;
    line-height: 1.7;
}

.offer-price {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin: 20px 0;
}

.offer-price span {
    font-size: 13px;
}

.offer-price strong {
    color: var(--accent);
    font-size: 28px;
}

.offer-banner {
    padding: 70px 0;
    background: var(--primary);
    color: white;
}

.offer-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.offer-banner span {
    font-size: 12px;
    letter-spacing: 1.5px;
}

.offer-banner h2 {
    font-family: "Playfair Display", serif;
    font-size: 42px;
    margin: 10px 0;
}


/* =========================================
   BLOG PAGE
========================================= */

.blog-page-hero {
    background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1920&q=85");
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
    transition: 0.35s;
}

.blog-card:hover {
    transform: translateY(-8px);
}

.blog-image {
    height: 240px;
    position: relative;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-image span {
    position: absolute;
    left: 20px;
    bottom: 18px;
    background: var(--primary);
    color: white;
    padding: 7px 12px;
    font-size: 10px;
    font-weight: 700;
    border-radius: 20px;
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    color: #888;
    font-size: 12px;
}

.blog-content h3 {
    font-family: "Playfair Display", serif;
    color: var(--dark);
    font-size: 23px;
    line-height: 1.35;
    margin: 12px 0;
}

.blog-content p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 18px;
}

.blog-content a {
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
}

.newsletter-section {
    padding: 80px 0;
    background: #f7f4ed;
}

.newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.newsletter-content h2 {
    font-family: "Playfair Display", serif;
    color: var(--dark);
    font-size: 36px;
    margin: 10px 0;
}

.newsletter-form {
    display: flex;
    min-width: 500px;
}

.newsletter-form input {
    flex: 1;
    border: 1px solid #ddd;
    padding: 17px;
    border-radius: 10px 0 0 10px;
    outline: none;
}

.newsletter-form button {
    border: none;
    background: var(--primary);
    color: white;
    padding: 0 25px;
    border-radius: 0 10px 10px 0;
    cursor: pointer;
    font-weight: 700;
}


/* =========================================
   CONTACT PAGE
========================================= */

.contact-page-hero {
    background-image: url("https://images.unsplash.com/photo-1500534623283-312aade485b7?auto=format&fit=crop&w=1920&q=85");
}

.contact-section {
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 50px;
    margin-top: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px;
    background: #f7f4ed;
    border-radius: 15px;
}

.contact-info-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    background: var(--primary);
    color: white;
    border-radius: 14px;
    font-size: 20px;
}

.contact-info-card span {
    color: var(--accent);
    font-size: 11px;
    font-weight: 700;
}

.contact-info-card h3 {
    font-size: 15px;
    margin-top: 5px;
    color: var(--dark);
}

.contact-form-wrapper {
    padding: 40px;
    border-radius: 22px;
    background: white;
    box-shadow: 0 10px 45px rgba(0,0,0,0.08);
}

.contact-form-wrapper h2 {
    font-family: "Playfair Display", serif;
    color: var(--dark);
    font-size: 32px;
}

.contact-form-wrapper > p {
    margin: 10px 0 25px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid #e1e5e4;
    border-radius: 10px;
    outline: none;
    font-family: inherit;
    background: #fbfaf7;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--primary);
}


/* =========================================
   RESPONSIVE EXTRA
========================================= */

@media (max-width: 1000px) {

    .services-grid,
    .offers-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .newsletter-form {
        width: 100%;
        min-width: 0;
    }
}

@media (max-width: 650px) {

    .services-grid,
    .offers-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .offer-banner-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .offer-banner h2 {
        font-size: 34px;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 10px;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
        min-height: 52px;
        border-radius: 10px;
    }

    .contact-form-wrapper {
        padding: 25px;
    }
}

/* UPDATED DESTINATION & PACKAGE CARDS */

.destination-grid,
.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.destination-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    transition: 0.35s ease;
}

.destination-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.14);
}

.destination-image {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.destination-card:hover .destination-image img {
    transform: scale(1.08);
}

.destination-tag {
    position: absolute;
    top: 18px;
    left: 18px;
    padding: 8px 13px;
    border-radius: 30px;
    background: var(--accent);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
}

.destination-content {
    padding: 25px;
}

.destination-location {
    display: flex;
    justify-content: space-between;
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
}

.destination-location .fa-star {
    color: #f5a623;
}

.destination-content h3 {
    font-family: "Playfair Display", serif;
    font-size: 27px;
    color: var(--dark);
    margin: 12px 0 10px;
}

.destination-content p {
    font-size: 14px;
    line-height: 1.7;
}

.destination-bottom {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid #eee;
}

.price small {
    display: block;
    color: #888;
    font-size: 11px;
}

.price strong {
    color: var(--accent);
    font-size: 25px;
}

.card-btn {
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
}


/* UPDATED PACKAGES */

.package-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
    transition: 0.35s ease;
}

.package-card:hover {
    transform: translateY(-8px);
}

.package-image {
    height: 240px;
    position: relative;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.package-image span {
    position: absolute;
    left: 18px;
    bottom: 18px;
    background: var(--primary);
    color: white;
    padding: 8px 13px;
    border-radius: 30px;
    font-size: 10px;
    font-weight: 700;
}

.package-content {
    padding: 25px;
}

.package-content h3 {
    font-family: "Playfair Display", serif;
    font-size: 25px;
    color: var(--dark);
    margin-bottom: 18px;
}

.package-content p {
    font-size: 13px;
    margin: 12px 0;
}

.package-content p i {
    color: var(--accent);
    width: 20px;
}

.package-footer {
    display: flex;
    justify-content: space-between;
    align-items: end;
    border-top: 1px solid #eee;
    margin-top: 20px;
    padding-top: 18px;
}

.package-footer small {
    display: block;
    font-size: 11px;
    color: #888;
}

.package-footer strong {
    color: var(--accent);
    font-size: 26px;
}

.package-footer a {
    background: var(--primary);
    color: white;
    padding: 11px 17px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
}


/* RESPONSIVE */

@media (max-width: 1000px) {
    .destination-grid,
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .destination-grid,
    .packages-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   UPDATED VACATION SEARCH FORM
========================================= */

.booking-form {
    display: grid;
    grid-template-columns: 1.2fr 1.5fr 1fr auto;
    gap: 15px;
    align-items: end;
}

.booking-form .form-group {
    display: flex;
    flex-direction: column;
}

.booking-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 700;
    color: var(--dark);
}

.booking-form label i {
    color: var(--accent);
    margin-right: 5px;
}

.booking-form select {
    width: 100%;
    height: 52px;
    padding: 0 15px;
    border: 1px solid #e2e7e5;
    border-radius: 10px;
    background: #fff;
    color: var(--dark);
    font-family: inherit;
    font-size: 14px;
    outline: none;
    cursor: pointer;
}

.booking-form select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(31, 119, 118, 0.1);
}

.search-btn {
    height: 52px;
    padding: 0 24px;
    border: none;
    border-radius: 10px;
    background: var(--primary);
    color: white;
    font-family: inherit;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: 0.3s ease;
}

.search-btn:hover {
    transform: translateY(-2px);
    background: var(--dark);
}

.search-btn i {
    margin-left: 7px;
}


/* TABLET */
@media (max-width: 1000px) {

    .booking-form {
        grid-template-columns: repeat(2, 1fr);
    }

    .search-btn {
        width: 100%;
    }
}


/* MOBILE */
@media (max-width: 600px) {

    .booking-form {
        grid-template-columns: 1fr;
    }

    .booking-form select,
    .search-btn {
        width: 100%;
    }
}

/* ================= HOTELS PAGE ================= */

.hotels-hero {
    padding: 150px 0 100px;
    text-align: center;
}

.hotels-hero h1 {
    margin: 15px 0;
}

.hotels-hero p {
    max-width: 650px;
    margin: auto;
}

.hotel-search-section {
    margin-top: -45px;
    position: relative;
    z-index: 5;
}

.hotel-search-box {
    background: #fff;
    padding: 25px;
    border-radius: 18px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr auto;
    gap: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.search-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.search-field label {
    font-size: 13px;
    font-weight: 700;
}

.search-field label i {
    margin-right: 5px;
}

.search-field input,
.search-field select {
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
}

.hotel-search-btn {
    border: none;
    padding: 0 25px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
    font-family: inherit;
    background: #0b2233;
    color: #fff;
}

.hotels-section {
    padding-top: 100px;
}

.centered-heading {
    text-align: center;
    justify-content: center;
}

.centered-heading p {
    max-width: 600px;
    margin: 15px auto 0;
}

.hotel-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 45px;
}

.hotel-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.hotel-card:hover {
    transform: translateY(-8px);
}

.hotel-image {
    height: 230px;
    position: relative;
}

.hotel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hotel-tag,
.hotel-rating {
    position: absolute;
    top: 15px;
    padding: 7px 12px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
}

.hotel-tag {
    left: 15px;
    background: #fff;
}

.hotel-rating {
    right: 15px;
    background: #0b2233;
    color: #fff;
}

.hotel-content {
    padding: 22px;
}

.hotel-content h3 {
    font-size: 21px;
    margin-bottom: 8px;
}

.hotel-location {
    color: #777;
    font-size: 14px;
}

.hotel-location i {
    color: #0b2233;
}

.hotel-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 18px 0;
}

.hotel-features span {
    background: #f4f7f6;
    padding: 7px 10px;
    border-radius: 6px;
    font-size: 12px;
}

.hotel-features i {
    color: #0b2233;
}

.hotel-footer {
    border-top: 1px solid #eee;
    padding-top: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hotel-price {
    display: flex;
    flex-direction: column;
}

.hotel-price small {
    color: #777;
}

.hotel-price strong {
    font-size: 22px;
}

.hotel-price strong span {
    font-size: 12px;
    font-weight: 400;
    color: #777;
}

.hotel-footer a {
    padding: 10px 17px;
    background: #0b2233;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
}

@media (max-width: 992px) {
    .hotel-search-box {
        grid-template-columns: repeat(2, 1fr);
    }

    .hotel-search-btn {
        padding: 15px;
    }

    .hotel-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .hotel-search-box {
        grid-template-columns: 1fr;
    }

    .hotel-grid {
        grid-template-columns: 1fr;
    }

    .hotels-hero {
        padding: 120px 0 80px;
    }
}
/* ================= HOTELS PAGE HERO ================= */

.hotels-page-hero {
    background-image:
        url("https://images.unsplash.com/photo-1566073771259-6a8506099945?auto=format&fit=crop&w=1920&q=85");
}

.hotels-page-hero .page-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(7, 38, 45, 0.88),
        rgba(7, 38, 45, 0.48)
    );
}

/* =========================================
   HOTELS PAGE - CTA & FOOTER FIX
========================================= */

/* CTA SECTION */
.hotels-cta-section {
    padding: 90px 0;
    background: #f7f5f1;
}

.hotels-cta {
    background: linear-gradient(135deg, #0b6b6b, #174e56);
    border-radius: 24px;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.hotels-cta::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    right: -80px;
    top: -100px;
}

.hotels-cta-content {
    position: relative;
    z-index: 1;
    max-width: 650px;
}

.hotels-cta-content span {
    display: block;
    color: #ead39b;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.hotels-cta-content h2 {
    font-family: "Playfair Display", serif;
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #ffffff;
}

.hotels-cta-content p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

.hotels-cta-btn {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #c9a45c;
    color: #ffffff;
    padding: 17px 27px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    white-space: nowrap;
    transition: 0.3s;
}

.hotels-cta-btn:hover {
    transform: translateY(-3px);
    background: #ffffff;
    color: #174e56;
}


/* =========================================
   HOTELS FOOTER
========================================= */

.hotels-footer {
    background: #061722;
    color: #ffffff;
    padding-top: 70px;
}

.hotels-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 50px;
}

.hotels-footer .footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    margin-bottom: 20px;
}

.hotels-footer .footer-logo-icon {
    width: 52px;
    height: 52px;
    border-radius: 15px;
    background: #1a3d52;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
}

.hotels-footer .footer-logo-text {
    display: flex;
    flex-direction: column;
}

.hotels-footer .footer-logo-text strong {
    color: #ffffff;
    font-size: 24px;
    letter-spacing: 0.5px;
}

.hotels-footer .footer-logo-text small {
    color: #c9a45c;
    font-size: 9px;
    letter-spacing: 3px;
    font-weight: 700;
    margin-top: 3px;
}

.hotels-footer p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.hotels-footer h4 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 17px;
}

.hotels-footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hotels-footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: 0.3s;
}

.hotels-footer-links a:hover {
    color: #c9a45c;
    padding-left: 5px;
}

.hotels-contact p {
    margin-bottom: 12px;
}

.hotels-contact i {
    color: #c9a45c;
    width: 22px;
}

.hotels-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 20px 0;
    text-align: center;
}

.hotels-footer-bottom p {
    margin: 0;
    font-size: 13px;
}


/* MOBILE */
@media (max-width: 768px) {

    .hotels-cta {
        padding: 40px 25px;
        flex-direction: column;
        align-items: flex-start;
    }

    .hotels-cta-content h2 {
        font-size: 32px;
    }

    .hotels-footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
}

/* =====================================================
   DREAM VACATION GIVEAWAY PAGE
===================================================== */

.giveaway-hero {
    min-height: 680px;
    position: relative;
    display: flex;
    align-items: center;
    background:
        url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1920&q=85")
        center/cover no-repeat;
    color: white;
}

.giveaway-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(8, 42, 47, 0.95) 0%,
            rgba(8, 42, 47, 0.78) 48%,
            rgba(8, 42, 47, 0.30) 100%
        );
}

.giveaway-hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    padding: 110px 0;
}

.giveaway-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 11px 18px;
    border-radius: 30px;
    background: rgba(242, 154, 98, 0.16);
    border: 1px solid rgba(242, 154, 98, 0.45);
    color: #ffc09a;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.giveaway-hero h1 {
    font-family: "Playfair Display", serif;
    font-size: clamp(52px, 7vw, 88px);
    line-height: 1;
    color: white;
    margin: 22px 0 15px;
}

.giveaway-hero h1 span {
    color: #c9a45c;
}

.giveaway-hero h2 {
    color: rgba(255, 255, 255, 0.94);
    font-size: 24px;
    margin-bottom: 25px;
}

.giveaway-hero p {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.83);
    font-size: 17px;
    line-height: 1.8;
}

.free-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 25px 0;
}

.free-badges span {
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.10);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
}

.free-badges i {
    color: #c9a45c;
    margin-right: 5px;
}

.giveaway-hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.primary-giveaway-btn,
.secondary-giveaway-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 17px 25px;
    border-radius: 9px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

.primary-giveaway-btn {
    background: #c9a45c;
    color: white;
}

.primary-giveaway-btn:hover {
    transform: translateY(-3px);
}

.secondary-giveaway-btn {
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: white;
}

.secondary-giveaway-btn:hover {
    background: white;
    color: #0b2233;
}


/* INTRO */

.giveaway-intro {
    background: #fff;
}

.giveaway-intro-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.85fr;
    gap: 70px;
    align-items: center;
}

.giveaway-intro-content h2,
.locations-content h2,
.more-gifts-content h2 {
    font-family: "Playfair Display", serif;
    font-size: 45px;
    line-height: 1.2;
    margin: 15px 0 20px;
}

.giveaway-intro-content h2 span,
.locations-content h2 span,
.more-gifts-content h2 span,
.section-center-heading h2 span,
.final-giveaway-cta h2 span {
    color: #c9a45c;
}

.giveaway-intro-content p {
    color: #64707b;
    line-height: 1.8;
    margin-bottom: 15px;
}

.giveaway-text-btn {
    display: inline-flex;
    gap: 10px;
    color: #0f716d;
    text-decoration: none;
    font-weight: 800;
    margin-top: 15px;
}

.giveaway-highlight-box {
    background: #0b2233;
    padding: 45px;
    border-radius: 22px;
    color: white;
}

.highlight-icon {
    width: 65px;
    height: 65px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: #c9a45c;
    font-size: 25px;
}

.giveaway-highlight-box h3 {
    font-family: "Playfair Display", serif;
    font-size: 30px;
    margin: 25px 0 12px;
}

.giveaway-highlight-box p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.highlight-list {
    display: grid;
    gap: 14px;
    margin-top: 25px;
}

.highlight-list span {
    color: rgba(255, 255, 255, 0.9);
}

.highlight-list i {
    color: #c9a45c;
    margin-right: 10px;
}


/* COMMON HEADING */

.section-center-heading {
    max-width: 760px;
    text-align: center;
    margin: 0 auto 50px;
}

.section-center-heading h2 {
    font-family: "Playfair Display", serif;
    font-size: 45px;
    margin: 15px 0;
}

.section-center-heading p {
    color: #68737d;
    line-height: 1.7;
}


/* GIVEAWAY CARDS */

.giveaways-section {
    background: #f7f4ed;
}

.giveaway-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.giveaway-card {
    position: relative;
    background: white;
    border-radius: 18px;
    padding: 40px 30px;
    border: 1px solid #e7ecea;
    transition: 0.3s;
    overflow: hidden;
}

.giveaway-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(15, 65, 65, 0.12);
}

.featured-giveaway {
    border: 2px solid #c9a45c;
}

.popular-ribbon {
    position: absolute;
    top: 20px;
    right: -35px;
    transform: rotate(45deg);
    background: #c9a45c;
    color: white;
    font-size: 9px;
    font-weight: 800;
    padding: 7px 40px;
}

.giveaway-card-icon {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    border-radius: 17px;
    background: #e9f4f2;
    color: #a98443;
    font-size: 25px;
}

.giveaway-card-number {
    color: #dfe8e6;
    font-size: 45px;
    font-weight: 800;
    margin-top: 15px;
}

.giveaway-card h3 {
    font-family: "Playfair Display", serif;
    font-size: 27px;
    margin: 5px 0 15px;
}

.giveaway-card p {
    color: #6b7680;
    line-height: 1.7;
}

.giveaway-label {
    display: inline-block;
    margin-top: 20px;
    color: #c9a45c;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
}


/* MORE GIFTS */

.more-gifts-section {
    text-align: center;
    background: white;
}

.more-gifts-content {
    max-width: 720px;
    margin: auto;
}

.more-gifts-content p {
    color: #68737d;
    line-height: 1.7;
}

.gifts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 45px;
}

.gift-item {
    padding: 25px 15px;
    background: #f8f5ee;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 13px;
    font-weight: 700;
}

.gift-item i {
    color: #c9a45c;
    font-size: 20px;
}

.giveaway-disclaimer {
    max-width: 850px;
    margin: 35px auto 0;
    color: #899199;
    font-size: 12px;
    line-height: 1.7;
}


/* QUALIFICATION */

.qualification-section {
    background: #f7f4ed;
}

.qualification-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.qualification-card {
    background: white;
    padding: 42px;
    border-radius: 20px;
}

.qualification-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: #0b2233;
    color: #c9a45c;
    font-size: 22px;
}

.qualification-card h3 {
    font-family: "Playfair Display", serif;
    font-size: 30px;
    margin: 22px 0 10px;
}

.qualification-card p {
    color: #6c7680;
    line-height: 1.7;
}

.qualification-card ul {
    list-style: none;
    padding: 0;
    margin-top: 25px;
}

.qualification-card li {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    color: #53616b;
    line-height: 1.5;
}

.qualification-card li i {
    color: #a98443;
    margin-top: 4px;
}

.qualification-note {
    margin-top: 30px;
    padding: 18px 22px;
    border-radius: 10px;
    background: #faf5e8;
    display: flex;
    gap: 12px;
    color: #7b604f;
}

.qualification-note i {
    color: #c9a45c;
    margin-top: 3px;
}


/* LOCATIONS */

.locations-section {
    background: white;
}

.locations-grid {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 70px;
    align-items: center;
}

.locations-content p {
    color: #69747d;
    line-height: 1.8;
}

.location-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.location-list div {
    padding: 15px;
    background: #f6f8f7;
    border-radius: 9px;
    font-weight: 600;
}

.location-list i {
    color: #c9a45c;
    margin-right: 8px;
}

.reservation-box {
    padding: 42px;
    border-radius: 20px;
    background: #0b2233;
    color: white;
}

.reservation-small {
    color: #ead39b;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.reservation-box h3 {
    font-family: "Playfair Display", serif;
    font-size: 32px;
    margin: 15px 0;
}

.reservation-box p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.reservation-field {
    margin-top: 18px;
}

.reservation-field label {
    display: block;
    font-size: 13px;
    margin-bottom: 8px;
}

.reservation-field input,
.reservation-field select {
    width: 100%;
    box-sizing: border-box;
    padding: 15px;
    border: none;
    border-radius: 8px;
    outline: none;
    font-family: inherit;
}

.reserve-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    box-sizing: border-box;
    margin-top: 25px;
    padding: 17px;
    background: #c9a45c;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 800;
}


/* NO COST */

.no-cost-section {
    background: #c9a45c;
    padding: 50px 0;
}

.no-cost-box {
    display: flex;
    align-items: center;
    gap: 30px;
    color: white;
}

.no-cost-icon {
    width: 75px;
    height: 75px;
    min-width: 75px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    font-size: 30px;
}

.no-cost-box span {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.no-cost-box h2 {
    font-family: "Playfair Display", serif;
    font-size: 35px;
    margin: 8px 0;
}

.no-cost-box p {
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
}


/* FINAL CTA */

.final-giveaway-cta {
    padding: 110px 0;
    text-align: center;
    background:
        linear-gradient(rgba(8, 42, 47, 0.92), rgba(8, 42, 47, 0.92)),
        url("https://images.unsplash.com/photo-1488646953014-85cb44e25828?auto=format&fit=crop&w=1920&q=85")
        center/cover;
    color: white;
}

.final-giveaway-cta h2 {
    font-family: "Playfair Display", serif;
    font-size: 52px;
    max-width: 800px;
    margin: 15px auto;
}

.final-giveaway-cta p {
    color: rgba(255, 255, 255, 0.75);
    max-width: 650px;
    margin: auto;
    line-height: 1.7;
}

.final-cta-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 22px;
    margin: 35px 0;
}

.final-cta-features span {
    color: rgba(255, 255, 255, 0.9);
}

.final-cta-features i {
    color: #c9a45c;
    margin-right: 7px;
}

.final-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 28px;
    background: #c9a45c;
    color: white;
    text-decoration: none;
    border-radius: 9px;
    font-weight: 800;
}


/* LEGAL */

.legal-disclaimer {
    padding: 25px 0;
    background: #f3eee4;
    text-align: center;
}

.legal-disclaimer .container {
    display: flex;
    justify-content: center;
    gap: 12px;
    max-width: 1000px;
}

.legal-disclaimer i {
    color: #c9a45c;
    margin-top: 3px;
}

.legal-disclaimer p {
    margin: 0;
    color: #7a858c;
    font-size: 11px;
    line-height: 1.7;
}


/* RESPONSIVE */

@media (max-width: 900px) {

    .giveaway-intro-grid,
    .locations-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .giveaway-cards-grid {
        grid-template-columns: 1fr;
    }

    .gifts-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .qualification-grid {
        grid-template-columns: 1fr;
    }

    .giveaway-hero h1 {
        font-size: 58px;
    }

}


@media (max-width: 600px) {

    .giveaway-hero {
        min-height: auto;
    }

    .giveaway-hero-content {
        padding: 80px 0;
    }

    .giveaway-hero h1 {
        font-size: 45px;
    }

    .giveaway-hero h2 {
        font-size: 19px;
    }

    .free-badges {
        flex-direction: column;
        align-items: flex-start;
    }

    .giveaway-intro-content h2,
    .locations-content h2,
    .more-gifts-content h2,
    .section-center-heading h2 {
        font-size: 34px;
    }

    .gifts-grid,
    .location-list {
        grid-template-columns: 1fr;
    }

    .qualification-card,
    .reservation-box,
    .giveaway-highlight-box {
        padding: 28px 22px;
    }

    .no-cost-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .final-giveaway-cta h2 {
        font-size: 37px;
    }

    .legal-disclaimer .container {
        align-items: flex-start;
        text-align: left;
    }
}

/* MOBILE MENU BUTTON */
.mobile-menu {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #1f2d3d;
}


/* MOBILE RESPONSIVE */
@media (max-width: 768px) {

    .nav-container {
        position: relative;
    }

    .mobile-menu {
        display: block;
        margin-left: auto;
        z-index: 1001;
    }

    /* Hide desktop navigation */
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        gap: 0;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        z-index: 1000;
    }

    /* SHOW MENU WHEN CLICKING ☰ */
    .nav-menu.show {
        display: flex !important;
    }

    .nav-menu a {
        width: 100%;
        padding: 14px 10px;
        border-bottom: 1px solid #eeeeee;
    }

    .nav-menu a:last-child {
        border-bottom: none;
    }

    /* Hide desktop Book button on mobile */
    .nav-btn {
        display: none;
    }
}



/* =========================================================
   COCOVISTA LUXURY PREMIUM MASTER OVERRIDE
   Palette: Deep Navy / Champagne Gold / Ivory
   This layer keeps the existing HTML class system intact.
   ========================================================= */

:root{
    --lux-navy:#071722;
    --lux-navy-2:#0b2233;
    --lux-gold:#c9a45c;
    --lux-gold-light:#ead39b;
    --lux-ivory:#fbf8f1;
    --lux-cream:#f4efe4;
    --lux-white:#ffffff;
    --lux-text:#687985;
    --lux-border:rgba(16,35,51,.12);
    --lux-shadow:0 20px 60px rgba(7,19,31,.12);
}

body{
    background:var(--lux-white);
    color:var(--lux-text);
}

.container{
    width:min(1180px,calc(100% - 36px));
}

/* --- Universal luxury polish --- */
h1,h2,h3,h4,h5,h6{
    font-family:"Playfair Display",Georgia,serif;
    color:var(--lux-navy-2);
}

button,
.primary-btn,
.nav-btn,
.search-btn,
.cta-btn,
.card-btn,
.package-footer a,
.hotel-footer a,
.hotels-cta-btn,
.primary-giveaway-btn,
.reserve-btn,
.final-cta-btn{
    transition:transform .28s ease,box-shadow .28s ease,background .28s ease,color .28s ease,border-color .28s ease;
}

.primary-btn,
.nav-btn,
.search-btn,
.cta-btn,
.hotels-cta-btn,
.primary-giveaway-btn,
.reserve-btn,
.final-cta-btn{
    background:linear-gradient(135deg,var(--lux-gold-light),var(--lux-gold));
    color:var(--lux-navy);
    border:1px solid rgba(201,164,92,.45);
    box-shadow:0 10px 28px rgba(201,164,92,.18);
}

.primary-btn:hover,
.nav-btn:hover,
.search-btn:hover,
.cta-btn:hover,
.hotels-cta-btn:hover,
.primary-giveaway-btn:hover,
.reserve-btn:hover,
.final-cta-btn:hover{
    background:linear-gradient(135deg,#f2dfa9,#c29b52);
    color:var(--lux-navy);
    transform:translateY(-3px);
    box-shadow:0 15px 35px rgba(201,164,92,.25);
}

.section-tag{
    background:#f5ecd7;
    color:#9a763b;
    border:1px solid rgba(201,164,92,.22);
}

.text-link,
.destination-content a,
.package-btn,
.card-btn,
.blog-content a,
.service-card a{
    color:#9a763b;
}

.text-link:hover,
.destination-content a:hover,
.package-btn:hover,
.card-btn:hover,
.blog-content a:hover,
.service-card a:hover{
    color:#c9a45c;
}

/* --- Top bar --- */
.top-bar{
    background:var(--lux-navy);
    border-bottom:1px solid rgba(255,255,255,.08);
}

.top-contact a,
.top-social a,
.top-social span{
    color:rgba(255,255,255,.72);
}

.top-contact i,
.top-social a:hover{
    color:var(--lux-gold-light);
}

/* --- Main navbar --- */
.navbar{
    background:rgba(7,23,34,.90);
    border-bottom:1px solid rgba(234,211,155,.14);
    box-shadow:0 10px 35px rgba(0,0,0,.08);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
}

.nav-container{
    min-height:80px;
}

.logo-icon{
    width:48px;
    height:48px;
    border-radius:50%;
    background:linear-gradient(145deg,#183d52,#071722);
    color:var(--lux-gold-light);
    border:1px solid rgba(234,211,155,.4);
    box-shadow:inset 0 0 22px rgba(234,211,155,.05);
}

.logo-text span{
    color:#fff;
    font-family:"Playfair Display",Georgia,serif;
}

.logo-text small{
    color:var(--lux-gold-light);
}

.nav-menu a{
    color:rgba(255,255,255,.76);
}

.nav-menu a:hover,
.nav-menu a.active{
    color:#fff;
}

.nav-menu a::after{
    background:var(--lux-gold);
}

.mobile-menu{
    color:#fff;
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.18);
    border-radius:50%;
}

/* --- Hero system --- */
.hero,
.page-hero,
.giveaway-hero{
    background-color:var(--lux-navy);
}

.hero-overlay,
.page-overlay,
.giveaway-overlay{
    background:
        linear-gradient(90deg,rgba(4,14,22,.94) 0%,rgba(7,23,34,.76) 46%,rgba(7,23,34,.25) 100%);
}

.hero h1,
.page-hero-content h1,
.giveaway-hero h1{
    color:#fff;
}

.hero h1 span,
.giveaway-hero h1 span{
    color:var(--lux-gold-light);
}

.hero-tag,
.giveaway-hero-tag,
.page-hero-content > span{
    color:var(--lux-gold-light);
}

.giveaway-hero-tag{
    background:rgba(201,164,92,.10);
    border:1px solid rgba(234,211,155,.35);
}

.free-badges span{
    border:1px solid rgba(255,255,255,.13);
    background:rgba(255,255,255,.07);
    color:#fff;
}

.free-badges i,
.giveaway-hero-tag i{
    color:var(--lux-gold-light);
}

/* --- Search / booking cards --- */
.booking-card,
.hotel-search-box{
    border:1px solid var(--lux-border);
    box-shadow:var(--lux-shadow);
    border-radius:24px;
}

.booking-heading h2{
    color:var(--lux-navy-2);
}

.booking-heading > i{
    color:var(--lux-gold);
}

.booking-field select,
.booking-field input,
.booking-form select,
.search-field input,
.search-field select,
.reservation-field input,
.reservation-field select,
.contact-form input,
.contact-form select,
.contact-form textarea,
.newsletter-form input{
    border-color:var(--lux-border);
    background:#fcfaf6;
}

.booking-field select:focus,
.booking-field input:focus,
.booking-form select:focus,
.search-field input:focus,
.search-field select:focus,
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{
    border-color:var(--lux-gold);
    box-shadow:0 0 0 3px rgba(201,164,92,.12);
}

/* --- Light sections --- */
.features,
.why-section,
.destination-info-section,
.custom-package-section,
.newsletter-section,
.hotels-cta-section,
.giveaways-section,
.qualification-section,
.more-gifts-section,
.no-cost-section{
    background:var(--lux-ivory);
}

.feature-icon,
.mission-icon,
.about-feature > div,
.giveaway-card-icon,
.qualification-icon{
    background:linear-gradient(145deg,#f5e8c7,#ead7aa);
    color:#9a763b;
}

.feature-item h3,
.destination-content h3,
.package-content h3,
.service-card h3,
.blog-content h3,
.contact-form-wrapper h2,
.why-content h2,
.about-intro-content h2,
.center-heading h2,
.section-heading h2{
    color:var(--lux-navy-2);
}

/* --- Cards --- */
.destination-card,
.package-card,
.service-card,
.offer-card,
.blog-card,
.hotel-card,
.mission-card,
.about-feature,
.giveaway-card,
.qualification-card,
.contact-form-wrapper{
    border:1px solid var(--lux-border);
    box-shadow:0 12px 38px rgba(7,19,31,.07);
    border-radius:22px;
}

.destination-card:hover,
.package-card:hover,
.service-card:hover,
.blog-card:hover,
.hotel-card:hover,
.mission-card:hover,
.about-feature:hover,
.giveaway-card:hover{
    box-shadow:0 22px 55px rgba(7,19,31,.13);
}

.destination-tag,
.package-tag,
.offer-image span,
.blog-image span,
.hotel-tag,
.hotel-rating{
    background:linear-gradient(135deg,var(--lux-gold-light),var(--lux-gold));
    color:var(--lux-navy);
}

.package-price,
.hotel-rating{
    background:var(--lux-navy-2);
    color:var(--lux-gold-light);
}

.destination-location,
.package-location,
.offer-content small,
.hotel-location{
    color:#9a763b;
}

/* --- Dark sections --- */
.travel-process-section,
.hotels-footer,
footer{
    background:linear-gradient(145deg,#071722,#0b2233);
}

.process-card{
    border-color:rgba(234,211,155,.16);
    background:rgba(255,255,255,.025);
}

.process-card > i{
    color:var(--lux-gold-light);
}

.cta-section,
.offer-banner{
    background:linear-gradient(135deg,#071722,#102f43);
}

.cta-content span,
.offer-banner span{
    color:var(--lux-gold-light);
}

/* --- Giveaway --- */
.giveaway-highlight-box,
.reservation-box{
    background:linear-gradient(145deg,#102f43,#071722);
    border:1px solid rgba(234,211,155,.18);
    box-shadow:0 22px 60px rgba(7,19,31,.18);
}

.highlight-icon{
    background:linear-gradient(135deg,var(--lux-gold-light),var(--lux-gold));
    color:var(--lux-navy);
}

.highlight-list i,
.giveaway-label,
.qualification-note i{
    color:var(--lux-gold);
}

.featured-giveaway{
    border:1px solid rgba(201,164,92,.5);
    box-shadow:0 25px 60px rgba(7,19,31,.16);
}

.popular-ribbon{
    background:linear-gradient(135deg,var(--lux-gold-light),var(--lux-gold));
    color:var(--lux-navy);
}

.gift-item,
.location-list div{
    background:rgba(255,255,255,.68);
    border:1px solid var(--lux-border);
}

.gift-item i,
.location-list i{
    color:#a98443;
}

.qualification-icon{
    background:linear-gradient(145deg,#102f43,#071722);
    color:var(--lux-gold-light);
}

.qualification-note{
    background:#faf5e8;
    border:1px solid rgba(201,164,92,.24);
}

.no-cost-section{
    background:linear-gradient(135deg,#102f43,#071722);
}

.no-cost-box{
    color:#fff;
}

.no-cost-icon{
    background:rgba(201,164,92,.14);
    color:var(--lux-gold-light);
    border:1px solid rgba(234,211,155,.25);
}

.final-giveaway-cta{
    background:
        linear-gradient(rgba(4,14,22,.90),rgba(4,14,22,.94)),
        url("https://images.unsplash.com/photo-1488646953014-85cb44e25828?auto=format&fit=crop&w=1920&q=85") center/cover;
}

.final-cta-features i{
    color:var(--lux-gold-light);
}

.legal-disclaimer{
    background:#eee9df;
}

.legal-disclaimer i{
    color:#a98443;
}

/* --- Footer --- */
.hotels-footer .footer-logo-icon{
    background:linear-gradient(145deg,#183d52,#071722);
    border:1px solid rgba(234,211,155,.35);
    color:var(--lux-gold-light);
}

.hotels-footer .footer-logo-text small{
    color:var(--lux-gold-light);
}

.hotels-footer-links a:hover,
.hotels-contact i{
    color:var(--lux-gold-light);
}

.footer-social a:hover{
    background:var(--lux-gold);
    color:var(--lux-navy);
}

/* --- WhatsApp: retain recognisable green but premiumize its shadow --- */
.whatsapp-btn{
    box-shadow:0 12px 32px rgba(37,211,102,.25);
    border:3px solid rgba(255,255,255,.85);
}

/* --- Responsive navigation fix: JS should toggle .active --- */
@media (max-width:768px){
    .nav-menu{
        background:rgba(7,23,34,.98);
        border:1px solid rgba(234,211,155,.14);
        border-radius:0 0 20px 20px;
        box-shadow:0 22px 45px rgba(0,0,0,.24);
        padding:16px;
    }

    .nav-menu.active,
    .nav-menu.show{
        display:flex !important;
    }

    .nav-menu a{
        color:rgba(255,255,255,.82);
        border-bottom:1px solid rgba(255,255,255,.08);
    }

    .nav-menu a:hover,
    .nav-menu a.active{
        color:var(--lux-gold-light);
        background:rgba(201,164,92,.06);
    }

    .mobile-menu{
        display:grid !important;
        place-items:center;
        width:44px;
        height:44px;
        margin-left:auto;
    }
}

@media (max-width:600px){
    .container{
        width:min(100% - 28px,1180px);
    }

    .section{
        padding:72px 0;
    }

    .hero h1,
    .giveaway-hero h1{
        font-size:clamp(44px,13vw,62px);
    }

    .section-heading h2,
    .why-content h2,
    .giveaway-intro-content h2,
    .locations-content h2,
    .more-gifts-content h2,
    .section-center-heading h2,
    .center-heading h2{
        font-size:36px;
    }

    .hotels-cta,
    .no-cost-box{
        border-radius:22px;
    }
}

.giveaway-hero {
    position: relative;
    background-image: url("images/giveaway-hero.jpg");
    background-size: cover;
    background-position: center;
    min-height: 720px;
}

.giveaway-card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: 18px 18px 0 0;
}

.giveaway-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.giveaway-card:hover .giveaway-card-image img {
    transform: scale(1.08);
}

/* =========================================
   GIVEAWAY IMAGE STYLING
========================================= */

.giveaway-hero {
    position: relative;
    overflow: hidden;
    min-height: 680px;
    display: flex;
    align-items: center;
}

.giveaway-hero-image {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.giveaway-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.giveaway-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            90deg,
            rgba(5, 28, 45, .88) 0%,
            rgba(5, 28, 45, .65) 45%,
            rgba(5, 28, 45, .20) 100%
        );
}

.giveaway-hero-content {
    position: relative;
    z-index: 2;
}


/* =========================================
   INTRO IMAGE
========================================= */

.giveaway-intro-image {
    position: relative;
    min-height: 430px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .15);
}

.giveaway-intro-image img {
    width: 100%;
    height: 100%;
    min-height: 430px;
    object-fit: cover;
    display: block;
}

.intro-image-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    padding: 16px 20px;

    display: flex;
    align-items: center;
    gap: 10px;

    color: #fff;
    background: rgba(7, 35, 52, .85);
    backdrop-filter: blur(10px);

    border-radius: 14px;
    font-weight: 700;
}

.intro-image-badge i {
    color: #f4b942;
}


/* =========================================
   GIVEAWAY CARDS
========================================= */

.giveaway-card {
    position: relative;
    overflow: hidden;
}

.giveaway-card-image {
    width: calc(100% + 0px);
    height: 220px;
    overflow: hidden;
    border-radius: 18px 18px 0 0;
}

.giveaway-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}

.giveaway-card:hover .giveaway-card-image img {
    transform: scale(1.08);
}


/* =========================================
   GIFT IMAGE ITEMS
========================================= */

.gift-image-item {
    position: relative;
    overflow: hidden;
    min-height: 180px;
    padding: 0 !important;
    border-radius: 20px;
}

.gift-image-item > img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .5s ease;
}

.gift-image-item::after {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        to top,
        rgba(3, 28, 43, .9),
        rgba(3, 28, 43, .15)
    );
}

.gift-image-item:hover img {
    transform: scale(1.08);
}

.gift-image-item > div {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 18px;

    z-index: 2;

    display: flex;
    align-items: center;
    gap: 10px;

    color: #fff;
    font-weight: 700;
}

.gift-image-item i {
    color: #f4b942;
    font-size: 20px;
}


/* =========================================
   LOCATIONS IMAGE
========================================= */

.locations-image {
    position: relative;
    min-height: 500px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .15);
}

.locations-image img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    display: block;
}

.locations-image::after {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        to top,
        rgba(3, 28, 43, .8),
        transparent 60%
    );
}

.locations-image-overlay {
    position: absolute;
    z-index: 2;

    left: 25px;
    bottom: 25px;

    display: flex;
    align-items: center;
    gap: 12px;

    color: #fff;
    font-size: 18px;
    font-weight: 700;
}

.locations-image-overlay i {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    background: #f4b942;
    color: #073047;

    border-radius: 50%;
}


/* =========================================
   FINAL CTA IMAGE
========================================= */

.final-giveaway-cta {
    position: relative;
    overflow: hidden;
}

.final-cta-background {
    position: absolute;
    inset: 0;
}

.final-cta-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.final-cta-overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(
        90deg,
        rgba(3, 30, 47, .94),
        rgba(3, 30, 47, .72)
    );
}

.final-cta-content {
    position: relative;
    z-index: 2;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 992px) {

    .giveaway-intro-image {
        min-height: 350px;
    }

    .giveaway-intro-image img {
        min-height: 350px;
    }

    .locations-image {
        min-height: 400px;
    }

    .locations-image img {
        min-height: 400px;
    }

}


@media (max-width: 768px) {

    .giveaway-hero {
        min-height: 620px;
    }

    .giveaway-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(5, 28, 45, .82),
                rgba(5, 28, 45, .65)
            );
    }

    .giveaway-intro-image {
        min-height: 300px;
        border-radius: 20px;
    }

    .giveaway-intro-image img {
        min-height: 300px;
    }

    .giveaway-card-image {
        height: 200px;
    }

    .gift-image-item {
        min-height: 160px;
    }

    .locations-image {
        min-height: 300px;
        border-radius: 20px;
    }

    .locations-image img {
        min-height: 300px;
    }

}

/* ================= GIVEAWAY IMAGE CARDS ================= */

.giveaway-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.giveaway-card {
    position: relative;
    overflow: hidden;
    background: #fff;
    border-radius: 18px;
    padding: 0 0 28px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
}

.giveaway-card:hover {
    transform: translateY(-8px);
}

.giveaway-card-image {
    width: 100%;
    height: 230px;
    overflow: hidden;
}

.giveaway-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.giveaway-card:hover .giveaway-card-image img {
    transform: scale(1.06);
}

.giveaway-card h3,
.giveaway-card p,
.giveaway-card .giveaway-label {
    margin-left: 25px;
    margin-right: 25px;
}

.giveaway-card h3 {
    margin-top: 15px;
    font-size: 24px;
}

.giveaway-card p {
    line-height: 1.7;
    color: #666;
}

.giveaway-label {
    display: inline-block;
    margin-top: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.giveaway-card-number {
    position: absolute;
    top: 200px;
    right: 20px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.popular-ribbon {
    position: absolute;
    top: 18px;
    left: 18px;
    background: #fff;
    padding: 8px 14px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .5px;
}

/* TABLET */

@media (max-width: 900px) {

    .giveaway-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

/* MOBILE */

@media (max-width: 600px) {

    .giveaway-cards-grid {
        grid-template-columns: 1fr;
    }

    .giveaway-card-image {
        height: 220px;
    }

}

/* =========================================
   ADMIN DASHBOARD
========================================= */

.admin-body {
    margin: 0;
    padding: 0;
    font-family: "DM Sans", sans-serif;
    background: #f4f7f6;
    color: #23333d;
}

.admin-body * {
    box-sizing: border-box;
}

/* =========================================
   MAIN LAYOUT
========================================= */

.admin-layout {
    min-height: 100vh;
    display: flex;
}


/* =========================================
   SIDEBAR
========================================= */

.admin-sidebar {
    width: 270px;
    min-height: 100vh;
    background: #183840;
    color: #ffffff;
    padding: 25px 18px;
    display: flex;
    flex-direction: column;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 100;
}

.admin-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: white;
    padding: 5px 8px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.admin-logo .logo-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f4a261;
    color: #183840;
    font-size: 22px;
    flex-shrink: 0;
}

.admin-logo .logo-text {
    display: flex;
    flex-direction: column;
}

.admin-logo .logo-text span {
    font-size: 21px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.admin-logo .logo-text small {
    margin-top: 4px;
    font-size: 10px;
    letter-spacing: 3px;
    color: #f4a261;
    font-weight: 700;
}


/* =========================================
   MENU
========================================= */

.admin-menu {
    display: flex;
    flex-direction: column;
    gap: 7px;
    padding-top: 30px;
}

.admin-menu-link {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 14px 15px;
    border-radius: 10px;
    text-decoration: none;
    color: #b9c8cc;
    font-size: 15px;
    font-weight: 600;
    transition: 0.3s ease;
}

.admin-menu-link i {
    width: 20px;
    text-align: center;
    font-size: 16px;
}

.admin-menu-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

.admin-menu-link.active {
    background: #f4a261;
    color: #183840;
}


/* =========================================
   SIDEBAR BOTTOM
========================================= */

.admin-sidebar-bottom {
    margin-top: auto;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.admin-sidebar-bottom a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 15px;
    color: #b9c8cc;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    transition: 0.3s ease;
}

.admin-sidebar-bottom a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}


/* =========================================
   MAIN CONTENT
========================================= */

.admin-main {
    width: calc(100% - 270px);
    min-height: 100vh;
    margin-left: 270px;
    padding: 35px;
}


/* =========================================
   TOP BAR
========================================= */

.admin-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.admin-topbar span {
    display: block;
    color: #f09b55;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 7px;
}

.admin-topbar h1 {
    margin: 0;
    color: #183840;
    font-family: "Playfair Display", serif;
    font-size: 38px;
    line-height: 1.1;
}

.admin-refresh {
    border: none;
    background: #ffffff;
    color: #183840;
    padding: 13px 19px;
    border-radius: 10px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 18px rgba(22, 52, 60, 0.08);
    transition: 0.3s ease;
}

.admin-refresh:hover {
    background: #183840;
    color: white;
}

.admin-refresh i {
    margin-right: 7px;
}


/* =========================================
   STATS
========================================= */

.admin-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 35px;
}

.admin-stat-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 22px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 5px 20px rgba(22, 52, 60, 0.07);
    border: 1px solid #edf1f0;
    transition: 0.3s ease;
}

.admin-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(22, 52, 60, 0.12);
}

.admin-stat-icon {
    width: 55px;
    height: 55px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.contact-stat {
    background: #e7f2ff;
    color: #2878d4;
}

.booking-stat {
    background: #fff0df;
    color: #e88935;
}

.giveaway-stat {
    background: #f4eaff;
    color: #8c50d7;
}

.hotel-stat {
    background: #e2f5ee;
    color: #1f9d70;
}

.admin-stat-card div:last-child {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.admin-stat-card span {
    color: #718087;
    font-size: 13px;
    font-weight: 600;
}

.admin-stat-card strong {
    color: #183840;
    font-size: 29px;
    font-weight: 800;
}


/* =========================================
   DATA SECTIONS
========================================= */

.admin-data-section {
    background: #ffffff;
    border-radius: 16px;
    margin-bottom: 30px;
    padding: 25px;
    border: 1px solid #edf1f0;
    box-shadow: 0 5px 20px rgba(22, 52, 60, 0.06);
    scroll-margin-top: 20px;
}

.admin-section-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #edf1f0;
    margin-bottom: 20px;
}

.admin-section-title span:not(.admin-badge) {
    display: block;
    color: #f09b55;
    font-size: 10px;
    letter-spacing: 2px;
    font-weight: 800;
    margin-bottom: 5px;
}

.admin-section-title h2 {
    margin: 0;
    font-family: "Playfair Display", serif;
    color: #183840;
    font-size: 25px;
}

.admin-badge {
    background: #eef5f3;
    color: #183840;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}


/* =========================================
   TABLE
========================================= */

.admin-table-wrapper {
    width: 100%;
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    min-width: 800px;
    border-collapse: collapse;
}

.admin-table thead {
    background: #f5f8f7;
}

.admin-table th {
    padding: 14px 12px;
    text-align: left;
    color: #617077;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 800;
    white-space: nowrap;
}

.admin-table td {
    padding: 16px 12px;
    color: #405159;
    font-size: 14px;
    border-bottom: 1px solid #edf1f0;
    vertical-align: top;
}

.admin-table tbody tr {
    transition: 0.2s ease;
}

.admin-table tbody tr:hover {
    background: #fafcfb;
}

.admin-table tbody tr:last-child td {
    border-bottom: none;
}

.admin-loading {
    text-align: center;
    padding: 35px !important;
    color: #8a969b !important;
}


/* =========================================
   TABLE MESSAGE
========================================= */

.admin-table td:nth-child(5) {
    max-width: 280px;
    line-height: 1.6;
}


/* =========================================
   EMPTY DATA
========================================= */

.admin-empty {
    text-align: center;
    color: #8a969b;
    padding: 35px !important;
}


/* =========================================
   DELETE BUTTON
========================================= */

.delete-btn {
    background: #fff0f0;
    color: #df4545;
    border: 1px solid #ffd6d6;
    padding: 8px 13px;
    border-radius: 7px;
    cursor: pointer;
    font-family: inherit;
    font-size: 12px;
    font-weight: 700;
    transition: 0.25s ease;
}

.delete-btn:hover {
    background: #df4545;
    color: #ffffff;
    border-color: #df4545;
}

.delete-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}


/* =========================================
   SCROLLBAR
========================================= */

.admin-table-wrapper::-webkit-scrollbar {
    height: 7px;
}

.admin-table-wrapper::-webkit-scrollbar-thumb {
    background: #b9c8cc;
    border-radius: 20px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1200px) {

    .admin-stats {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 850px) {

    .admin-layout {
        display: block;
    }

    .admin-sidebar {
        position: relative;
        width: 100%;
        min-height: auto;
        padding: 15px;
    }

    .admin-logo {
        padding-bottom: 15px;
    }

    .admin-menu {
        padding-top: 15px;
        flex-direction: row;
        overflow-x: auto;
    }

    .admin-menu-link {
        white-space: nowrap;
        padding: 10px 13px;
    }

    .admin-sidebar-bottom {
        display: none;
    }

    .admin-main {
        width: 100%;
        margin-left: 0;
        padding: 20px 15px;
    }

    .admin-topbar {
        align-items: flex-start;
        gap: 15px;
        flex-direction: column;
    }

    .admin-topbar h1 {
        font-size: 30px;
    }

}


@media (max-width: 550px) {

    .admin-stats {
        grid-template-columns: 1fr;
    }

    .admin-stat-card {
        padding: 18px;
    }

    .admin-data-section {
        padding: 16px;
        border-radius: 12px;
    }

    .admin-section-title {
        align-items: flex-start;
        gap: 12px;
        flex-direction: column;
    }

    .admin-section-title h2 {
        font-size: 22px;
    }

    .admin-refresh {
        width: 100%;
    }

    .admin-menu-link i {
        display: none;
    }

}

/* =====================================================
   ADMIN DASHBOARD
===================================================== */

.admin-body {
    margin: 0;
    background: #f5f7fb;
    font-family: "DM Sans", sans-serif;
    color: #1f2937;
}

.admin-layout {
    display: flex;
    min-height: 100vh;
}

/* ================= SIDEBAR ================= */

.admin-sidebar {
    width: 260px;
    min-height: 100vh;
    background: #102b3f;
    color: #fff;
    padding: 25px 18px;
    box-sizing: border-box;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    z-index: 1000;
}

.admin-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    margin-bottom: 45px;
}

.admin-sidebar .logo-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #d9b36c;
    color: #102b3f;
    font-size: 20px;
}

.admin-sidebar .logo-text {
    display: flex;
    flex-direction: column;
}

.admin-sidebar .logo-text span {
    color: white;
    font-family: "Playfair Display", serif;
    font-size: 21px;
    font-weight: 700;
}

.admin-sidebar .logo-text small {
    color: #d9b36c;
    font-size: 10px;
    letter-spacing: 2px;
    margin-top: 3px;
}

/* ================= MENU ================= */

.admin-menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.admin-menu-link {
    color: #c7d3db;
    text-decoration: none;
    padding: 14px 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 13px;
    font-size: 14px;
    transition: 0.3s;
}

.admin-menu-link i {
    width: 20px;
    font-size: 16px;
}

.admin-menu-link:hover {
    background: rgba(255, 255, 255, 0.08);
    color: white;
}

.admin-menu-link.active {
    background: #d9b36c;
    color: #102b3f;
    font-weight: 700;
}

.admin-sidebar-bottom {
    margin-top: auto;
    padding-top: 25px;
}

.admin-sidebar-bottom a {
    color: #d9b36c;
    text-decoration: none;
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 14px;
}

/* ================= MAIN AREA ================= */

.admin-main {
    margin-left: 260px;
    width: calc(100% - 260px);
    padding: 35px;
    box-sizing: border-box;
}

/* ================= TOP BAR ================= */

.admin-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 35px;
}

.admin-topbar span {
    color: #d9b36c;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
}

.admin-topbar h1 {
    margin: 7px 0 0;
    font-family: "Playfair Display", serif;
    color: #102b3f;
    font-size: 36px;
}

.admin-refresh {
    border: none;
    background: #102b3f;
    color: white;
    padding: 13px 20px;
    border-radius: 10px;
    cursor: pointer;
    font-family: inherit;
    font-weight: 600;
    transition: 0.3s;
}

.admin-refresh:hover {
    background: #d9b36c;
    color: #102b3f;
}

.admin-refresh i {
    margin-right: 7px;
}

/* ================= STATS ================= */

.admin-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 35px;
}

.admin-stat-card {
    background: white;
    border-radius: 16px;
    padding: 22px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 5px 20px rgba(16, 43, 63, 0.07);
}

.admin-stat-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
}

.contact-stat {
    background: #e6f0ff;
    color: #3974d8;
}

.booking-stat {
    background: #fff2dc;
    color: #d68a22;
}

.giveaway-stat {
    background: #f5e8ff;
    color: #9b59b6;
}

.hotel-stat {
    background: #e1f7ef;
    color: #27a06b;
}

.admin-stat-card span {
    display: block;
    color: #7b8794;
    font-size: 13px;
    margin-bottom: 5px;
}

.admin-stat-card strong {
    color: #102b3f;
    font-size: 28px;
}

/* ================= DATA SECTIONS ================= */

.admin-data-section {
    background: white;
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(16, 43, 63, 0.06);
    scroll-margin-top: 25px;
}

.admin-section-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
}

.admin-section-title span {
    color: #d9b36c;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.8px;
}

.admin-section-title h2 {
    margin: 6px 0 0;
    color: #102b3f;
    font-family: "Playfair Display", serif;
    font-size: 25px;
}

.admin-badge {
    background: #f3f5f7;
    color: #102b3f !important;
    padding: 8px 13px;
    border-radius: 30px;
    font-size: 12px !important;
    letter-spacing: 0 !important;
}

/* ================= TABLE ================= */

.admin-table-wrapper {
    width: 100%;
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    min-width: 800px;
    border-collapse: collapse;
}

.admin-table thead {
    background: #102b3f;
}

.admin-table th {
    color: white;
    text-align: left;
    padding: 14px 15px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.admin-table th:first-child {
    border-radius: 8px 0 0 8px;
}

.admin-table th:last-child {
    border-radius: 0 8px 8px 0;
}

.admin-table td {
    padding: 15px;
    border-bottom: 1px solid #edf0f2;
    color: #52606d;
    font-size: 13px;
    vertical-align: top;
}

.admin-table tbody tr {
    transition: 0.2s;
}

.admin-table tbody tr:hover {
    background: #fafbfc;
}

.admin-loading {
    text-align: center;
    padding: 30px !important;
    color: #8b98a5 !important;
}

/* ================= ACTION BUTTONS ================= */

.admin-actions {
    display: flex;
    gap: 8px;
}

.admin-delete-btn {
    border: none;
    background: #ffe8e8;
    color: #dc3545;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.admin-delete-btn:hover {
    background: #dc3545;
    color: white;
    transform: translateY(-2px);
}

/* ================= EMPTY STATE ================= */

.admin-empty {
    text-align: center;
    padding: 30px !important;
    color: #8b98a5 !important;
}

/* ================= SCROLLBAR ================= */

.admin-table-wrapper::-webkit-scrollbar {
    height: 7px;
}

.admin-table-wrapper::-webkit-scrollbar-track {
    background: #edf0f2;
    border-radius: 10px;
}

.admin-table-wrapper::-webkit-scrollbar-thumb {
    background: #d9b36c;
    border-radius: 10px;
}

/* ================= TABLET ================= */

@media (max-width: 1100px) {

    .admin-stats {
        grid-template-columns: repeat(2, 1fr);
    }

}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

    .admin-sidebar {
        width: 70px;
        padding: 18px 10px;
    }

    .admin-sidebar .logo-text,
    .admin-menu-link {
        font-size: 0;
    }

    .admin-logo {
        justify-content: center;
    }

    .admin-sidebar .logo-icon {
        width: 45px;
        height: 45px;
    }

    .admin-menu-link {
        justify-content: center;
        padding: 14px 8px;
    }

    .admin-menu-link i {
        font-size: 18px;
        width: auto;
    }

    .admin-sidebar-bottom a {
        font-size: 0;
        justify-content: center;
    }

    .admin-sidebar-bottom i {
        font-size: 17px;
    }

    .admin-main {
        margin-left: 70px;
        width: calc(100% - 70px);
        padding: 20px 15px;
    }

    .admin-topbar {
        align-items: flex-start;
        gap: 15px;
        flex-direction: column;
    }

    .admin-topbar h1 {
        font-size: 28px;
    }

    .admin-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .admin-data-section {
        padding: 18px;
    }

    .admin-section-title h2 {
        font-size: 21px;
    }

    .admin-section-title {
        align-items: flex-start;
        gap: 10px;
        flex-direction: column;
    }

}

/* =========================================
   BUSINESS USERS NAV BUTTON
========================================= */

.business-users-nav {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 18px;
    border-radius: 10px;
    background: #102b3f;
    color: #ffffff !important;
    text-decoration: none;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 700;
    transition: 0.3s ease;
}

.business-users-nav:hover {
    background: #d9b36c;
    color: #102b3f !important;
    transform: translateY(-2px);
}

.business-users-nav i {
    font-size: 14px;
}

/* =====================================================
   HOME BUSINESS USERS SECTION
===================================================== */

.home-business-section {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: #102b3f;
}

.home-business-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}


/* BACKGROUND SHAPES */

.business-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.business-shape-one {
    width: 500px;
    height: 500px;
    top: -250px;
    left: -180px;
    border: 1px solid rgba(217, 179, 108, 0.15);
}

.business-shape-two {
    width: 650px;
    height: 650px;
    right: -350px;
    bottom: -350px;
    background: rgba(217, 179, 108, 0.04);
}


/* LEFT SIDE */

.business-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #d9b36c;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 22px;
}

.home-business-content h2 {
    margin: 0;
    max-width: 580px;
    color: #ffffff;
    font-family: "Playfair Display", serif;
    font-size: 52px;
    line-height: 1.15;
}

.home-business-content h2 em {
    display: block;
    color: #d9b36c;
    font-style: italic;
}

.home-business-content > p {
    max-width: 570px;
    margin: 24px 0 35px;
    color: #c7d3db;
    font-size: 16px;
    line-height: 1.8;
}


/* FEATURES */

.business-feature-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 38px;
}

.business-feature {
    display: flex;
    align-items: center;
    gap: 15px;
}

.business-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(217, 179, 108, 0.12);
    color: #d9b36c;
    flex-shrink: 0;
    font-size: 18px;
}

.business-feature h4 {
    margin: 0 0 4px;
    color: #ffffff;
    font-size: 15px;
}

.business-feature p {
    margin: 0;
    color: #9eb0bb;
    font-size: 13px;
}


/* MAIN BUTTON */

.business-main-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 23px;
    border-radius: 10px;
    background: #d9b36c;
    color: #102b3f;
    text-decoration: none;
    font-weight: 800;
    transition: 0.3s ease;
}

.business-main-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}


/* =====================================================
   PORTAL PREVIEW CARD
===================================================== */

.business-portal-preview {
    background: #ffffff;
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.22);
}


/* TOP */

.business-preview-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 24px;
    border-bottom: 1px solid #edf0f2;
}

.business-preview-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.business-preview-logo {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #102b3f;
    color: #d9b36c;
}

.business-preview-brand div:last-child {
    display: flex;
    flex-direction: column;
}

.business-preview-brand span {
    color: #d9b36c;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.business-preview-brand strong {
    margin-top: 4px;
    color: #102b3f;
    font-family: "Playfair Display", serif;
    font-size: 20px;
}


/* STATUS */

.business-live-status {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #4f6470;
    font-size: 11px;
    font-weight: 700;
}

.business-live-status span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #27a06b;
}


/* HEADING */

.business-account-heading {
    padding: 28px 0 20px;
}

.business-account-heading span {
    color: #d9b36c;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.business-account-heading h3 {
    margin: 8px 0 0;
    color: #102b3f;
    font-family: "Playfair Display", serif;
    font-size: 27px;
}


/* ACCOUNT CARDS */

.business-account-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.business-account-card {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 15px;
    border: 1px solid #edf0f2;
    border-radius: 13px;
    text-decoration: none;
    transition: 0.3s ease;
}

.business-account-card:hover {
    transform: translateX(5px);
    border-color: #d9b36c;
    background: #fcfaf6;
}

.business-account-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f5f7;
    color: #102b3f;
    font-size: 17px;
}

.business-account-card div:nth-child(2) {
    display: flex;
    flex-direction: column;
}

.business-account-card strong {
    color: #102b3f;
    font-size: 14px;
}

.business-account-card span {
    margin-top: 4px;
    color: #8b98a5;
    font-size: 11px;
}

.account-arrow {
    margin-left: auto;
    color: #d9b36c;
}


/* FOOTER */

.business-preview-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 23px;
    padding-top: 20px;
    border-top: 1px solid #edf0f2;
}

.business-preview-footer div {
    color: #7b8794;
    font-size: 11px;
    font-weight: 600;
}

.business-preview-footer div i {
    margin-right: 5px;
    color: #27a06b;
}

.business-preview-footer a {
    color: #102b3f;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
}

.business-preview-footer a i {
    margin-left: 5px;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 950px) {

    .home-business-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .home-business-content h2 {
        font-size: 44px;
    }

}


@media (max-width: 600px) {

    .home-business-section {
        padding: 70px 0;
    }

    .home-business-content h2 {
        font-size: 36px;
    }

    .business-portal-preview {
        padding: 20px;
        border-radius: 16px;
    }

    .business-preview-top {
        align-items: flex-start;
        gap: 15px;
        flex-direction: column;
    }

    .business-preview-footer {
        align-items: flex-start;
        gap: 12px;
        flex-direction: column;
    }

}

/* ========================================
   CORPORATE ADMIN
======================================== */

.corporate-type-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #eef5f3;
    color: var(--primary);
    padding: 6px 9px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 800;
    white-space: nowrap;
}

.business-type-pill {
    display: inline-block;
    background: #f5eadf;
    color: #a86535;
    padding: 6px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    white-space: nowrap;
}

.requirements-cell {
    min-width: 250px;
    max-width: 350px;
    line-height: 1.5;
    white-space: normal;
}

.message-cell {
    min-width: 200px;
    max-width: 300px;
    white-space: normal;
    line-height: 1.5;
}

.admin-empty {
    text-align: center;
    padding: 35px !important;
    color: #7b8b90;
    font-size: 14px;
}

.admin-error {
    text-align: center;
    padding: 30px !important;
    color: #d9534f;
    font-weight: 600;
}

.admin-delete-btn {
    border: none;
    background: #fff0f0;
    color: #d9534f;
    padding: 8px 11px;
    border-radius: 8px;
    font-family: inherit;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.25s;
    white-space: nowrap;
}

.admin-delete-btn:hover {
    background: #d9534f;
    color: white;
}

.admin-delete-btn i {
    margin-right: 4px;
}

/* =========================================
   MOBILE NAVBAR / HAMBURGER FIX
========================================= */

@media (max-width: 900px) {

    .cv-navbar-inner {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 72px;
    }

    /* Logo left side */
    .cv-logo {
        display: flex;
        align-items: center;
        flex-shrink: 0;
    }

    /* Hamburger right side */
    .cv-mobile-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;

        position: absolute;
        right: 15px;
        left: auto;
        top: 50%;
        transform: translateY(-50%);

        width: 46px;
        height: 46px;

        margin: 0;
        padding: 0;

        border: none;
        background: transparent;

        cursor: pointer;
        z-index: 9999;
    }

    .cv-mobile-btn i {
        font-size: 24px;
    }

    /* Hide Book Now on mobile */
    .cv-book-btn {
        display: none !important;
    }

    /* Mobile navigation */
    .cv-nav-menu {
        display: none;
        position: absolute;

        top: 100%;
        left: 0;
        right: 0;

        width: 100%;

        flex-direction: column;
        align-items: stretch;

        padding: 15px 20px;

        z-index: 9998;
    }

    .cv-nav-menu.active {
        display: flex !important;
    }

    .cv-nav-menu a {
        display: block;
        width: 100%;
        padding: 13px 10px;
        text-align: left;
    }
}


/* Extra small phones */
@media (max-width: 480px) {

    .cv-navbar-inner {
        min-height: 65px;
    }

    .cv-mobile-btn {
        right: 10px;
        width: 42px;
        height: 42px;
    }

    .cv-mobile-btn i {
        font-size: 22px;
    }

    .cv-logo-text span {
        font-size: 20px;
    }

    .cv-logo-text small {
        font-size: 9px;
    }
}

/* =========================================
   COCOVISTA MOBILE NAVIGATION
========================================= */

.cv-mobile-btn {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    margin-left: auto;
    border: 0;
    background: transparent;
    color: #071b2b;
    font-size: 23px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

.cv-mobile-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(6,24,39,.98);
    display: none;
    flex-direction: column;
    overflow-y: auto;
    padding: 78px 22px 30px;
}

.cv-mobile-overlay.show {
    display: flex;
}

.cv-mobile-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(255,255,255,.06);
    color: #fff;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cv-mobile-close:hover {
    background: #c9a45c;
    border-color: #c9a45c;
}

.cv-mobile-grid {
    width: 100%;
    max-width: 560px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.cv-mobile-item {
    min-height: 108px;
    padding: 18px 10px;
    border: 1px solid rgba(255,255,255,.13);
    background: rgba(255,255,255,.045);
    color: rgba(255,255,255,.9);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 11px;
    transition: .25s ease;
}

.cv-mobile-item i {
    color: #e4c77f;
    font-size: 23px;
}

.cv-mobile-item span {
    font-size: 12px;
    font-weight: 600;
}

.cv-mobile-item:hover,
.cv-mobile-item.active {
    background: #fff;
    color: #071b2b;
    border-color: #c9a45c;
}

.cv-mobile-item:hover i,
.cv-mobile-item.active i {
    color: #c9a45c;
}

.cv-mobile-item.cv-business-item {
    grid-column: 1 / -1;
}


/* TABLET + MOBILE */

@media (max-width: 980px) {

    .cv-nav-menu {
        display: none !important;
    }

    .cv-book-btn {
        display: none;
    }

    /* THIS keeps hamburger on RIGHT */
    .cv-mobile-btn {
        display: flex;
        margin-left: auto;
        flex-shrink: 0;
    }

}


.cv-mobile-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: #061827;
    display: none;
    overflow-y: auto;
}

.cv-mobile-overlay.show {
    display: block;
}

.cv-mobile-close {
    position: absolute;
    top: 18px;
    right: 20px;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(255,255,255,.06);
    color: #fff;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 2;
}

.cv-mobile-grid {
    min-height: 100%;
    padding: 90px 25px 35px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    align-content: start;
}

.cv-mobile-item {
    min-height: 115px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    color: rgba(255,255,255,.82);
    background: rgba(255,255,255,.055);
    border: 1px solid rgba(255,255,255,.10);
    transition: .25s ease;
}

.cv-mobile-item i {
    color: var(--cv-gold-light);
    font-size: 25px;
}

.cv-mobile-item span {
    font-size: 12px;
    font-weight: 600;
    text-align: center;
}

.cv-mobile-item:hover,
.cv-mobile-item.active {
    background: #fff;
    color: var(--cv-navy);
    border-color: var(--cv-gold);
}

.cv-mobile-item:hover i,
.cv-mobile-item.active i {
    color: var(--cv-gold);
}

.cv-mobile-business {
    grid-column: 1 / -1;
}

@media (min-width: 981px) {
    .cv-mobile-overlay {
        display: none !important;
    }
}



/* SMALL MOBILE */

@media (max-width: 650px) {

    .cv-mobile-overlay {
        padding: 76px 16px 25px;
    }

    .cv-mobile-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .cv-mobile-item {
        min-height: 94px;
    }

    .cv-mobile-item.cv-business-item {
        grid-column: 1 / -1;
    }

}


/* VERY SMALL SCREEN */

@media (max-width: 380px) {

    .cv-mobile-grid {
        gap: 8px;
    }

    .cv-mobile-item {
        min-height: 88px;
    }

    .cv-mobile-item i {
        font-size: 20px;
    }

    .cv-mobile-item span {
        font-size: 11px;
    }

}

/* =====================================================
   MOBILE MENU OVERLAY
===================================================== */

.cv-mobile-overlay {
    display: none;
}

@media (max-width: 980px) {

    /* Hamburger ko right side par rakho */
    .cv-mobile-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        margin-left: auto;
        padding: 0;
        border: 0;
        background: transparent;
        color: var(--cv-navy);
        font-size: 24px;
        cursor: pointer;
        position: relative;
        z-index: 3001;
    }

    /* Normal desktop/mobile dropdown band */
    .cv-nav-menu {
        display: none !important;
    }

    /* OVERLAY */
    .cv-mobile-overlay {
        position: fixed;
        inset: 0;
        z-index: 3000;
        display: none;
        background: rgba(7, 27, 43, 0.97);
        padding: 85px 22px 30px;
        overflow-y: auto;
    }

    .cv-mobile-overlay.show {
        display: block;
    }

    /* Close button */
    .cv-mobile-close {
        position: absolute;
        top: 20px;
        right: 22px;
        width: 42px;
        height: 42px;
        border: 1px solid rgba(255,255,255,.2);
        background: transparent;
        color: #fff;
        font-size: 20px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Menu grid */
    .cv-mobile-grid {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    /* Each menu item */
    .cv-mobile-item {
        min-height: 125px;
        padding: 20px 10px;
        background: rgba(255,255,255,.07);
        border: 1px solid rgba(255,255,255,.12);
        color: #fff;
        text-decoration: none;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;

        gap: 12px;
        transition: .25s ease;
    }

    .cv-mobile-item i {
        font-size: 25px;
        color: var(--cv-gold-light);
    }

    .cv-mobile-item span {
        font-size: 12px;
        font-weight: 700;
        letter-spacing: .3px;
    }

    .cv-mobile-item:hover,
    .cv-mobile-item.active {
        background: #fff;
        color: var(--cv-navy);
        border-color: var(--cv-gold);
    }

    .cv-mobile-item:hover i,
    .cv-mobile-item.active i {
        color: var(--cv-gold);
    }

    .cv-business-item {
        grid-column: 1 / -1;
        min-height: 90px;
    }

    /* Mobile overlay animation */
    .cv-mobile-overlay.show .cv-mobile-item {
        animation: cvMenuItemIn .25s ease both;
    }

    @keyframes cvMenuItemIn {
        from {
            opacity: 0;
            transform: translateY(12px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

@media (max-width: 500px) {

    .cv-navbar-inner {
        padding: 0 18px;
    }

    .cv-mobile-overlay {
        padding-left: 16px;
        padding-right: 16px;
    }

    .cv-mobile-grid {
        gap: 10px;
    }

    .cv-mobile-item {
        min-height: 115px;
    }
}

/* =====================================================
   MOBILE FULL SCREEN MENU
===================================================== */

.cv-mobile-overlay {
    display: none;
}

@media (max-width: 980px) {

    /* Hamburger ko RIGHT side par rakho */
    .cv-navbar-inner {
        position: relative;
    }

    .cv-mobile-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        margin-left: 12px;
        padding: 0;
        border: 1px solid #e5e5e5;
        background: #fff;
        color: var(--cv-navy);
        cursor: pointer;
    }

    /* Existing dropdown nav ko completely disable */
    .cv-nav-menu {
        display: none !important;
    }

    /* MOBILE OVERLAY */
    .cv-mobile-overlay {
        position: fixed;
        z-index: 99999;
        inset: 0;
        width: 100%;
        min-height: 100vh;
        background: #061827;
        padding: 75px 22px 30px;
        overflow-y: auto;
    }

    .cv-mobile-overlay.show {
        display: block;
    }

    /* CLOSE BUTTON */
    .cv-mobile-close {
        position: absolute;
        top: 18px;
        right: 20px;
        width: 42px;
        height: 42px;
        border: 1px solid rgba(255,255,255,.18);
        background: rgba(255,255,255,.06);
        color: #fff;
        font-size: 20px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .cv-mobile-close:hover {
        background: var(--cv-gold);
        border-color: var(--cv-gold);
    }

    /* GRID */
    .cv-mobile-grid {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    /* MENU ITEM */
    .cv-mobile-item {
        min-height: 105px;
        padding: 18px 10px;
        background: rgba(255,255,255,.06);
        border: 1px solid rgba(255,255,255,.10);
        color: rgba(255,255,255,.88);
        text-decoration: none;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;

        font-size: 12px;
        font-weight: 600;
        text-align: center;

        transition: .25s ease;
    }

    .cv-mobile-item i {
        color: var(--cv-gold-light);
        font-size: 23px;
    }

    .cv-mobile-item:hover,
    .cv-mobile-item:active,
    .cv-mobile-item.active {
        background: #fff;
        color: var(--cv-navy);
        border-color: var(--cv-gold);
    }

    .cv-mobile-item:hover i,
    .cv-mobile-item:active i,
    .cv-mobile-item.active i {
        color: var(--cv-gold);
    }

    .cv-business-item {
        grid-column: 1 / -1;
    }
}


@media (max-width: 420px) {

    .cv-mobile-overlay {
        padding-left: 15px;
        padding-right: 15px;
    }

    .cv-mobile-grid {
        gap: 9px;
    }

    .cv-mobile-item {
        min-height: 95px;
    }
}

/* =========================
   MOBILE FULLSCREEN MENU
========================= */

.cv-mobile-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: #061827;
    display: none;
    overflow-y: auto;
    padding: 80px 25px 40px;
}

.cv-mobile-overlay.show {
    display: block;
}

.cv-mobile-close {
    position: absolute;
    top: 20px;
    right: 25px;
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255,255,255,.2);
    background: transparent;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cv-mobile-close:hover {
    background: var(--cv-gold);
    border-color: var(--cv-gold);
}

.cv-mobile-grid {
    width: min(600px, 100%);
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.cv-mobile-item {
    min-height: 115px;
    padding: 20px 10px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.04);
    color: #fff;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
    transition: .25s ease;
}

.cv-mobile-item i {
    color: var(--cv-gold);
    font-size: 24px;
}

.cv-mobile-item span {
    font-size: 12px;
    font-weight: 600;
}

.cv-mobile-item:hover,
.cv-mobile-item.active {
    background: #fff;
    color: var(--cv-navy);
    border-color: var(--cv-gold);
}

.cv-mobile-item:hover i,
.cv-mobile-item.active i {
    color: var(--cv-gold);
}

@media (min-width: 981px) {
    .cv-mobile-overlay {
        display: none !important;
    }
}

@media (max-width: 500px) {
    .cv-mobile-grid {
        grid-template-columns: 1fr;
    }

    .cv-mobile-item {
        min-height: 75px;
        flex-direction: row;
        justify-content: flex-start;
        padding: 18px 22px;
    }

    .cv-mobile-item i {
        width: 30px;
        text-align: center;
    }
}

/* =====================================================
   MOBILE MENU FIX
===================================================== */

.cv-mobile-overlay {
    position: fixed !important;
    inset: 0 !important;
    z-index: 999999 !important;
    width: 100% !important;
    height: 100% !important;
    background: #061827 !important;

    display: none !important;
    overflow-y: auto !important;

    padding: 80px 25px 40px !important;
}

.cv-mobile-overlay.show {
    display: block !important;
}

.cv-mobile-close {
    position: absolute !important;
    top: 20px !important;
    right: 20px !important;

    width: 45px !important;
    height: 45px !important;

    border: 1px solid rgba(255,255,255,.25) !important;
    background: transparent !important;
    color: #fff !important;

    font-size: 22px !important;
    cursor: pointer !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.cv-mobile-close:hover {
    background: var(--cv-gold) !important;
}

.cv-mobile-grid {
    width: min(600px, 100%) !important;
    margin: 0 auto !important;

    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
}

.cv-mobile-item {
    min-height: 110px !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;

    gap: 12px !important;

    padding: 20px !important;

    color: #fff !important;
    background: rgba(255,255,255,.05) !important;

    border: 1px solid rgba(255,255,255,.15) !important;

    text-decoration: none !important;

    cursor: pointer !important;

    transition: .25s ease !important;
}

.cv-mobile-item i {
    color: var(--cv-gold) !important;
    font-size: 24px !important;
}

.cv-mobile-item span {
    color: inherit !important;
    font-size: 12px !important;
    font-weight: 600 !important;
}

.cv-mobile-item:hover,
.cv-mobile-item.active {
    background: #fff !important;
    color: var(--cv-navy) !important;
    border-color: var(--cv-gold) !important;
}

.cv-mobile-item:hover i,
.cv-mobile-item.active i {
    color: var(--cv-gold) !important;
}


/* MOBILE BUTTON */

.cv-mobile-btn {
    position: relative !important;
    z-index: 1001 !important;

    display: none;

    width: 45px !important;
    height: 45px !important;

    border: 0 !important;
    background: transparent !important;

    color: var(--cv-navy) !important;

    font-size: 23px !important;

    cursor: pointer !important;
    pointer-events: auto !important;
}


/* MOBILE */

@media (max-width: 980px) {

    .cv-mobile-btn {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .cv-nav-menu {
        display: none !important;
    }

    .cv-book-btn {
        display: none;
    }
}


@media (max-width: 600px) {

    .cv-mobile-overlay {
        padding: 75px 18px 30px !important;
    }

    .cv-mobile-grid {
        grid-template-columns: 1fr !important;
    }

    .cv-mobile-item {
        min-height: 70px !important;

        flex-direction: row !important;
        justify-content: flex-start !important;

        padding: 16px 20px !important;
    }

    .cv-mobile-item i {
        width: 30px;
        text-align: center;
    }
}



.cv-mobile-overlay {
position: fixed;
inset: 0;
z-index: 99999;
background: #061827;

opacity: 0;
visibility: hidden;
pointer-events: none;

transition: opacity .3s ease, visibility .3s ease;

overflow-y: auto;


}



.cv-mobile-overlay.show {
opacity: 1;
visibility: visible;
pointer-events: auto;
}



/* CLOSE BUTTON */



.cv-mobile-close {
position: absolute;
top: 22px;
right: 25px;

width: 45px;
height: 45px;

border: 1px solid rgba(255,255,255,.2);
background: transparent;

color: #fff;
font-size: 22px;

cursor: pointer;

display: flex;
align-items: center;
justify-content: center;


}



/* MENU GRID */



.cv-mobile-grid {
width: min(500px, 90%);

margin: 100px auto 40px;

display: grid;

grid-template-columns: 1fr 1fr;

gap: 12px;


}



/* MENU ITEM */



.cv-mobile-item {
min-height: 100px;

padding: 20px 12px;

display: flex;
flex-direction: column;

align-items: center;
justify-content: center;

gap: 10px;

border: 1px solid rgba(255,255,255,.12);

color: #fff;

text-decoration: none;

background: rgba(255,255,255,.04);

transition: .25s ease;


}



.cv-mobile-item i {
color: #e4c77f;
font-size: 22px;
}



.cv-mobile-item span {
font-size: 11px;
font-weight: 600;
text-align: center;
}



/* HOVER + ACTIVE */



.cv-mobile-item:hover,
.cv-mobile-item.active {
background: #fff;
color: #071b2b;
border-color: #c9a45c;
}



.cv-mobile-item:hover i,
.cv-mobile-item.active i {
color: #c9a45c;
}



/* =====================================================
HAMBURGER BUTTON
===================================================== */



.cv-mobile-btn,
.mobile-menu {
display: none;

border: 0;

background: transparent;

color: #071b2b;

font-size: 23px;

cursor: pointer;

padding: 8px;


}



/* =====================================================
DESKTOP
===================================================== */



@media (min-width: 981px) {

.cv-mobile-overlay {
    display: none !important;
}

.cv-mobile-btn,
.mobile-menu {
    display: none !important;
}


}



/* =====================================================
TABLET + MOBILE
===================================================== */



@media (max-width: 980px) {

.cv-mobile-btn,
.mobile-menu {
    display: block;
}


}



/* =====================================================
SMALL MOBILE
===================================================== */



@media (max-width: 500px) {

.cv-mobile-grid {
    width: 92%;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
}

.cv-mobile-item {
    min-height: 88px;
    padding: 15px 8px;
}

.cv-mobile-item i {
    font-size: 20px;
}

.cv-mobile-item span {
    font-size: 10px;
}

.cv-mobile-close {
    top: 15px;
    right: 15px;
}


}



/* =====================================================
PREVENT PAGE SCROLL WHEN MENU IS OPEN
===================================================== */



body.cv-menu-open {
overflow: hidden;
}

/* ======================================================
   COCO VISTA ADMIN DASHBOARD
   PACKAGE BOOKING STATUS
====================================================== */

/* ------------------------------------------
   BOOKING ACTION AREA
------------------------------------------ */

.booking-admin-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    min-width: 270px;
}


/* ------------------------------------------
   STATUS BADGE
------------------------------------------ */

.booking-status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 90px;
    padding: 6px 11px;

    border-radius: 999px;

    font-size: 11px;
    font-weight: 700;

    white-space: nowrap;

    border: 1px solid transparent;
}


/* PENDING */

.booking-status-badge.status-pending {
    background: #fff7ed;
    color: #c2410c;
    border-color: #fed7aa;
}


/* QUALIFIED */

.booking-status-badge.status-qualified {
    background: #ecfdf5;
    color: #047857;
    border-color: #a7f3d0;
}


/* NO SHOW */

.booking-status-badge.status-no-show {
    background: #eff6ff;
    color: #1d4ed8;
    border-color: #bfdbfe;
}


/* DISQUALIFIED */

.booking-status-badge.status-disqualified {
    background: #fef2f2;
    color: #dc2626;
    border-color: #fecaca;
}


/* ------------------------------------------
   STATUS SELECT
------------------------------------------ */

.booking-status-select {
    appearance: auto;

    min-width: 125px;

    padding: 8px 10px;

    border: 1px solid var(--border, #e5e7eb);

    border-radius: 8px;

    background: #ffffff;

    color: var(--text, #1f2937);

    font-family: inherit;

    font-size: 12px;
    font-weight: 600;

    cursor: pointer;

    outline: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}


.booking-status-select:hover {
    border-color: #cbd5e1;
}


.booking-status-select:focus {
    border-color: #2563eb;

    box-shadow:
        0 0 0 3px rgba(37, 99, 235, 0.10);
}


/* ------------------------------------------
   STATUS SELECT OPTIONS
------------------------------------------ */

.booking-status-select option {
    background: #ffffff;
    color: #1f2937;

    font-size: 13px;
}


/* ------------------------------------------
   DELETE BUTTON
------------------------------------------ */

.booking-admin-actions .admin-delete-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 6px;

    padding: 8px 11px;

    border: 1px solid #fecaca;

    border-radius: 8px;

    background: #fff1f2;

    color: #dc2626;

    font-family: inherit;

    font-size: 11px;
    font-weight: 700;

    cursor: pointer;

    transition:
        all 0.2s ease;
}


.booking-admin-actions .admin-delete-btn:hover {
    background: #fee2e2;

    border-color: #fca5a5;

    transform: translateY(-1px);
}


.booking-admin-actions .admin-delete-btn:active {
    transform: translateY(0);
}


/* ------------------------------------------
   BOOKING TABLE
------------------------------------------ */

#bookings .admin-table {
    min-width: 1100px;
}


#bookings .admin-table th,
#bookings .admin-table td {
    vertical-align: middle;
}


/* ------------------------------------------
   TRAVEL DATE
------------------------------------------ */

#bookings .admin-table td:nth-child(5) {
    white-space: nowrap;
}


/* ------------------------------------------
   BOOKING ROW HOVER
------------------------------------------ */

#bookings .admin-table tbody tr {
    transition:
        background 0.2s ease;
}


#bookings .admin-table tbody tr:hover {
    background: #f8fafc;
}


/* ------------------------------------------
   RESPONSIVE
------------------------------------------ */

@media (max-width: 900px) {

    .booking-admin-actions {
        flex-direction: column;
        align-items: stretch;
        min-width: 150px;
    }


    .booking-status-select {
        width: 100%;
        min-width: 150px;
    }


    .booking-status-badge {
        width: 100%;
    }


    .booking-admin-actions .admin-delete-btn {
        width: 100%;
    }

}


/* ------------------------------------------
   SMALL SCREENS
------------------------------------------ */

@media (max-width: 600px) {

    #bookings .admin-table {
        min-width: 950px;
    }

}
