:root {
    /*
     * CCULB Resort Brand Colors
     * Primary Cyan নেওয়া হয়েছে official logo থেকে।
     */
    --brand-primary: #00b0f0;
    --brand-primary-hover: #0098d1;
    --brand-primary-dark: #007fa8;
    --brand-primary-soft: #e6f8fe;
    --brand-primary-rgb: 0, 176, 240;

    /*
     * Deep green premium background ও contrast হিসেবে থাকবে।
     */
    --brand-secondary: #123d35;
    --brand-secondary-dark: #092720;
    --brand-secondary-soft: #eaf1ee;

    --brand-gray: #808080;
    --brand-cream: #f7f3eb;
    --brand-white: #ffffff;
    --brand-text: #24332f;
    --brand-muted: #6d7c77;
    --brand-border: #e3e7e4;

    /*
     * পুরোনো variable name রাখা হয়েছে, যাতে বর্তমান
     * design না ভেঙে Cyan branding কার্যকর হয়।
     */
    --green: var(--brand-secondary);
    --green-dark: var(--brand-secondary-dark);
    --green-soft: var(--brand-secondary-soft);

    --gold: var(--brand-primary);
    --gold-light: var(--brand-primary-soft);

    --cream: var(--brand-cream);
    --white: var(--brand-white);
    --text: var(--brand-text);
    --muted: var(--brand-muted);
    --border: var(--brand-border);

    --shadow:
        0 18px 50px rgba(13, 44, 36, 0.12);

    --brand-shadow:
        0 14px 35px rgba(var(--brand-primary-rgb), 0.20);

    --container: 1200px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background: var(--white);
    font-family: "DM Sans", sans-serif;
    line-height: 1.65;
}

body.menu-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

button,
input,
select {
    font: inherit;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.topbar {
    color: rgba(255, 255, 255, 0.8);
    background: var(--green-dark);
    font-size: 12px;
}

.topbar-inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.topbar-contact {
    display: flex;
    gap: 25px;
}

.topbar-links a {
    color: var(--gold-light);
    text-decoration: none;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 7px 24px rgba(5, 38, 30, 0.1);
}

.navbar {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 30px rgba(5, 38, 30, 0.08);
}

.navbar-inner {
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.brand {
    min-width: 0;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--green);
    text-decoration: none;
}

.brand-mark {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border: 1px solid var(--gold);
    border-radius: 50%;
    color: var(--gold);
    font-family: "Playfair Display", serif;
    font-size: 25px;
    font-weight: 700;
}

.brand-content {
    min-width: 0;
    display: grid;
    line-height: 1.1;
}

.brand-content strong {
    color: var(--green);
    font-family: "Playfair Display", serif;
    font-size: 21px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0.4px;
    white-space: nowrap;
}

.brand-content small {
    max-width: 230px;
    margin-top: 5px;
    overflow: hidden;
    color: var(--gold);
    font-size: 8px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 1.2px;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
    flex: 0 0 auto;
    white-space: nowrap;
}

.nav-menu > a {
    position: relative;
    color: #3e504a;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.nav-menu > a:not(.nav-book-button)::after {
    position: absolute;
    right: 0;
    bottom: -9px;
    left: 0;
    width: 0;
    height: 2px;
    margin: auto;
    background: var(--gold);
    content: "";
    transition: width 0.25s ease;
}

.nav-menu > a:hover::after,
.nav-menu > a.active::after {
    width: 100%;
}

/*
 * Experiences navigation dropdown
 */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    position: relative;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 0;
    background: transparent;
    color: #3e504a;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

.nav-dropdown-toggle::after {
    position: absolute;
    right: 0;
    bottom: -9px;
    left: 0;
    width: 0;
    height: 2px;
    margin: auto;
    background: var(--gold);
    content: "";
    transition: width .25s ease;
}

.nav-dropdown:hover
.nav-dropdown-toggle::after,
.nav-dropdown.open
.nav-dropdown-toggle::after,
.nav-dropdown.active
.nav-dropdown-toggle::after {
    width: 100%;
}

.nav-dropdown-arrow {
    display: inline-block;
    color: var(--gold);
    font-size: 10px;
    transition: transform .25s ease;
}

.nav-dropdown:hover
.nav-dropdown-arrow,
.nav-dropdown.open
.nav-dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 24px);
    left: 50%;
    width: 285px;
    padding: 10px;
    visibility: hidden;
    opacity: 0;
    border-top: 3px solid var(--gold);
    background: #fff;
    box-shadow: 0 20px 55px rgba(9, 39, 32, .17);
    transform:
        translateX(-50%)
        translateY(10px);
    transition:
        visibility .25s ease,
        opacity .25s ease,
        transform .25s ease;
}

