/* =========================================================
   EKHAYA GUEST HOUSE
   CUSTOM OVERRIDE STYLES
   Place this file after the original template stylesheet.
========================================================= */


/* =========================================================
   BRAND VARIABLES
========================================================= */

:root {
    /* Main terracotta from the logo lettering */
    --ekhaya-primary: #b85f3f;
    --ekhaya-primary-dark: #873b2b;

    /* Strong burgundy contrast from the logo outlines */
    --ekhaya-secondary: #6f2530;
    --ekhaya-secondary-dark: #451820;

    /* Warm gold from the rondavel roof */
    --ekhaya-accent: #d6a73f;
    --ekhaya-accent-light: #f0cf72;

    /* Supporting backgrounds */
    --ekhaya-cream: #fff8e8;
    --ekhaya-soft: #f3e6cd;
    --ekhaya-white: #ffffff;

    /* Text colours */
    --ekhaya-dark: #33231f;
    --ekhaya-text: #6c5d56;

    --ekhaya-border: rgba(111, 37, 48, 0.14);

    --ekhaya-shadow-sm: 0 8px 25px rgba(69, 24, 32, 0.08);
    --ekhaya-shadow-md: 0 18px 45px rgba(69, 24, 32, 0.14);
    --ekhaya-shadow-lg: 0 25px 70px rgba(51, 35, 31, 0.22);

    --ekhaya-radius-sm: 10px;
    --ekhaya-radius-md: 18px;
    --ekhaya-radius-lg: 28px;
}

/* =========================================================
   GLOBAL EKHAYA PAGE
========================================================= */

body.home-page {
    background: var(--ekhaya-white);
    color: var(--ekhaya-text);
}

.home-page h1,
.home-page h2,
.home-page h3,
.home-page h4,
.home-page h5,
.home-page h6 {
    color: var(--ekhaya-dark);
    letter-spacing: -0.02em;
}

.home-page p {
    color: var(--ekhaya-text);
    line-height: 1.8;
}

.home-page section,
.home-page .section {
    overflow: hidden;
}

.min-vh-75 {
    min-height: 75vh;
}


/* =========================================================
   SHARED SECTION STYLES
========================================================= */

.ekhaya-section {
    position: relative;
    padding: 100px 0;
}

.ekhaya-section-heading {
    margin-bottom: 28px;
}

.ekhaya-section-heading h2 {
    max-width: 760px;
    margin: 10px 0 0;
    font-size: clamp(2rem, 4vw, 3.35rem);
    font-weight: 700;
    line-height: 1.12;
}

.ekhaya-section-heading p {
    max-width: 720px;
    margin: 20px auto 0;
    font-size: 17px;
}

.ekhaya-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--ekhaya-primary);
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.ekhaya-eyebrow::before {
    content: "";
    width: 34px;
    height: 2px;
    background: var(--ekhaya-accent);
}

.ekhaya-eyebrow-light {
    color: rgba(255, 255, 255, 0.88);
}

.ekhaya-eyebrow-light::before {
    background: var(--ekhaya-accent);
}


/* =========================================================
   BUTTONS
========================================================= */

.ekhaya-btn-primary,
.ekhaya-btn-outline,
.ekhaya-btn-light,
.ekhaya-btn-outline-light,
.ekhaya-btn-whatsapp {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.01em;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background-color 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease;
}

.ekhaya-btn-primary {
    color: var(--ekhaya-white);
    background: var(--ekhaya-primary);
    border: 2px solid var(--ekhaya-primary);
    box-shadow: 0 12px 30px rgba(184, 109, 63, 0.3);
}

.ekhaya-btn-primary:hover {
    color: var(--ekhaya-white);
    background: var(--ekhaya-primary-dark);
    border-color: var(--ekhaya-primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(184, 109, 63, 0.38);
}

.ekhaya-btn-outline {
    color: var(--ekhaya-white);
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(10px);
}

.ekhaya-btn-outline:hover {
    color: var(--ekhaya-dark);
    background: var(--ekhaya-white);
    border-color: var(--ekhaya-white);
    transform: translateY(-3px);
}

.ekhaya-btn-light {
    color: var(--ekhaya-secondary);
    background: var(--ekhaya-white);
    border: 2px solid var(--ekhaya-white);
}

.ekhaya-btn-light:hover {
    color: var(--ekhaya-primary-dark);
    background: var(--ekhaya-cream);
    border-color: var(--ekhaya-cream);
    transform: translateY(-3px);
}

.ekhaya-btn-outline-light {
    color: var(--ekhaya-white);
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.65);
}

.ekhaya-btn-outline-light:hover {
    color: var(--ekhaya-secondary);
    background: var(--ekhaya-white);
    border-color: var(--ekhaya-white);
    transform: translateY(-3px);
}

.ekhaya-btn-whatsapp {
    color: var(--ekhaya-white);
    background: #25d366;
    border: 2px solid #25d366;
}

.ekhaya-btn-whatsapp:hover {
    color: var(--ekhaya-white);
    background: #1dad52;
    border-color: #1dad52;
    transform: translateY(-3px);
}


/* =========================================================
   HERO
========================================================= */

.ekhaya-hero {
    position: relative;
    min-height: 780px;
    display: flex;
    align-items: center;
    padding: 130px 0 90px;
    background:
        linear-gradient(
            90deg,
            rgba(19, 31, 27, 0.88) 0%,
            rgba(19, 31, 27, 0.72) 45%,
            rgba(19, 31, 27, 0.24) 100%
        ),
        url("https://res.cloudinary.com/drxptswwq/image/upload/f_auto,q_auto:good,w_1920,c_limit,dpr_auto/v1784552057/hero_pymv9q.png") center center / cover no-repeat;
    isolation: isolate;
}

.ekhaya-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 180px;
    z-index: -1;
    background: linear-gradient(
        to top,
        rgba(14, 26, 22, 0.38),
        transparent
    );
}

.ekhaya-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(
            circle at 72% 30%,
            rgba(217, 173, 104, 0.16),
            transparent 34%
        );
}

.ekhaya-hero .container {
    z-index: 2;
}

.ekhaya-hero-content {
    max-width: 720px;
}

.ekhaya-hero h1 {
    max-width: 720px;
    margin: 20px 0 24px;
    color: var(--ekhaya-white);
    font-size: clamp(3rem, 6vw, 5.8rem);
    font-weight: 700;
    line-height: 0.98;
    letter-spacing: -0.045em;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.ekhaya-hero-lead {
    max-width: 650px;
    margin: 0;
    color: rgba(255, 255, 255, 0.87) !important;
    font-size: clamp(17px, 2vw, 21px);
    line-height: 1.7;
}

.ekhaya-hero-contact {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    color: rgba(255, 255, 255, 0.82);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.ekhaya-hero-contact i {
    color: var(--ekhaya-accent);
}

.ekhaya-hero-contact a {
    color: var(--ekhaya-white);
    font-weight: 700;
}

.ekhaya-hero-contact a:hover {
    color: var(--ekhaya-accent);
}


/* =========================================================
   QUICK INFORMATION STRIP
========================================================= */

.ekhaya-info-strip {
    position: relative;
    z-index: 5;
    margin-top: -52px;
    padding: 0;
    background: transparent;
}

.ekhaya-info-strip .container {
    overflow: hidden;
    background: var(--ekhaya-white);
    border-radius: var(--ekhaya-radius-md);
    box-shadow: var(--ekhaya-shadow-lg);
}

.ekhaya-info-item {
    min-height: 125px;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 28px 32px;
    border-right: 1px solid var(--ekhaya-border);
}

.ekhaya-info-strip .col-md-4:last-child .ekhaya-info-item {
    border-right: 0;
}

.ekhaya-info-icon {
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ekhaya-primary);
    background: rgba(184, 109, 63, 0.1);
    border-radius: 50%;
    font-size: 20px;
}

.ekhaya-info-item span {
    display: block;
    margin-bottom: 4px;
    color: #858c87;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ekhaya-info-item strong {
    display: block;
    color: var(--ekhaya-dark);
    font-size: 16px;
    line-height: 1.4;
}


/* =========================================================
   WELCOME SECTION
========================================================= */

.ekhaya-welcome-section {
    padding-top: 140px;
    background:
        radial-gradient(
            circle at 8% 18%,
            rgba(217, 173, 104, 0.12),
            transparent 24%
        ),
        var(--ekhaya-white);
}

.ekhaya-welcome-section p {
    font-size: 16px;
}

.ekhaya-image-frame {
    position: relative;
}

.ekhaya-image-frame::before {
    content: "";
    position: absolute;
    top: -22px;
    left: -22px;
    width: 130px;
    height: 130px;
    z-index: 0;
    border: 2px solid rgba(217, 173, 104, 0.46);
    border-radius: var(--ekhaya-radius-md);
}

.ekhaya-image-frame img {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 470px;
    display: block;
    object-fit: cover;
    border-radius: var(--ekhaya-radius-lg);
    box-shadow: var(--ekhaya-shadow-md);
}

.ekhaya-image-badge {
    position: absolute;
    right: -22px;
    bottom: 28px;
    z-index: 3;
    min-width: 230px;
    padding: 20px 24px;
    color: var(--ekhaya-white);
    background: var(--ekhaya-secondary);
    border-radius: var(--ekhaya-radius-md);
    box-shadow: var(--ekhaya-shadow-md);
}

.ekhaya-image-badge strong,
.ekhaya-image-badge span {
    display: block;
}

.ekhaya-image-badge strong {
    margin-bottom: 5px;
    font-size: 16px;
}

.ekhaya-image-badge span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
}