.nav-dropdown-menu::before {
    position: absolute;
    right: 0;
    bottom: 100%;
    left: 0;
    height: 24px;
    content: "";
}

.nav-dropdown:hover
.nav-dropdown-menu,
.nav-dropdown.open
.nav-dropdown-menu {
    visibility: visible;
    opacity: 1;
    transform:
        translateX(-50%)
        translateY(0);
}

.nav-dropdown-menu > a {
    padding: 12px 11px;
    display: flex;
    align-items: center;
    gap: 11px;
    color: #42564f;
    text-decoration: none;
    transition:
        background .2s ease,
        color .2s ease;
}

.nav-dropdown-menu > a:hover,
.nav-dropdown-menu > a.active {
    background: var(--green-soft);
    color: var(--green);
}

.dropdown-link-icon {
    width: 31px;
    height: 31px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #f3f6f4;
    color: var(--gold);
}

.nav-dropdown-menu strong,
.nav-dropdown-menu small {
    display: block;
}

.nav-dropdown-menu strong {
    font-size: 11px;
}

.nav-dropdown-menu small {
    margin-top: 2px;
    color: #82908b;
    font-size: 8px;
    font-weight: 500;
}

.nav-book-button {
    flex: 0 0 auto;
    padding: 14px 21px;
    color: #041f2a !important;
    background: var(--brand-primary);
    box-shadow:
        0 9px 22px rgba(var(--brand-primary-rgb), .20);
    font-weight: 800;
    white-space: nowrap;
    transition:
        color .25s ease,
        background-color .25s ease,
        box-shadow .25s ease,
        transform .25s ease;
}

.nav-book-button:hover {
    color: #ffffff !important;
    background: var(--brand-primary-dark);
    box-shadow:
        0 13px 28px rgba(var(--brand-primary-rgb), .29);
    transform: translateY(-2px);
}


.nav-dropdown.section-active
.nav-dropdown-toggle::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 9px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: var(--green);
}

.hero {
    position: relative;
    background: var(--green-dark);
}

.hero-slider {
    position: relative;
    min-height: 680px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    min-height: 680px;
    display: flex;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    background-position: center;
    background-size: cover;
    transition:
        opacity 0.7s ease,
        visibility 0.7s ease;
}

.hero-slide.active {
    visibility: visible;
    opacity: 1;
}

.hero-fallback {
    position: relative;
    visibility: visible;
    opacity: 1;
    background:
        linear-gradient(
            115deg,
            rgba(7, 38, 30, 0.98),
            rgba(18, 61, 53, 0.78)
        );
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 70px;
    padding-bottom: 120px;
    color: var(--white);
}

.eyebrow,
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.2px;
    text-transform: uppercase;
}

.eyebrow::before,
.section-eyebrow::before {
    width: 34px;
    height: 1px;
    background: currentColor;
    content: "";
}

.hero-content h1 {
    max-width: 780px;
    margin: 22px 0;
    font-family: "Playfair Display", serif;
    font-size: clamp(44px, 6vw, 78px);
    font-weight: 600;
    line-height: 1.08;
}

.hero-content p {
    max-width: 630px;
    margin: 0 0 34px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 17px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
}

.button {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 25px;
    border: 1px solid transparent;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-decoration: none;
    text-transform: uppercase;
    transition: 0.25s ease;
}

.button-gold {
    color: var(--brand-secondary-dark);
    background: var(--brand-primary);
    box-shadow:
        0 10px 24px rgba(var(--brand-primary-rgb), 0.18);
}

.button-gold:hover {
    color: var(--brand-white);
    background: var(--brand-primary-dark);
    box-shadow:
        0 14px 30px rgba(var(--brand-primary-rgb), 0.28);
    transform: translateY(-2px);
}

.button-outline {
    border-color: rgba(255, 255, 255, 0.55);
    color: var(--white);
}

.button-outline:hover {
    color: var(--green-dark);
    background: var(--white);
}

.slider-arrow {
    position: absolute;
    z-index: 5;
    top: 50%;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    color: var(--white);
    background: rgba(7, 30, 25, 0.3);
    font-size: 30px;
    cursor: pointer;
    transform: translateY(-50%);
}

.slider-prev {
    left: 25px;
}

.slider-next {
    right: 25px;
}

.slider-dots {
    position: absolute;
    z-index: 5;
    right: 0;
    bottom: 42px;
    left: 0;
    display: flex;
    justify-content: center;
    gap: 9px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 1px solid white;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
}

.slider-dot.active {
    background: var(--gold);
    border-color: var(--gold);
}

.booking-bar {
    position: relative;
    z-index: 10;
    margin-top: -42px;
}

.booking-form {
    display: grid;
    grid-template-columns: 1.25fr repeat(3, 1fr) 1.15fr;
    min-height: 110px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.booking-heading,
.booking-field {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 26px;
    border-right: 1px solid var(--border);
}

.booking-heading {
    color: var(--white);
    background: var(--green);
}

.booking-heading span,
.booking-field > span {
    margin-bottom: 7px;
    color: var(--gold);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.booking-heading strong {
    font-family: "Playfair Display", serif;
    font-size: 20px;
}

.booking-field input,
.booking-field select {
    width: 100%;
    padding: 0;
    border: 0;
    outline: 0;
    color: var(--text);
    background: transparent;
    font-size: 13px;
    font-weight: 600;
}

.booking-submit {
    border: 0;
    color: var(--brand-secondary-dark);
    background: var(--brand-primary);
    box-shadow:
        0 10px 26px rgba(var(--brand-primary-rgb), 0.18);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.booking-submit:hover {
    color: var(--brand-white);
    background: var(--brand-primary-dark);
    box-shadow:
        0 14px 32px rgba(var(--brand-primary-rgb), 0.30);
    transform: translateY(-2px);
}

.booking-submit:focus-visible {
    outline: 3px solid var(--brand-primary-soft);
    outline-offset: 3px;
}

.section {
    padding: 115px 0;
}

.section-small {
    padding: 80px 0;
}

.welcome-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
    gap: 85px;
    align-items: center;
}

.welcome-image-wrap {
    position: relative;
    min-height: 560px;
}

.welcome-image {
    width: calc(100% - 55px);
    height: 560px;
    object-fit: cover;
}

.welcome-placeholder {
    width: calc(100% - 55px);
    height: 560px;
    display: grid;
    place-content: center;
    color: var(--white);
    background:
        linear-gradient(135deg, var(--green), var(--green-dark));
    text-align: center;
}

.welcome-placeholder span {
    color: var(--gold);
    font-size: 56px;
    font-family: "Playfair Display", serif;
}

.experience-card {
    position: absolute;
    right: 0;
    bottom: 42px;
    width: 190px;
    padding: 27px;
    color: var(--white);
    background: var(--green);
    box-shadow: var(--shadow);
}

.experience-card strong,
.experience-card span {
    display: block;
}

.experience-card strong {
    color: var(--gold);
    font-family: "Playfair Display", serif;
    font-size: 28px;
}

.welcome-content h2,
.section-heading h2,
.video-content h2,
.cta-inner h2 {
    margin: 18px 0 24px;
    color: var(--green-dark);
    font-family: "Playfair Display", serif;
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 600;
    line-height: 1.2;
}

.welcome-description {
    color: var(--muted);
    font-size: 15px;
}

.welcome-features {
    display: grid;
    gap: 14px;
    margin: 35px 0;
}

.welcome-features div {
    display: flex;
    align-items: center;
    gap: 15px;
}

.welcome-features span {
    color: var(--gold);
    font-family: "Playfair Display", serif;
}

.welcome-features strong {
    font-size: 14px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    color: var(--green);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
}

.video-section {
    padding-top: 30px;
    background: var(--cream);
}

.video-card {
    position: relative;
    min-height: 540px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--green-dark);
}

.video-card > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(5, 30, 24, 0.9),
            rgba(5, 30, 24, 0.28)
        );
}