.ekhaya-text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    color: var(--ekhaya-primary);
    font-weight: 700;
}

.ekhaya-text-link i {
    transition: transform 0.3s ease;
}

.ekhaya-text-link:hover {
    color: var(--ekhaya-primary-dark);
}

.ekhaya-text-link:hover i {
    transform: translateX(6px);
}


/* =========================================================
   ACCOMMODATION SECTION
========================================================= */

.ekhaya-accommodation-section {
    background: var(--ekhaya-cream);
}

.ekhaya-room-card {
    height: 100%;
    overflow: hidden;
    background: var(--ekhaya-white);
    border: 1px solid rgba(49, 76, 67, 0.08);
    border-radius: var(--ekhaya-radius-md);
    box-shadow: var(--ekhaya-shadow-sm);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.ekhaya-room-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--ekhaya-shadow-md);
}

.ekhaya-room-image {
    position: relative;
    height: 270px;
    overflow: hidden;
}

.ekhaya-room-image::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 50%;
    background: linear-gradient(to top, rgba(20, 31, 27, 0.25), transparent);
}

.ekhaya-room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.65s ease;
}

.ekhaya-room-card:hover .ekhaya-room-image img {
    transform: scale(1.07);
}

.ekhaya-room-content {
    padding: 30px;
}

.ekhaya-room-label {
    display: inline-flex;
    margin-bottom: 15px;
    padding: 7px 13px;
    color: var(--ekhaya-primary-dark);
    background: rgba(184, 109, 63, 0.1);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.ekhaya-room-content h3 {
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: 700;
}

.ekhaya-room-content p {
    margin-bottom: 22px;
    font-size: 15px;
}

.ekhaya-room-features {
    margin: 0;
    padding: 22px 0 0;
    border-top: 1px solid var(--ekhaya-border);
    list-style: none;
}

.ekhaya-room-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 11px;
    color: var(--ekhaya-text);
    font-size: 14px;
}

.ekhaya-room-features li:last-child {
    margin-bottom: 0;
}

.ekhaya-room-features i {
    color: var(--ekhaya-primary);
    font-size: 17px;
}


/* =========================================================
   FACILITIES SECTION
========================================================= */

.ekhaya-facilities-section {
    background:
        linear-gradient(
            rgba(36, 58, 52, 0.97),
            rgba(36, 58, 52, 0.97)
        ),
        url("../img/ekhaya/facilities-bg.jpg") center / cover fixed;
}

.ekhaya-facilities-section .ekhaya-section-heading h2,
.ekhaya-facilities-section .ekhaya-section-heading p {
    color: var(--ekhaya-white);
}

.ekhaya-facilities-section .ekhaya-section-heading p {
    color: rgba(255, 255, 255, 0.7);
}

.ekhaya-feature-card {
    height: 100%;
    padding: 32px 28px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--ekhaya-radius-md);
    backdrop-filter: blur(10px);
    transition:
        transform 0.35s ease,
        background-color 0.35s ease,
        border-color 0.35s ease;
}

.ekhaya-feature-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.11);
    border-color: rgba(217, 173, 104, 0.55);
}

.ekhaya-feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    color: var(--ekhaya-secondary-dark);
    background: var(--ekhaya-accent);
    border-radius: 50%;
    font-size: 23px;
}

.ekhaya-feature-card h3 {
    margin-bottom: 12px;
    color: var(--ekhaya-white);
    font-size: 19px;
    font-weight: 700;
}

.ekhaya-feature-card p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.69);
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   BREAKFAST SECTION
========================================================= */

.ekhaya-breakfast-section {
    background: var(--ekhaya-white);
}

.ekhaya-breakfast-section .ekhaya-image-frame::before {
    top: auto;
    right: -22px;
    bottom: -22px;
    left: auto;
}

.ekhaya-breakfast-section .ekhaya-image-frame img {
    min-height: 520px;
}

.ekhaya-highlight-box {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-top: 30px;
    padding: 24px;
    background: var(--ekhaya-cream);
    border-left: 4px solid var(--ekhaya-accent);
    border-radius: 0 var(--ekhaya-radius-sm) var(--ekhaya-radius-sm) 0;
}

.ekhaya-highlight-box > i {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ekhaya-white);
    background: var(--ekhaya-secondary);
    border-radius: 50%;
}

.ekhaya-highlight-box strong,
.ekhaya-highlight-box span {
    display: block;
}

.ekhaya-highlight-box strong {
    margin-bottom: 5px;
    color: var(--ekhaya-dark);
    font-size: 15px;
}

.ekhaya-highlight-box span {
    color: var(--ekhaya-text);
    font-size: 14px;
    line-height: 1.6;
}


/* =========================================================
   LOCATION SECTION
========================================================= */

.ekhaya-location-section {
    background:
        radial-gradient(
            circle at 90% 20%,
            rgba(184, 109, 63, 0.08),
            transparent 25%
        ),
        var(--ekhaya-cream);
}

.ekhaya-location-list {
    margin: 35px 0 0;
    padding: 0;
    list-style: none;
}

.ekhaya-location-list li {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 20px 0;
    border-bottom: 1px solid var(--ekhaya-border);
}

.ekhaya-location-list li:first-child {
    padding-top: 0;
}

.ekhaya-location-list li:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.ekhaya-location-list li > i {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ekhaya-primary);
    background: rgba(184, 109, 63, 0.1);
    border-radius: 50%;
}

.ekhaya-location-list strong,
.ekhaya-location-list span {
    display: block;
}

.ekhaya-location-list strong {
    margin-bottom: 5px;
    color: var(--ekhaya-dark);
    font-size: 15px;
}

.ekhaya-location-list span {
    color: var(--ekhaya-text);
    font-size: 14px;
}

.ekhaya-map-wrapper {
    overflow: hidden;
    padding: 10px;
    background: var(--ekhaya-white);
    border-radius: var(--ekhaya-radius-lg);
    box-shadow: var(--ekhaya-shadow-md);
}

.ekhaya-map-wrapper iframe {
    display: block;
    border-radius: calc(var(--ekhaya-radius-lg) - 8px);
}


/* =========================================================
   GALLERY SECTION
========================================================= */

.ekhaya-gallery-section {
    background: var(--ekhaya-white);
}

.ekhaya-gallery-item {
    position: relative;
    height: 100%;
    min-height: 250px;
    display: block;
    overflow: hidden;
    border-radius: var(--ekhaya-radius-md);
    box-shadow: var(--ekhaya-shadow-sm);
}

.ekhaya-gallery-item::before {
    content: "\f62c";
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ekhaya-white);
    background: var(--ekhaya-primary);
    border-radius: 50%;
    font-family: "bootstrap-icons";
    font-size: 20px;
    opacity: 0;
    transform: translate(-50%, -40%);
    transition: all 0.35s ease;
}

.ekhaya-gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: rgba(26, 42, 36, 0.48);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.ekhaya-gallery-item:hover::before {
    opacity: 1;
    transform: translate(-50%, -50%);
}

.ekhaya-gallery-item:hover::after {
    opacity: 1;
}

.ekhaya-gallery-item img {
    width: 100%;
    height: 100%;
    min-height: 250px;
    display: block;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.ekhaya-gallery-item:hover img {
    transform: scale(1.08);
}

.ekhaya-gallery-section .col-md-6 .ekhaya-gallery-item,
.ekhaya-gallery-section .col-md-6 .ekhaya-gallery-item img {
    min-height: 360px;
}


/* =========================================================
   BOOKING CTA
========================================================= */

.ekhaya-booking-cta {
    position: relative;
    padding: 110px 0;
    color: var(--ekhaya-white);
    background:
        linear-gradient(
            rgba(31, 53, 46, 0.91),
            rgba(31, 53, 46, 0.91)
        ),
        url("../img/ekhaya/booking-cta.jpg") center / cover no-repeat;
}

.ekhaya-booking-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 50% 50%,
            rgba(217, 173, 104, 0.15),
            transparent 45%
        );
}

.ekhaya-booking-cta .container {
    position: relative;
    z-index: 2;
}

.ekhaya-booking-cta h2 {
    max-width: 850px;
    margin: 18px auto 20px;
    color: var(--ekhaya-white);
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.08;
}

.ekhaya-booking-cta p {
    max-width: 700px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.75);
    font-size: 17px;
}


/* =========================================================
   HEADER OVERRIDES
========================================================= */

.header {
    position: relative;
    padding: 12px 0;
    background:
        linear-gradient(
            135deg,
            rgba(255, 248, 232, 0.98),
            rgba(243, 230, 205, 0.96)
        );
    border-top: 4px solid var(--ekhaya-accent);
    border-bottom: 1px solid rgba(111, 37, 48, 0.14);
    box-shadow: 0 8px 28px rgba(69, 24, 32, 0.08);
    backdrop-filter: blur(16px);
}

.header::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(214, 167, 63, 0.7),
        transparent
    );
}

.header .logo {
    position: relative;
    z-index: 2;
}

.header .logo img {
    max-height: 78px;
    width: auto;
    transition:
        max-height 0.3s ease,
        transform 0.3s ease;
}

.header .logo:hover img {
    transform: translateY(-2px);
}

.scrolled .header {
    padding: 7px 0;
    background: rgba(255, 248, 232, 0.97);
    box-shadow: 0 12px 35px rgba(69, 24, 32, 0.14);
}

.scrolled .header .logo img {
    max-height: 64px;
}


/* =========================================================
   DESKTOP NAVIGATION
========================================================= */

@media (min-width: 1200px) {

    .navmenu > ul {
        gap: 5px;
    }

    .navmenu > ul > li {
        display: flex;
        align-items: center;
    }

    .navmenu > ul > li > a,
    .navmenu > ul > li > a:focus {
        position: relative;
        min-height: 46px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 12px 17px;
        color: var(--ekhaya-secondary);
        background: transparent;
        border: 1px solid transparent;
        border-radius: 50px;
        font-family: var(--nav-font);
        font-size: 14px;
        font-weight: 700;
        letter-spacing: 0.035em;
        line-height: 1;
        transition:
            color 0.3s ease,
            background-color 0.3s ease,
            border-color 0.3s ease,
            transform 0.3s ease,
            box-shadow 0.3s ease;
    }

    .navmenu > ul > li > a::after {
        display: none;
    }

    .navmenu > ul > li:not(.nav-call-item):hover > a {
        color: var(--ekhaya-primary-dark);
        background: rgba(184, 95, 63, 0.09);
        border-color: rgba(184, 95, 63, 0.14);
        transform: translateY(-2px);
    }

    .navmenu > ul > li:not(.nav-call-item) > a.active,
    .navmenu > ul > li:not(.nav-call-item) > a.active:focus {
        color: var(--ekhaya-white);
        background: var(--ekhaya-primary);
        border-color: var(--ekhaya-primary);
        box-shadow: 0 9px 22px rgba(184, 95, 63, 0.25);
    }

    .navmenu > ul > li:not(.nav-call-item) > a.active:hover {
        color: var(--ekhaya-white);
        background: var(--ekhaya-primary-dark);
        border-color: var(--ekhaya-primary-dark);
    }


    /* Phone CTA */

    .navmenu .nav-call-item {
        margin-left: 12px;
    }

    .navmenu .nav-call-item .nav-call-button,
    .navmenu .nav-call-item .nav-call-button:focus {
        min-height: 48px;
        gap: 9px;
        padding: 12px 20px;
        color: var(--ekhaya-secondary-dark);
        background: linear-gradient(
            135deg,
            var(--ekhaya-accent-light),
            var(--ekhaya-accent)
        );
        border: 1px solid rgba(111, 37, 48, 0.14);
        border-radius: 50px;
        box-shadow: 0 10px 24px rgba(214, 167, 63, 0.28);
    }

    .navmenu .nav-call-item .nav-call-button i {
        width: 28px;
        height: 28px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin: 0;
        color: var(--ekhaya-white);
        background: var(--ekhaya-secondary);
        border-radius: 50%;
        font-size: 12px;
    }

    .navmenu .nav-call-item .nav-call-button:hover {
        color: var(--ekhaya-white);
        background: var(--ekhaya-secondary);
        border-color: var(--ekhaya-secondary);
        transform: translateY(-2px);
        box-shadow: 0 13px 30px rgba(69, 24, 32, 0.25);
    }

    .navmenu .nav-call-item .nav-call-button:hover i {
        color: var(--ekhaya-secondary-dark);
        background: var(--ekhaya-accent);
    }
}


/* =========================================================
   MOBILE NAVIGATION
========================================================= */