.video-content {
    position: relative;
    z-index: 2;
    max-width: 580px;
    padding: 70px;
    color: var(--white);
}

.section-eyebrow.light {
    color: var(--gold-light);
}

.video-content h2,
.cta-inner h2 {
    color: var(--white);
}

.video-content p {
    color: rgba(255, 255, 255, 0.76);
}

.play-button {
    position: absolute;
    z-index: 3;
    top: 50%;
    right: 14%;
    width: 90px;
    height: 90px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 50%;
    color: var(--green-dark);
    background: var(--white);
    text-decoration: none;
    transform: translateY(-50%);
}

.play-button::before {
    position: absolute;
    inset: -12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    content: "";
}

.section-heading.centered {
    text-align: center;
}

.section-heading.centered .section-eyebrow {
    justify-content: center;
}

.section-heading.compact h2 {
    margin-bottom: 42px;
    font-size: 38px;
}

.client-logos {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
}

.client-logo {
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--white);
}

.client-logo img {
    max-width: 140px;
    max-height: 65px;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.68;
    transition: 0.25s ease;
}

.client-logo:hover img {
    filter: grayscale(0);
    opacity: 1;
}

.cta-section {
    padding: 75px 0;
    color: var(--white);
    background: var(--green);
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.cta-inner h2 {
    max-width: 760px;
    margin-bottom: 0;
    font-size: 40px;
}

.site-footer {
    color: rgba(255, 255, 255, 0.7);
    background: var(--green-dark);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.45fr repeat(3, 1fr);
    gap: 65px;
    padding-top: 80px;
    padding-bottom: 70px;
}

.footer-logo {
    color: var(--white);
}

.footer-brand p {
    max-width: 340px;
    margin-top: 25px;
    font-size: 13px;
}

.site-footer h3 {
    margin: 0 0 22px;
    color: var(--white);
    font-family: "Playfair Display", serif;
    font-size: 18px;
}

.footer-links,
.footer-contact {
    display: grid;
    gap: 11px;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 13px;
}

.footer-links a {
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-inner {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    font-size: 11px;
}

@media (max-width: 1050px) {
    .brand-content strong {
    font-size: 18px;
}

.brand-content small {
    max-width: 170px;
    letter-spacing: 0.7px;
}

.navbar-inner {
    gap: 18px;
}

    .nav-menu {
        gap: 17px;
    }

    .booking-form {
        grid-template-columns: repeat(2, 1fr);
    }

    .booking-submit {
        min-height: 75px;
    }

    .welcome-grid {
        gap: 50px;
    }

    .client-logos {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 820px) {
    .topbar {
        display: none;
    }

    .navbar-inner {
        min-height: 72px;
    }

    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 72px;
        right: 0;
        bottom: 0;
        width: min(340px, 88%);
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 25px;
        background: var(--white);
        box-shadow: -20px 20px 40px rgba(0, 0, 0, 0.12);
        transform: translateX(110%);
        transition: transform 0.3s ease;
    }

    .nav-menu.open {
        transform: translateX(0);
    }

    .nav-menu > a {
        padding: 14px 4px;
        border-bottom: 1px solid var(--border);
    }

    .nav-menu > a::after {
        display: none;
    }

    .nav-book-button {
        margin-top: 18px;
        padding: 15px !important;
        text-align: center;
    }

    .hero-slider,
    .hero-slide {
        min-height: 620px;
    }

    .slider-arrow {
        display: none;
    }

    .booking-bar {
        margin-top: 0;
    }

    .booking-form {
        grid-template-columns: 1fr 1fr;
    }

    .welcome-grid {
        grid-template-columns: 1fr;
    }

    .welcome-image-wrap {
        min-height: 470px;
    }

    .welcome-image,
    .welcome-placeholder {
        height: 470px;
    }

    .video-content {
        padding: 45px;
    }

    .play-button {
        right: 8%;
    }

    .client-logos {
        grid-template-columns: repeat(3, 1fr);
    }

    .cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .nav-dropdown {
    width: 100%;
}

.nav-dropdown-toggle {
    width: 100%;
    padding: 14px 18px;
    justify-content: space-between;
    font-size: 14px;
    text-align: left;
}

.nav-dropdown-toggle::after {
    display: none;
}

.nav-dropdown-menu {
    position: static;
    width: 100%;
    max-height: 0;
    padding: 0 12px;
    visibility: visible;
    opacity: 1;
    overflow: hidden;
    border-top: 0;
    box-shadow: none;
    background: #f7f9f8;
    transform: none;
    transition:
        max-height .3s ease,
        padding .3s ease;
}

.nav-dropdown-menu::before {
    display: none;
}

.nav-dropdown:hover
.nav-dropdown-menu {
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    transform: none;
}

.nav-dropdown.open
.nav-dropdown-menu {
    max-height: 350px;
    padding-top: 8px;
    padding-bottom: 8px;
    transform: none;
}

.nav-dropdown-menu > a {
    padding: 10px 8px;
}
}

@media (max-width: 600px) {
    .brand {
    max-width: calc(100% - 58px);
    gap: 9px;
}

.brand-content {
    overflow: hidden;
}

.brand-content strong {
    overflow: hidden;
    font-size: 16px;
    letter-spacing: 0;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.brand-content small {
    display: none;
}

    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .brand-mark {
        width: 40px;
        height: 40px;
    }

    .brand-content strong {
        font-size: 18px;
    }

    .hero-slider,
    .hero-slide {
        min-height: 570px;
    }

    .hero-content {
        padding-top: 70px;
        padding-bottom: 80px;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .slider-dots {
        bottom: 25px;
    }

    .booking-form {
        grid-template-columns: 1fr;
    }

    .booking-heading,
    .booking-field {
        min-height: 85px;
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .section {
        padding: 75px 0;
    }

    .welcome-image-wrap {
        min-height: 390px;
    }

    .welcome-image,
    .welcome-placeholder {
        width: calc(100% - 25px);
        height: 390px;
    }

    .experience-card {
        width: 165px;
        padding: 20px;
    }

    .welcome-content h2 {
        font-size: 36px;
    }

    .video-card {
        min-height: 580px;
        align-items: flex-start;
    }

    .video-content {
        padding: 42px 25px;
    }

    .play-button {
        top: auto;
        right: auto;
        bottom: 55px;
        left: 50%;
        width: 74px;
        height: 74px;
        transform: translateX(-50%);
    }

    .client-logos {
        grid-template-columns: repeat(2, 1fr);
    }

    .client-logo {
        min-height: 100px;
        padding: 18px;
    }

    .cta-inner h2 {
        font-size: 34px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .footer-bottom-inner {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        padding: 22px 0;
    }

    .footer-bottom-inner p {
        margin: 0;
    }
}

/*
 * Responsive Header Safety Breakpoint
 *
 * Resort name and desktop navigation require
 * more horizontal space. At 1240px and below,
 * navigation changes to the mobile drawer.
 */
@media (max-width: 1240px) {
    .topbar {
        display: none;
    }

    .navbar-inner {
        min-height: 72px;
        gap: 18px;
    }

    .brand {
        max-width: calc(100% - 60px);
        min-width: 0;
        flex: 0 1 auto;
        overflow: hidden;
    }

    .brand-content {
        min-width: 0;
        overflow: hidden;
    }

    .brand-content strong {
        display: block;
        overflow: hidden;
        font-size: 19px;
        line-height: 1.2;
        letter-spacing: 0;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .brand-content small {
        display: block;
        max-width: 280px;
        overflow: hidden;
        letter-spacing: 0.8px;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .menu-toggle {
        width: 44px;
        height: 44px;
        flex: 0 0 44px;
        display: block;
    }

    .nav-menu {
        position: fixed;
        z-index: 1001;
        top: 72px;
        right: 0;
        bottom: 0;
        width: min(360px, 90%);
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 25px;
        overflow-x: hidden;
        overflow-y: auto;
        background: var(--white);
        box-shadow:
            -20px 20px 40px
            rgba(0, 0, 0, 0.14);
        transform: translateX(110%);
        transition: transform 0.3s ease;
    }

    .nav-menu.open {
        transform: translateX(0);
    }

    .nav-menu > a {
        width: 100%;
        padding: 14px 4px;
        border-bottom: 1px solid var(--border);
        font-size: 14px;
        white-space: normal;
    }

    .nav-menu > a::after {
        display: none;
    }

    .nav-book-button {
        width: 100%;
        margin-top: 18px;
        padding: 15px !important;
        text-align: center;
        white-space: nowrap !important;
    }

    .nav-dropdown {
        width: 100%;
    }

    .nav-dropdown-toggle {
        width: 100%;
        padding: 14px 4px;
        justify-content: space-between;
        border-bottom: 1px solid var(--border);
        font-size: 14px;
        text-align: left;
        white-space: normal;
    }

    .nav-dropdown-toggle::after {
        display: none;
    }

    .nav-dropdown-menu {
        position: static;
        width: 100%;
        max-height: 0;
        padding: 0 12px;
        visibility: visible;
        opacity: 1;
        overflow: hidden;
        border-top: 0;
        background: #f7f9f8;
        box-shadow: none;
        transform: none;
        transition:
            max-height 0.3s ease,
            padding 0.3s ease;
    }

    .nav-dropdown-menu::before {
        display: none;
    }

    .nav-dropdown:hover .nav-dropdown-menu {
        max-height: 0;
        padding-top: 0;
        padding-bottom: 0;
        transform: none;
    }

    .nav-dropdown.open .nav-dropdown-menu {
        max-height: 350px;
        padding-top: 8px;
        padding-bottom: 8px;
        transform: none;
    }

    .nav-dropdown-menu > a {
        padding: 10px 8px;
    }
}

@media (max-width: 600px) {
    .brand {
        max-width: calc(100% - 56px);
        gap: 9px;
    }

    .dynamic-brand-logo {
        max-width: 50px;
        height: 44px;
    }

    .brand-content strong {
        font-size: 16px;
    }

    .brand-content small {
        display: none;
    }

    .nav-menu {
        width: min(340px, 90%);
        padding: 20px;
    }
}

/* =========== প্রতি পেজ এ ফিচারস ইমেজ এর /////////////// ডিজাইন বন্ধ করতে শুরু ====== */

/*
 * Remove diagonal stripe decorations only.
 * Preserve featured images, dark overlays,
 * background colours and sitebg.png.
 */

/* About and Contact */
.about-hero-pattern,
.contact-page-pattern,

/* Venues: listing, details and CTA */
.venues-hero-pattern,
.venues-cta-pattern,
.venue-details-pattern,
.venue-cta-pattern,

/* Event Types */
.events-pattern,
.event-details-pattern,
.event-cta-pattern,

/* Offers and Packages */
.offers-hero-pattern,
.offers-cta-pattern,
.package-hero-pattern,
.package-cta-pattern,

/* Facilities */
.facilities-hero-pattern,
.facilities-cta-pattern,
.facility-details-pattern,
.facility-details-cta-pattern,

/* Testimonials */
.testimonials-hero-pattern,
.testimonials-listing-pattern,

/* Homepage decorations */
.home-facilities-pattern,
.home-testimonials-decoration,
.home-contact-pattern,
.home-testimonial-guest::before {
    background-image: none !important;
}

/* =========== প্রতি পেজ এ ফিচারস ইমেজ এর /////////////// ডিজাইন বন্ধ করতে শেষ ====== */

/*
 * CCULB global branded keyboard focus.
 */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline-color: var(--brand-primary);
}

/*
 * CCULB branded selection color.
 */
::selection {
    color: var(--brand-secondary-dark);
    background: var(--brand-primary);
}

/*
 * Branded scrollbar for supported browsers.
 */
* {
    scrollbar-color:
        var(--brand-primary)
        var(--brand-secondary-soft);
}

::-webkit-scrollbar {
    width: 11px;
    height: 11px;
}

::-webkit-scrollbar-track {
    background: var(--brand-secondary-soft);
}

::-webkit-scrollbar-thumb {
    border: 3px solid var(--brand-secondary-soft);
    border-radius: 20px;
    background: var(--brand-primary-dark);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--brand-primary-hover);
}