@media (max-width: 1199px) {

    /*
     * Important:
     * backdrop-filter can trap fixed children inside the header.
     */
    .header {
        padding: 9px 0;
        z-index: 9999;

        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    .header .site-inner,
    .header .container-fluid,
    .header .container-xl {
        overflow: visible !important;
    }

    .header .logo img {
        max-height: 64px;
    }

    /*
     * Hamburger button
     */
    .mobile-nav-toggle {
        position: relative;
        z-index: 10003;

        width: 46px;
        height: 46px;
        flex: 0 0 46px;

        display: flex;
        align-items: center;
        justify-content: center;

        margin: 0;

        color: var(--ekhaya-white);
        background: var(--ekhaya-secondary);

        border: 2px solid rgba(214, 167, 63, 0.55);
        border-radius: 50%;

        font-size: 25px;
        line-height: 1;

        cursor: pointer;

        box-shadow: 0 8px 20px rgba(69, 24, 32, 0.2);

        transition:
            color 0.3s ease,
            background-color 0.3s ease,
            border-color 0.3s ease;
    }

    /*
     * Normal closed navigation state
     */
    .navmenu {
        position: static;
        padding: 0;
        z-index: 10000;
    }

    .navmenu > ul {
        display: none !important;
    }

    /*
     * Open mobile navigation overlay
     */
    body.mobile-nav-active {
        overflow: hidden !important;
    }

    body.mobile-nav-active .navmenu {
        position: fixed !important;

        top: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        left: 0 !important;

        width: 100vw !important;
        height: 100vh !important;
        height: 100dvh !important;

        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;

        padding: 0 !important;
        margin: 0 !important;

        overflow: hidden !important;

        background: rgba(51, 35, 31, 0.88) !important;

        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);

        z-index: 10000 !important;
    }

    /*
     * Visible white menu panel
     */
    body.mobile-nav-active .navmenu > ul {
        position: absolute !important;

        top: 88px !important;
        right: 18px !important;
        bottom: 20px !important;
        left: 18px !important;

        width: auto !important;
        height: auto !important;

        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;

        margin: 0 !important;
        padding: 18px !important;

        overflow-x: hidden !important;
        overflow-y: auto !important;

        list-style: none !important;

        background:
            linear-gradient(
                145deg,
                var(--ekhaya-white),
                var(--ekhaya-cream)
            ) !important;

        border: 1px solid rgba(111, 37, 48, 0.14) !important;
        border-radius: var(--ekhaya-radius-md) !important;

        box-shadow:
            0 25px 60px rgba(51, 35, 31, 0.35) !important;

        z-index: 10001 !important;
    }

    /*
     * Navigation list items
     */
    body.mobile-nav-active .navmenu > ul > li {
        position: relative;
        display: block;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    /*
     * Navigation links
     */
    body.mobile-nav-active .navmenu > ul > li > a,
    body.mobile-nav-active .navmenu > ul > li > a:focus {
        width: 100%;
        min-height: 50px;

        display: flex;
        align-items: center;
        justify-content: space-between;

        margin: 0 0 6px;
        padding: 13px 16px;

        color: var(--ekhaya-secondary) !important;
        background: transparent;

        border-radius: 12px;

        font-family: var(--nav-font);
        font-size: 16px;
        font-weight: 700;
        line-height: 1.4;

        white-space: normal;
    }

    body.mobile-nav-active .navmenu > ul > li > a:hover,
    body.mobile-nav-active .navmenu > ul > li > a.active,
    body.mobile-nav-active .navmenu > ul > li > a.active:focus {
        color: var(--ekhaya-white) !important;
        background: var(--ekhaya-primary) !important;
    }

    /*
     * Call button
     */
    body.mobile-nav-active .navmenu .nav-call-item {
        margin-top: 14px;
        padding-top: 16px;
        border-top: 1px solid var(--ekhaya-border);
    }

    body.mobile-nav-active .navmenu .nav-call-item .nav-call-button,
    body.mobile-nav-active .navmenu .nav-call-item .nav-call-button:focus {
        min-height: 52px;

        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;

        color: var(--ekhaya-secondary-dark) !important;

        background:
            linear-gradient(
                135deg,
                var(--ekhaya-accent-light),
                var(--ekhaya-accent)
            ) !important;

        border-radius: 50px;
    }

    body.mobile-nav-active .navmenu .nav-call-item .nav-call-button:hover {
        color: var(--ekhaya-white) !important;
        background: var(--ekhaya-secondary) !important;
    }

    /*
     * Keep the close button above the overlay
     */
    body.mobile-nav-active .mobile-nav-toggle {
        position: fixed !important;

        top: 20px !important;
        right: 20px !important;

        width: 46px;
        height: 46px;

        margin: 0 !important;

        color: var(--ekhaya-white) !important;
        background: var(--ekhaya-primary) !important;

        border-color: var(--ekhaya-accent) !important;

        font-size: 30px;

        z-index: 10004 !important;
    }

    /*
     * Phone icon inside the call button
     */
    body.mobile-nav-active .navmenu .nav-call-button i {
        width: 28px;
        height: 28px;

        display: inline-flex;
        align-items: center;
        justify-content: center;

        margin: 0;

        color: var(--ekhaya-white);
        background: var(--ekhaya-secondary);

        border-radius: 50%;

        font-size: 12px;
    }
}


/* =========================================================
   FOOTER OVERRIDES
========================================================= */

.footer {
    padding: 75px 0 35px;
    color: rgba(255, 255, 255, 0.72);
    background: var(--ekhaya-secondary-dark);
    border-top: 0;
}

.footer h1,
.footer h2,
.footer h3,
.footer h4,
.footer h5,
.footer h6,
.footer .widget .widget-heading {
    color: var(--ekhaya-white);
}

.footer p,
.footer li {
    color: rgba(255, 255, 255, 0.7);
}

.footer a {
    color: rgba(255, 255, 255, 0.75) !important;
}

.footer a:hover {
    color: var(--ekhaya-accent) !important;
}

.footer .copyright {
    border-top-color: rgba(255, 255, 255, 0.12);
}

.footer .social-icons li a {
    background: rgba(255, 255, 255, 0.09);
}

.footer .social-icons li a:hover {
    background: var(--ekhaya-primary);
}


/* =========================================================
   SCROLL TO TOP
========================================================= */

.scroll-top {
    right: 22px;
    bottom: 22px;
    width: 46px;
    height: 46px;
    background: var(--ekhaya-primary);
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(184, 109, 63, 0.3);
}

.scroll-top:hover {
    background: var(--ekhaya-primary-dark);
}


/* =========================================================
   RESPONSIVE STYLES
========================================================= */

@media (max-width: 1199px) {
    .ekhaya-hero {
        min-height: 700px;
        padding-top: 110px;
    }

    .ekhaya-section {
        padding: 85px 0;
    }

    .ekhaya-info-item {
        padding: 24px;
    }
}

@media (max-width: 991px) {
    .ekhaya-hero {
        min-height: 680px;
        background-position: 62% center;
    }

    .ekhaya-hero h1 {
        max-width: 650px;
    }

    .ekhaya-info-strip {
        margin-top: -35px;
    }

    .ekhaya-info-item {
        min-height: 110px;
    }

    .ekhaya-welcome-section {
        padding-top: 110px;
    }

    .ekhaya-image-frame img,
    .ekhaya-breakfast-section .ekhaya-image-frame img {
        min-height: 430px;
    }

    .ekhaya-image-badge {
        right: 20px;
    }

    .ekhaya-gallery-section .col-md-6 .ekhaya-gallery-item,
    .ekhaya-gallery-section .col-md-6 .ekhaya-gallery-item img {
        min-height: 300px;
    }
}

@media (max-width: 767px) {
    .ekhaya-section {
        padding: 70px 0;
    }

    .ekhaya-section-heading h2 {
        font-size: 2.15rem;
    }

    .ekhaya-hero {
        min-height: 700px;
        padding: 105px 0 90px;
        background:
            linear-gradient(
                rgba(19, 31, 27, 0.82),
                rgba(19, 31, 27, 0.72)
            ),
            url("../img/ekhaya/hero.jpg") 62% center / cover no-repeat;
    }

    .ekhaya-hero h1 {
        font-size: 3.35rem;
    }

    .ekhaya-hero-contact {
        width: 100%;
        justify-content: center;
        border-radius: var(--ekhaya-radius-sm);
    }

    .ekhaya-info-strip {
        margin-top: 0;
        background: var(--ekhaya-white);
    }

    .ekhaya-info-strip .container {
        border-radius: 0;
        box-shadow: none;
    }

    .ekhaya-info-item {
        min-height: auto;
        padding: 24px 10px;
        border-right: 0;
        border-bottom: 1px solid var(--ekhaya-border);
    }

    .ekhaya-info-strip .col-md-4:last-child .ekhaya-info-item {
        border-bottom: 0;
    }

    .ekhaya-welcome-section {
        padding-top: 75px;
    }

    .ekhaya-image-frame::before {
        display: none;
    }

    .ekhaya-image-frame img,
    .ekhaya-breakfast-section .ekhaya-image-frame img {
        min-height: 360px;
        border-radius: var(--ekhaya-radius-md);
    }

    .ekhaya-image-badge {
        right: 15px;
        bottom: 15px;
        left: 15px;
        min-width: 0;
    }

    .ekhaya-room-image {
        height: 245px;
    }

    .ekhaya-feature-card {
        padding: 27px 24px;
    }

    .ekhaya-map-wrapper iframe {
        height: 370px;
    }

    .ekhaya-gallery-item,
    .ekhaya-gallery-item img,
    .ekhaya-gallery-section .col-md-6 .ekhaya-gallery-item,
    .ekhaya-gallery-section .col-md-6 .ekhaya-gallery-item img {
        min-height: 250px;
    }

    .ekhaya-booking-cta {
        padding: 80px 0;
    }
}

@media (max-width: 575px) {
    .ekhaya-hero {
        min-height: 660px;
    }

    .ekhaya-hero h1 {
        font-size: 2.85rem;
    }

    .ekhaya-hero-lead {
        font-size: 16px;
    }

    .ekhaya-btn-primary,
    .ekhaya-btn-outline,
    .ekhaya-btn-light,
    .ekhaya-btn-outline-light,
    .ekhaya-btn-whatsapp {
        width: 100%;
    }

    .ekhaya-section-heading h2 {
        font-size: 1.95rem;
    }

    .ekhaya-room-content {
        padding: 25px;
    }

    .ekhaya-location-list li {
        gap: 14px;
    }

    .ekhaya-map-wrapper {
        padding: 6px;
        border-radius: var(--ekhaya-radius-md);
    }

    .ekhaya-map-wrapper iframe {
        height: 320px;
    }

    .ekhaya-gallery-item,
    .ekhaya-gallery-item img,
    .ekhaya-gallery-section .col-md-6 .ekhaya-gallery-item,
    .ekhaya-gallery-section .col-md-6 .ekhaya-gallery-item img {
        min-height: 210px;
    }
}


/* =========================================================
   ABOUT PAGE
========================================================= */


/* =========================================================
   ABOUT PAGE HERO
========================================================= */

.ekhaya-page-hero {
    position: relative;
    overflow: hidden;
    padding: 150px 0 110px;
    background:
        linear-gradient(
            135deg,
            rgba(36, 58, 52, 0.97),
            rgba(49, 76, 67, 0.92)
        );
}

.ekhaya-page-hero::before {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    top: -180px;
    right: -120px;
    border-radius: 50%;
    background: rgba(217, 173, 104, 0.12);
}

.ekhaya-page-hero::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    bottom: -190px;
    left: -100px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.ekhaya-page-hero .container {
    position: relative;
    z-index: 2;
}

.ekhaya-page-hero .ekhaya-eyebrow {
    justify-content: center;
    color: var(--ekhaya-accent);
}

.ekhaya-page-hero h1 {
    max-width: 850px;
    margin: 18px auto 20px;
    color: var(--ekhaya-white);
    font-size: clamp(2.6rem, 6vw, 5rem);
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -0.04em;
}

.ekhaya-page-hero p {
    max-width: 720px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.1rem;
    line-height: 1.8;
}


/* =========================================================
   GENERAL ABOUT PAGE SECTIONS
========================================================= */

.ekhaya-about-story-section,
.ekhaya-host-section,
.ekhaya-experience-section,
.ekhaya-location-section {
    position: relative;
}

.ekhaya-about-story-section {
    background: var(--ekhaya-white);
}

.ekhaya-host-section {
    background: var(--ekhaya-cream);
}

.ekhaya-experience-section {
    background: var(--ekhaya-white);
}

.ekhaya-location-section {
    background: var(--ekhaya-soft);
}

.ekhaya-about-story-section p,
.ekhaya-host-section p,
.ekhaya-location-section p {
    color: var(--ekhaya-text);
    font-size: 1rem;
    line-height: 1.85;
    margin-bottom: 18px;
}


/* =========================================================
   IMAGE FRAMES
========================================================= */

.ekhaya-about-story-section .ekhaya-image-frame,
.ekhaya-host-section .ekhaya-image-frame,
.ekhaya-location-section .ekhaya-image-frame {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    box-shadow: var(--ekhaya-shadow-md);
    background: var(--ekhaya-soft);
}

.ekhaya-about-story-section .ekhaya-image-frame img,
.ekhaya-host-section .ekhaya-image-frame img,
.ekhaya-location-section .ekhaya-image-frame img {
    width: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.ekhaya-about-story-section .ekhaya-image-frame img {
    aspect-ratio: 4 / 3;
}

.ekhaya-host-section .ekhaya-image-frame img {
    aspect-ratio: 4 / 5;
}

.ekhaya-location-section .ekhaya-image-frame img {
    aspect-ratio: 4 / 3;
}

.ekhaya-about-story-section .ekhaya-image-frame:hover img,
.ekhaya-host-section .ekhaya-image-frame:hover img,
.ekhaya-location-section .ekhaya-image-frame:hover img {
    transform: scale(1.04);
}

.ekhaya-about-story-section .ekhaya-image-badge {
    position: absolute;
    right: 24px;
    bottom: 24px;
    max-width: 230px;
    padding: 17px 20px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--ekhaya-shadow-sm);
}

.ekhaya-about-story-section .ekhaya-image-badge strong,
.ekhaya-about-story-section .ekhaya-image-badge span {
    display: block;
}

.ekhaya-about-story-section .ekhaya-image-badge strong {
    color: var(--ekhaya-secondary);
    font-size: 1rem;
    margin-bottom: 3px;
}

.ekhaya-about-story-section .ekhaya-image-badge span {
    color: var(--ekhaya-text);
    font-size: 0.84rem;
}


/* =========================================================
   HOST FEATURES
========================================================= */

.ekhaya-small-feature {
    height: 100%;
    display: flex;
    gap: 16px;
    padding: 22px;
    border: 1px solid var(--ekhaya-border);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: var(--ekhaya-shadow-sm);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.ekhaya-small-feature:hover {
    transform: translateY(-5px);
    border-color: rgba(184, 109, 63, 0.28);
    box-shadow: var(--ekhaya-shadow-md);
}

.ekhaya-small-feature > i {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: var(--ekhaya-white);
    background: var(--ekhaya-primary);
    font-size: 1.25rem;
}

.ekhaya-small-feature h3 {
    margin: 0 0 7px;
    color: var(--ekhaya-secondary-dark);
    font-size: 1.05rem;
    font-weight: 700;
}

.ekhaya-small-feature p {
    margin: 0;
    color: var(--ekhaya-text);
    font-size: 0.92rem;
    line-height: 1.65;
}


/* =========================================================
   EXPERIENCE CARDS
========================================================= */

.ekhaya-feature-card {
    height: 100%;
    padding: 32px 28px;
    border: 1px solid var(--ekhaya-border);
    border-radius: 22px;
    background: var(--ekhaya-white);
    box-shadow: var(--ekhaya-shadow-sm);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.ekhaya-feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(184, 109, 63, 0.25);
    box-shadow: var(--ekhaya-shadow-md);
}

.ekhaya-icon-bubble {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    border-radius: 18px;
    color: var(--ekhaya-primary-dark);
    background: rgba(217, 173, 104, 0.22);
    font-size: 1.45rem;
}

.ekhaya-feature-card h3 {
    margin: 0 0 12px;
    color: var(--ekhaya-secondary-dark);
    font-size: 1.25rem;
    font-weight: 700;
}

.ekhaya-feature-card p {
    margin: 0;
    color: var(--ekhaya-text);
    font-size: 0.96rem;
    line-height: 1.75;
}


/* =========================================================
   LOCATION LIST
========================================================= */

.ekhaya-location-list {
    list-style: none;
    margin: 28px 0 0;
    padding: 0;
}

.ekhaya-location-list li {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(49, 76, 67, 0.1);
}

.ekhaya-location-list li:last-child {
    border-bottom: 0;
}

.ekhaya-location-list i {
    margin-top: 3px;
    color: var(--ekhaya-primary);
    font-size: 1.15rem;
}

.ekhaya-location-list span {
    color: var(--ekhaya-dark);
    line-height: 1.65;
}


/* =========================================================
   ABOUT GALLERY
========================================================= */

.ekhaya-gallery-section {
    background: var(--ekhaya-white);
}

.ekhaya-gallery-item {
    position: relative;
    display: block;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
    background: var(--ekhaya-soft);
    box-shadow: var(--ekhaya-shadow-sm);
}

.ekhaya-gallery-item::after {
    content: "\F52A";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    opacity: 0;
    transform: translate(-50%, -40%);
    color: var(--ekhaya-white);
    background: rgba(49, 76, 67, 0.88);
    font-family: "bootstrap-icons";
    font-size: 1.25rem;
    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}

.ekhaya-gallery-item img {
    width: 100%;
    height: 100%;
    min-height: 250px;
    display: block;
    object-fit: cover;
    transition:
        transform 0.5s ease,
        filter 0.5s ease;
}

.ekhaya-gallery-item:hover img {
    transform: scale(1.06);
    filter: brightness(0.78);
}

.ekhaya-gallery-item:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%);
}

.ekhaya-gallery-section .col-md-6 .ekhaya-gallery-item img {
    min-height: 360px;
}

.ekhaya-gallery-section .col-md-3 .ekhaya-gallery-item img {
    min-height: 250px;
}


/* =========================================================
   ABOUT CTA
========================================================= */

.ekhaya-cta-section {
    padding: 0 0 100px;
    background: var(--ekhaya-white);
}

.ekhaya-cta-box {
    position: relative;
    overflow: hidden;
    padding: 54px 56px;
    border-radius: 28px;
    background:
        linear-gradient(
            135deg,
            var(--ekhaya-secondary-dark),
            var(--ekhaya-secondary)
        );
    box-shadow: var(--ekhaya-shadow-md);
}

.ekhaya-cta-box::before {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    top: -130px;
    right: -70px;
    border-radius: 50%;
    background: rgba(217, 173, 104, 0.14);
}

.ekhaya-cta-box::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    bottom: -120px;
    left: 35%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
}

.ekhaya-cta-box .row {
    position: relative;
    z-index: 2;
}

.ekhaya-cta-box h2 {
    margin: 14px 0 12px;
    color: var(--ekhaya-white);
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.12;
}

.ekhaya-cta-box p {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 1rem;
    line-height: 1.75;
}

.ekhaya-cta-box .ekhaya-eyebrow-light {
    color: var(--ekhaya-accent);
}

.ekhaya-btn-light {
    padding: 13px 22px;
    border: 1px solid var(--ekhaya-white);
    border-radius: 999px;
    color: var(--ekhaya-secondary-dark);
    background: var(--ekhaya-white);
    font-weight: 700;
    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;
}

.ekhaya-btn-light:hover {
    transform: translateY(-2px);
    color: var(--ekhaya-secondary-dark);
    background: var(--ekhaya-cream);
    border-color: var(--ekhaya-cream);
}

.ekhaya-btn-outline-light {
    padding: 13px 22px;
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 999px;
    color: var(--ekhaya-white);
    background: transparent;
    font-weight: 700;
    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;
}

.ekhaya-btn-outline-light:hover {
    transform: translateY(-2px);
    color: var(--ekhaya-secondary-dark);
    background: var(--ekhaya-accent);
    border-color: var(--ekhaya-accent);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1199px) {

    .ekhaya-page-hero {
        padding: 130px 0 95px;
    }

    .ekhaya-cta-box {
        padding: 48px 42px;
    }

}

@media (max-width: 991px) {

    .ekhaya-page-hero {
        padding: 115px 0 85px;
    }

    .ekhaya-host-section .order-lg-2 {
        margin-bottom: 10px;
    }

    .ekhaya-cta-box {
        padding: 42px 34px;
    }

    .ekhaya-gallery-section .col-md-6 .ekhaya-gallery-item img,
    .ekhaya-gallery-section .col-md-3 .ekhaya-gallery-item img {
        min-height: 280px;
    }

}

@media (max-width: 767px) {

    .ekhaya-page-hero {
        padding: 95px 0 70px;
    }

    .ekhaya-page-hero h1 {
        font-size: 2.55rem;
    }

    .ekhaya-page-hero p {
        font-size: 1rem;
    }

    .ekhaya-about-story-section .ekhaya-image-badge {
        right: 14px;
        bottom: 14px;
        max-width: 210px;
        padding: 14px 16px;
    }

    .ekhaya-feature-card {
        padding: 27px 24px;
    }

    .ekhaya-small-feature {
        padding: 19px;
    }

    .ekhaya-gallery-item img,
    .ekhaya-gallery-section .col-md-6 .ekhaya-gallery-item img,
    .ekhaya-gallery-section .col-md-3 .ekhaya-gallery-item img {
        min-height: 230px;
    }

    .ekhaya-cta-section {
        padding-bottom: 70px;
    }

    .ekhaya-cta-box {
        padding: 36px 25px;
        border-radius: 22px;
    }

    .ekhaya-cta-box .btn {
        width: 100%;
        margin-right: 0 !important;
    }

}

@media (max-width: 575px) {

    .ekhaya-page-hero {
        padding: 85px 0 60px;
    }

    .ekhaya-page-hero h1 {
        font-size: 2.15rem;
    }

    .ekhaya-page-hero .ekhaya-eyebrow {
        justify-content: flex-start;
    }

    .ekhaya-page-hero .text-center {
        text-align: left !important;
    }

    .ekhaya-page-hero p {
        margin-left: 0;
    }

    .ekhaya-about-story-section .ekhaya-image-frame,
    .ekhaya-host-section .ekhaya-image-frame,
    .ekhaya-location-section .ekhaya-image-frame,
    .ekhaya-gallery-item {
        border-radius: 17px;
    }

    .ekhaya-about-story-section .ekhaya-image-badge {
        position: relative;
        right: auto;
        bottom: auto;
        max-width: none;
        margin: -30px 14px 14px;
    }

    .ekhaya-small-feature {
        flex-direction: column;
    }

    .ekhaya-gallery-item img,
    .ekhaya-gallery-section .col-md-6 .ekhaya-gallery-item img,
    .ekhaya-gallery-section .col-md-3 .ekhaya-gallery-item img {
        min-height: 190px;
    }

    .ekhaya-cta-box h2 {
        font-size: 2rem;
    }

}

/* =========================================================
   ACCOMMODATION & RATES PAGE
========================================================= */


/* =========================================================
   INTRO SECTION
========================================================= */

.ekhaya-accommodation-intro{
    background: var(--ekhaya-white);
}


/* =========================================================
   ROOMS
========================================================= */

.ekhaya-room-options-section{
    background: var(--ekhaya-cream);
}

.ekhaya-room-image{
    position: relative;
    overflow: hidden;
}

.ekhaya-room-image img{
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: transform .45s ease;
}

.ekhaya-room-card:hover .ekhaya-room-image img{
    transform: scale(1.05);
}

.ekhaya-room-image-label{
    position: absolute;
    top: 18px;
    right: 18px;

    padding: 8px 14px;

    border-radius: 999px;

    background: rgba(49,76,67,.92);

    color: #fff;

    font-size: .78rem;

    font-weight: 600;

    letter-spacing: .05em;

    text-transform: uppercase;
}


/* =========================================================
   RATES
========================================================= */

.ekhaya-rates-section{
    background: var(--ekhaya-white);
}

.ekhaya-rates-card{

    overflow: hidden;

    border-radius: 24px;

    background: #fff;

    box-shadow: var(--ekhaya-shadow-md);

}

.ekhaya-rate-row{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:20px;

    padding:28px 34px;

    border-bottom:1px solid var(--ekhaya-border);

    transition:
        background .3s,
        transform .3s;

}

.ekhaya-rate-row:last-child{
    border-bottom:none;
}

.ekhaya-rate-row:hover{

    background:var(--ekhaya-soft);

}

.ekhaya-rate-row-featured{

    background:rgba(217,173,104,.12);

}

.ekhaya-rate-name{

    display:flex;

    align-items:center;

    gap:18px;

}

.ekhaya-rate-icon{

    width:58px;

    height:58px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:18px;

    background:rgba(184,109,63,.12);

    color:var(--ekhaya-primary);

    font-size:1.45rem;

}

.ekhaya-rate-name h3{

    margin:0;

    font-size:1.15rem;

    color:var(--ekhaya-secondary-dark);

}

.ekhaya-rate-name p{

    margin:5px 0 0;

    color:var(--ekhaya-text);

    font-size:.9rem;

}

.ekhaya-rate-price{

    text-align:right;

}

.ekhaya-rate-price span{

    display:block;

    color:var(--ekhaya-primary-dark);

    font-size:2rem;

    font-weight:700;

    line-height:1;

}

.ekhaya-rate-price small{

    color:var(--ekhaya-text);

    text-transform:uppercase;

    letter-spacing:.08em;

}


/* =========================================================
   RATE NOTE
========================================================= */

.ekhaya-rate-note{

    display:flex;

    gap:16px;

    margin-top:32px;

    padding:22px;

    border-radius:18px;

    background:rgba(217,173,104,.12);

}

.ekhaya-rate-note i{

    color:var(--ekhaya-primary);

    font-size:1.5rem;

}

.ekhaya-rate-note strong{

    display:block;

    margin-bottom:5px;

    color:var(--ekhaya-secondary-dark);

}

.ekhaya-rate-note span{

    color:var(--ekhaya-text);

    line-height:1.7;

}


/* =========================================================
   FACILITIES
========================================================= */

.ekhaya-room-facilities-section{

    background:var(--ekhaya-soft);

}


/* =========================================================
   BREAKFAST
========================================================= */

.ekhaya-breakfast-section{

    background:var(--ekhaya-white);

}


/* =========================================================
   BOOKING INFO
========================================================= */

.ekhaya-booking-info-section{

    background:var(--ekhaya-cream);

}

.ekhaya-booking-info-box{

    padding:50px;

    border-radius:28px;

    background:#fff;

    box-shadow:var(--ekhaya-shadow-md);

}

.ekhaya-booking-contact-list{

    list-style:none;

    margin:0;

    padding:0;

}

.ekhaya-booking-contact-list li{

    display:flex;

    align-items:center;

    gap:14px;

    margin-bottom:18px;

}

.ekhaya-booking-contact-list li:last-child{

    margin-bottom:0;

}

.ekhaya-booking-contact-list i{

    width:42px;

    height:42px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:rgba(184,109,63,.12);

    color:var(--ekhaya-primary);

}

.ekhaya-booking-contact-list a{

    color:var(--ekhaya-secondary-dark);

    font-weight:600;

    text-decoration:none;

    transition:.3s;

}

.ekhaya-booking-contact-list a:hover{

    color:var(--ekhaya-primary);

}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width:991px){

    .ekhaya-rate-row{

        flex-direction:column;

        align-items:flex-start;

    }

    .ekhaya-rate-price{

        width:100%;

        text-align:left;

    }

    .ekhaya-booking-info-box{

        padding:38px;

    }

}

@media (max-width:767px){

    .ekhaya-rate-row{

        padding:22px;

    }

    .ekhaya-rate-name{

        gap:14px;

    }

    .ekhaya-rate-icon{

        width:48px;

        height:48px;

        font-size:1.2rem;

    }

    .ekhaya-rate-price span{

        font-size:1.65rem;

    }

    .ekhaya-booking-info-box{

        padding:28px;

        border-radius:20px;

    }

}

/* =========================================================
   CONTACT PAGE
========================================================= */


/* =========================================================
   CONTACT SECTION
========================================================= */

.ekhaya-contact-section {
    position: relative;
    background: var(--ekhaya-white);
}

.ekhaya-contact-section .ekhaya-section-heading p {
    max-width: 610px;
}


/* =========================================================
   CONTACT DETAILS
========================================================= */

.ekhaya-contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 34px;
}

.ekhaya-contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 22px;
    border: 1px solid var(--ekhaya-border);
    border-radius: 20px;
    background: var(--ekhaya-cream);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.ekhaya-contact-detail:hover {
    transform: translateY(-4px);
    border-color: rgba(184, 109, 63, 0.26);
    box-shadow: var(--ekhaya-shadow-sm);
}

.ekhaya-contact-icon {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    color: var(--ekhaya-white);
    background: var(--ekhaya-primary);
    font-size: 1.3rem;
}

.ekhaya-contact-detail span {
    display: block;
    margin-bottom: 4px;
    color: var(--ekhaya-primary);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ekhaya-contact-detail h3 {
    margin: 0 0 8px;
    color: var(--ekhaya-secondary-dark);
    font-size: 1.08rem;
    font-weight: 700;
}

.ekhaya-contact-detail p {
    margin: 0;
    color: var(--ekhaya-text);
    line-height: 1.7;
}

.ekhaya-contact-detail p + p {
    margin-top: 4px;
}

.ekhaya-contact-detail a {
    color: var(--ekhaya-secondary-dark);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.25s ease;
}

.ekhaya-contact-detail a:hover {
    color: var(--ekhaya-primary);
}


/* =========================================================
   CONTACT NOTE
========================================================= */

.ekhaya-contact-note {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-top: 24px;
    padding: 22px;
    border: 1px solid rgba(217, 173, 104, 0.35);
    border-radius: 20px;
    background: rgba(217, 173, 104, 0.13);
}

.ekhaya-contact-note-icon {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: var(--ekhaya-primary-dark);
    background: rgba(255, 255, 255, 0.72);
    font-size: 1.2rem;
}

.ekhaya-contact-note strong {
    display: block;
    margin-bottom: 5px;
    color: var(--ekhaya-secondary-dark);
    font-size: 1rem;
}

.ekhaya-contact-note p {
    margin: 0;
    color: var(--ekhaya-text);
    font-size: 0.94rem;
    line-height: 1.7;
}


/* =========================================================
   CONTACT FORM CARD
========================================================= */

.ekhaya-contact-form-card {
    position: relative;
    padding: 42px;
    border: 1px solid var(--ekhaya-border);
    border-radius: 28px;
    background: var(--ekhaya-cream);
    box-shadow: var(--ekhaya-shadow-md);
}

.ekhaya-contact-form-card::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    top: -70px;
    right: -60px;
    border-radius: 50%;
    background: rgba(217, 173, 104, 0.15);
    pointer-events: none;
}

.ekhaya-contact-form-heading {
    position: relative;
    z-index: 2;
    margin-bottom: 30px;
}

.ekhaya-contact-form-heading h2 {
    margin: 12px 0 10px;
    color: var(--ekhaya-secondary-dark);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
}

.ekhaya-contact-form-heading p {
    margin: 0;
    color: var(--ekhaya-text);
    line-height: 1.75;
}

.ekhaya-contact-form {
    position: relative;
    z-index: 2;
}


/* =========================================================
   FORM CONTROLS
========================================================= */

.ekhaya-contact-form .form-floating {
    position: relative;
}

.ekhaya-contact-form .form-control {
    min-height: 62px;
    border: 1px solid rgba(49, 76, 67, 0.16);
    border-radius: 15px;
    color: var(--ekhaya-dark);
    background: var(--ekhaya-white);
    box-shadow: none;
    font-size: 0.98rem;
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.ekhaya-contact-form .form-control:hover {
    border-color: rgba(184, 109, 63, 0.38);
}

.ekhaya-contact-form .form-control:focus {
    border-color: var(--ekhaya-primary);
    background: var(--ekhaya-white);
    box-shadow: 0 0 0 4px rgba(184, 109, 63, 0.12);
}

.ekhaya-contact-form .form-floating > label {
    padding-left: 17px;
    color: var(--ekhaya-text);
}

.ekhaya-contact-form .form-floating > .form-control:focus ~ label,
.ekhaya-contact-form .form-floating > .form-control:not(:placeholder-shown) ~ label {
    color: var(--ekhaya-primary-dark);
}

.ekhaya-contact-form .ekhaya-message-field {
    min-height: 170px;
    resize: vertical;
}

.ekhaya-contact-form .form-control.is-invalid {
    border-color: #b94a48;
    background-image: none;
}

.ekhaya-contact-form .form-control.is-invalid:focus {
    border-color: #b94a48;
    box-shadow: 0 0 0 4px rgba(185, 74, 72, 0.12);
}

.ekhaya-contact-form .invalid-feedback {
    padding-left: 4px;
    color: #a43f3d;
    font-size: 0.84rem;
}


/* =========================================================
   RECAPTCHA
========================================================= */

.ekhaya-recaptcha-wrapper {
    overflow: hidden;
    padding: 18px;
    border: 1px solid var(--ekhaya-border);
    border-radius: 16px;
    background: var(--ekhaya-white);
}

.ekhaya-recaptcha-wrapper .g-recaptcha {
    width: fit-content;
    max-width: 100%;
}

.ekhaya-recaptcha-wrapper iframe {
    max-width: 100%;
}


/* =========================================================
   SUBMIT BUTTON
========================================================= */

.ekhaya-contact-submit {
    min-width: 190px;
    padding: 14px 25px;
    border-radius: 999px;
    font-weight: 700;
}

.ekhaya-contact-submit i {
    transition: transform 0.25s ease;
}

.ekhaya-contact-submit:hover i {
    transform: translateX(4px);
}


/* =========================================================
   DJANGO MESSAGES
========================================================= */

.alert-messages .alert {
    margin-bottom: 12px;
    padding: 15px 18px;
    border: 0;
    border-left: 4px solid transparent;
    border-radius: 14px;
    font-size: 0.94rem;
    line-height: 1.6;
}

.alert-messages .alert:last-child {
    margin-bottom: 0;
}

.alert-messages .alert-success {
    border-left-color: #3f7d63;
    color: #24513e;
    background: rgba(63, 125, 99, 0.13);
}

.alert-messages .alert-error,
.alert-messages .alert-danger {
    border-left-color: #b94a48;
    color: #7c302f;
    background: rgba(185, 74, 72, 0.12);
}

.alert-messages .alert-warning {
    border-left-color: #c58a32;
    color: #76511b;
    background: rgba(197, 138, 50, 0.14);
}

.alert-messages .alert-info {
    border-left-color: var(--ekhaya-secondary);
    color: var(--ekhaya-secondary-dark);
    background: rgba(49, 76, 67, 0.11);
}


/* =========================================================
   LOCATION SECTION
========================================================= */

.ekhaya-contact-location-section {
    background: var(--ekhaya-soft);
}

.ekhaya-contact-location-section p {
    color: var(--ekhaya-text);
    line-height: 1.85;
}


/* =========================================================
   MAP PLACEHOLDER
========================================================= */

.ekhaya-map-placeholder {
    position: relative;
    min-height: 470px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 40px;
    border-radius: 28px;
    background:
        linear-gradient(
            135deg,
            rgba(36, 58, 52, 0.96),
            rgba(49, 76, 67, 0.9)
        );
    box-shadow: var(--ekhaya-shadow-md);
}

.ekhaya-map-placeholder::before,
.ekhaya-map-placeholder::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.ekhaya-map-placeholder::before {
    width: 280px;
    height: 280px;
    top: -150px;
    right: -90px;
    background: rgba(217, 173, 104, 0.14);
}

.ekhaya-map-placeholder::after {
    width: 230px;
    height: 230px;
    bottom: -150px;
    left: -90px;
    background: rgba(255, 255, 255, 0.05);
}

.ekhaya-map-placeholder-content {
    position: relative;
    z-index: 2;
    max-width: 420px;
    text-align: center;
}

.ekhaya-map-icon {
    width: 72px;
    height: 72px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    border-radius: 22px;
    color: var(--ekhaya-secondary-dark);
    background: var(--ekhaya-accent);
    font-size: 1.9rem;
}

.ekhaya-map-placeholder-content > span {
    display: block;
    margin-bottom: 8px;
    color: var(--ekhaya-accent);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.ekhaya-map-placeholder-content h3 {
    margin: 0 0 10px;
    color: var(--ekhaya-white);
    font-size: clamp(1.7rem, 4vw, 2.5rem);
    line-height: 1.2;
}

.ekhaya-map-placeholder-content p {
    margin: 0 0 25px;
    color: rgba(255, 255, 255, 0.74);
}


/* =========================================================
   CONTACT CTA
========================================================= */

.ekhaya-contact-section + .ekhaya-contact-location-section {
    position: relative;
}

.ekhaya-contact-location-section + .ekhaya-cta-section {
    padding-top: 0;
    background: var(--ekhaya-soft);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1199px) {

    .ekhaya-contact-form-card {
        padding: 36px;
    }

    .ekhaya-map-placeholder {
        min-height: 430px;
    }

}

@media (max-width: 991px) {

    .ekhaya-contact-form-card {
        padding: 34px;
    }

    .ekhaya-map-placeholder {
        min-height: 390px;
    }

}

@media (max-width: 767px) {

    .ekhaya-contact-detail {
        padding: 19px;
    }

    .ekhaya-contact-form-card {
        padding: 27px 22px;
        border-radius: 22px;
    }

    .ekhaya-contact-form-heading {
        margin-bottom: 24px;
    }

    .ekhaya-contact-form .form-control {
        min-height: 58px;
    }

    .ekhaya-contact-form .ekhaya-message-field {
        min-height: 150px;
    }

    .ekhaya-contact-submit {
        width: 100%;
    }

    .ekhaya-map-placeholder {
        min-height: 360px;
        padding: 32px 22px;
        border-radius: 22px;
    }

}

@media (max-width: 575px) {

    .ekhaya-contact-detail {
        flex-direction: column;
        gap: 14px;
    }

    .ekhaya-contact-note {
        flex-direction: column;
    }

    .ekhaya-contact-form-card::before {
        width: 110px;
        height: 110px;
        top: -55px;
        right: -55px;
    }

    .ekhaya-recaptcha-wrapper {
        padding: 12px;
    }

    .ekhaya-recaptcha-wrapper .g-recaptcha {
        transform: scale(0.86);
        transform-origin: left top;
        margin-bottom: -11px;
    }

    .ekhaya-map-icon {
        width: 62px;
        height: 62px;
        border-radius: 19px;
        font-size: 1.6rem;
    }

}

@media (max-width: 360px) {

    .ekhaya-recaptcha-wrapper .g-recaptcha {
        transform: scale(0.76);
        margin-bottom: -19px;
    }

}


/* =========================================================
   THANK YOU PAGE
========================================================= */


/* =========================================================
   THANK YOU SECTION
========================================================= */

.ekhaya-thank-you-section{
    background:var(--ekhaya-white);
}


/* =========================================================
   THANK YOU CARD
========================================================= */

.ekhaya-thank-you-card{

    position:relative;

    overflow:hidden;

    padding:70px 60px;

    text-align:center;

    border-radius:32px;

    background:var(--ekhaya-cream);

    border:1px solid var(--ekhaya-border);

    box-shadow:var(--ekhaya-shadow-md);

}

.ekhaya-thank-you-card::before{

    content:"";

    position:absolute;

    width:220px;

    height:220px;

    top:-120px;

    right:-90px;

    border-radius:50%;

    background:rgba(217,173,104,.16);

}

.ekhaya-thank-you-card::after{

    content:"";

    position:absolute;

    width:170px;

    height:170px;

    bottom:-90px;

    left:-70px;

    border-radius:50%;

    background:rgba(49,76,67,.06);

}

.ekhaya-thank-you-card>*{

    position:relative;

    z-index:2;

}

.ekhaya-thank-you-icon{

    width:90px;

    height:90px;

    margin:0 auto 30px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    color:#fff;

    background:linear-gradient(
        135deg,
        var(--ekhaya-primary),
        var(--ekhaya-primary-dark)
    );

    font-size:2.3rem;

    box-shadow:0 15px 35px rgba(184,109,63,.35);

}

.ekhaya-thank-you-card h2{

    margin:18px 0;

    color:var(--ekhaya-secondary-dark);

    font-size:clamp(2rem,4vw,3.4rem);

    line-height:1.15;

}

.ekhaya-thank-you-card>p{

    max-width:720px;

    margin:0 auto 18px;

    color:var(--ekhaya-text);

    line-height:1.9;

}


/* =========================================================
   SUMMARY
========================================================= */

.ekhaya-thank-you-summary{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:24px;

    margin:50px 0;

}

.ekhaya-thank-you-summary-item{

    display:flex;

    align-items:flex-start;

    gap:18px;

    padding:26px;

    text-align:left;

    border-radius:22px;

    background:#fff;

    border:1px solid var(--ekhaya-border);

    transition:
        transform .3s,
        box-shadow .3s,
        border-color .3s;

}

.ekhaya-thank-you-summary-item:hover{

    transform:translateY(-5px);

    border-color:rgba(184,109,63,.25);

    box-shadow:var(--ekhaya-shadow-sm);

}

.ekhaya-thank-you-summary-icon{

    width:56px;

    height:56px;

    flex:0 0 56px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:16px;

    background:rgba(217,173,104,.22);

    color:var(--ekhaya-primary-dark);

    font-size:1.4rem;

}

.ekhaya-thank-you-summary-item h3{

    margin:0 0 8px;

    color:var(--ekhaya-secondary-dark);

    font-size:1.15rem;

}

.ekhaya-thank-you-summary-item p{

    margin:0;

    color:var(--ekhaya-text);

    line-height:1.7;

    font-size:.94rem;

}


/* =========================================================
   BUTTONS
========================================================= */

.ekhaya-thank-you-actions{

    display:flex;

    justify-content:center;

    gap:18px;

    flex-wrap:wrap;

}

.ekhaya-btn-secondary{

    padding:14px 28px;

    border-radius:999px;

    border:2px solid var(--ekhaya-secondary);

    background:transparent;

    color:var(--ekhaya-secondary-dark);

    font-weight:600;

    transition:.3s;

}

.ekhaya-btn-secondary:hover{

    color:#fff;

    background:var(--ekhaya-secondary);

    border-color:var(--ekhaya-secondary);

}


/* =========================================================
   CONTACT BOX
========================================================= */

.ekhaya-thank-you-contact-section{

    background:var(--ekhaya-soft);

}

.ekhaya-thank-you-contact-box{

    padding:50px;

    border-radius:28px;

    background:#fff;

    box-shadow:var(--ekhaya-shadow-md);

}

.ekhaya-thank-you-contact-box h2{

    margin:14px 0 12px;

    color:var(--ekhaya-secondary-dark);

    font-size:2.2rem;

}

.ekhaya-thank-you-contact-box p{

    margin:0;

    color:var(--ekhaya-text);

    line-height:1.8;

}


/* =========================================================
   CONTACT LINKS
========================================================= */

.ekhaya-thank-you-contact-links{

    display:flex;

    flex-direction:column;

    gap:18px;

}

.ekhaya-thank-you-contact-links a{

    display:flex;

    align-items:center;

    gap:16px;

    padding:18px;

    border-radius:18px;

    text-decoration:none;

    background:var(--ekhaya-cream);

    border:1px solid var(--ekhaya-border);

    transition:
        transform .3s,
        box-shadow .3s,
        border-color .3s;

}

.ekhaya-thank-you-contact-links a:hover{

    transform:translateY(-4px);

    border-color:rgba(184,109,63,.3);

    box-shadow:var(--ekhaya-shadow-sm);

}

.ekhaya-thank-you-contact-links i{

    width:50px;

    height:50px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:14px;

    color:#fff;

    background:var(--ekhaya-primary);

    font-size:1.25rem;

}

.ekhaya-thank-you-contact-links span{

    display:block;

    color:var(--ekhaya-secondary-dark);

    font-weight:600;

}

.ekhaya-thank-you-contact-links small{

    display:block;

    margin-bottom:3px;

    color:var(--ekhaya-primary);

    text-transform:uppercase;

    letter-spacing:.08em;

    font-size:.72rem;

}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width:991px){

    .ekhaya-thank-you-card{

        padding:55px 40px;

    }

    .ekhaya-thank-you-summary{

        grid-template-columns:1fr;

    }

    .ekhaya-thank-you-contact-box{

        padding:40px;

    }

}

@media (max-width:767px){

    .ekhaya-thank-you-card{

        padding:45px 28px;

        border-radius:24px;

    }

    .ekhaya-thank-you-icon{

        width:78px;

        height:78px;

        font-size:2rem;

    }

    .ekhaya-thank-you-summary{

        margin:35px 0;

        gap:18px;

    }

    .ekhaya-thank-you-summary-item{

        padding:22px;

        flex-direction:column;

        text-align:center;

        align-items:center;

    }

    .ekhaya-thank-you-actions{

        flex-direction:column;

    }

    .ekhaya-thank-you-actions .btn{

        width:100%;

    }

    .ekhaya-thank-you-contact-box{

        padding:30px;

        border-radius:22px;

    }

}

@media (max-width:575px){

    .ekhaya-thank-you-card{

        padding:40px 22px;

    }

    .ekhaya-thank-you-card h2{

        font-size:2rem;

    }

    .ekhaya-thank-you-contact-links a{

        flex-direction:column;

        text-align:center;

    }

}


/* =========================================================
   FLOATING CONTACT BUTTONS
========================================================= */

.floating-call,
.floating-whatsapp {

    position: fixed;

    right: 24px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    min-width: 170px;

    padding: 14px 22px;

    border-radius: 999px;

    color: #fff;

    font-weight: 600;

    text-decoration: none;

    box-shadow: 0 15px 35px rgba(0,0,0,.18);

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        background .3s ease;

    z-index: 1050;

}

.floating-call:hover,
.floating-whatsapp:hover {

    color: #fff;

    text-decoration: none;

    transform: translateY(-4px);

    box-shadow: 0 22px 45px rgba(0,0,0,.25);

}


/* =========================================================
   CALL BUTTON
========================================================= */

.floating-call {

    bottom: 95px;

    background: linear-gradient(
        135deg,
        var(--ekhaya-primary),
        var(--ekhaya-primary-dark)
    );

}

.floating-call:hover {

    background: linear-gradient(
        135deg,
        var(--ekhaya-primary-dark),
        var(--ekhaya-primary)
    );

}


/* =========================================================
   WHATSAPP BUTTON
========================================================= */

.floating-whatsapp {

    bottom: 24px;

    background: linear-gradient(
        135deg,
        #25D366,
        #128C7E
    );

}

.floating-whatsapp:hover {

    background: linear-gradient(
        135deg,
        #1fb85b,
        #0f7569
    );

}


/* =========================================================
   ICONS
========================================================= */

.floating-call i,
.floating-whatsapp i {

    width: 40px;

    height: 40px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    background: rgba(255,255,255,.18);

    font-size: 1rem;

}

.floating-call span,
.floating-whatsapp span {

    white-space: nowrap;

    font-size: .95rem;

    letter-spacing: .02em;

}


/* =========================================================
   PULSE ANIMATION
========================================================= */

.floating-call::after,
.floating-whatsapp::after {

    content: "";

    position: absolute;

    inset: 0;

    border-radius: inherit;

    animation: ekhayaPulse 2.8s infinite;

}

.floating-call::after {

    border: 2px solid rgba(184,109,63,.35);

}

.floating-whatsapp::after {

    border: 2px solid rgba(37,211,102,.35);

}

@keyframes ekhayaPulse {

    0% {

        transform: scale(1);

        opacity: .6;

    }

    70% {

        transform: scale(1.12);

        opacity: 0;

    }

    100% {

        transform: scale(1.12);

        opacity: 0;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .floating-call,
    .floating-whatsapp {

        right: 16px;

        width: 58px;

        min-width: 58px;

        height: 58px;

        padding: 0;

        border-radius: 50%;

    }

    .floating-call {

        bottom: 88px;

    }

    .floating-whatsapp {

        bottom: 18px;

    }

    .floating-call span,
    .floating-whatsapp span {

        display: none;

    }

    .floating-call i,
    .floating-whatsapp i {

        width: 58px;

        height: 58px;

        background: transparent;

        font-size: 1.25rem;

    }

}
