/* ============================================================
   ARAVALI PROPERTIES & INVESTMENT â€” STYLESHEET v2
   Main: #f97316 (saffron orange)  Secondary: #1c4d27 (deep green)
   Sections alternate: odd = orange-tinted, even = white
============================================================ */
:root {
    --orange: #F97316;
    --orange-dark: #C2570E;
    --orange-light: #FFEDD9;
    --green: #1C4D27;
    --green-dark: #123419;
    --green-light: #E7F0E9;
    --navy: #15191F;
    --navy-soft: #1E2530;
    --cream: #FFF8F0;
    --white: #FFFFFF;
    --text-dark: #1C1917;
    --text-muted: #6B6359;
    --border: #F0DCC2;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-pill: 999px;
    --shadow-sm: 0 2px 10px rgba(28, 25, 23, 0.06);
    --shadow-md: 0 10px 30px rgba(28, 25, 23, 0.10);
    --shadow-lg: 0 24px 60px rgba(28, 25, 23, 0.16);
    --shadow-orange: 0 10px 26px rgba(249, 115, 22, 0.30);
    --font-main: "Poppins", system-ui, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    background: var(--white);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

img {
    max-width: 100%;
    display: block;
}

button {
    font-family: inherit;
}

.py-section {
    padding-top: 96px;
    padding-bottom: 96px;
}

@media (max-width: 991px) {
    .py-section {
        padding-top: 64px;
        padding-bottom: 64px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
}

a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, [tabindex]:focus-visible {
    outline: 3px solid var(--orange);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Section alternation: ODD = orange tint, EVEN = white */
.section-odd {
    background: var(--cream);
}

.section-even {
    background: var(--white);
}

/* ============================================================
   SCROLL PROGRESS
============================================================ */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--orange), var(--green));
    z-index: 10000;
    transition: width 0.1s linear;
}

/* ============================================================
   WHATSAPP FLOAT + BACK TO TOP
============================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 58px;
    height: 58px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
    z-index: 999;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    animation: wa-pulse 2.6s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 14px 34px rgba(37, 211, 102, 0.55);
}

@keyframes wa-pulse {
    0%, 100% {
        box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
    }

    50% {
        box-shadow: 0 10px 28px rgba(37, 211, 102, 0.20), 0 0 0 10px rgba(37, 211, 102, 0.12);
    }
}

#back-to-top {
    position: fixed;
    bottom: 28px;
    right: 96px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: none;
    background: var(--green);
    color: #fff;
    font-size: 1.1rem;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    box-shadow: var(--shadow-md);
    transition: transform 0.2s ease, background 0.2s ease;
}

#back-to-top.visible {
    display: flex;
}

#back-to-top:hover {
    background: var(--orange);
    transform: translateY(-3px);
}

@media (max-width: 575px) {
    .whatsapp-float {
        right: 16px;
        bottom: 16px;
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }

    #back-to-top {
        right: 74px;
        bottom: 18px;
        width: 42px;
        height: 42px;
    }
}

/* ============================================================
   TOP BAR
============================================================ */
.top-bar {
    background: var(--green);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.8125rem;
    padding: 9px 0;
}

.top-bar-left {
    display: flex;
    gap: 26px;
    align-items: center;
    flex-wrap: wrap;
}

.tb-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.2s ease;
}

.tb-item:hover {
    color: var(--orange);
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.tb-social {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    transition: background 0.2s ease, color 0.2s ease;
}

.tb-social:hover {
    background: var(--orange);
    color: #fff;
}

.tb-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #25D366;
    color: #fff;
    padding: 5px 14px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.78rem;
}

@media (max-width: 575px) {
    .top-bar-left {
        gap: 16px;
    }
}

/* ============================================================
   NAVIGATION
============================================================ */
.navbar-custom {
    position: sticky;
    top: 0;
    z-index: 900;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
    transition: padding 0.25s ease, box-shadow 0.25s ease;
}

.navbar-custom.scrolled {
    padding: 8px 0;
    box-shadow: var(--shadow-sm);
}

.navbar-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.navbar-brand img {
    height: 48px;
    width: auto;
    transition: height 0.25s ease;
}

.navbar-custom.scrolled .navbar-brand img {
    height: 40px;
}

.navbar-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.navbar-brand-text b {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--green);
    letter-spacing: -0.01em;
}

.navbar-brand-text span {
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--orange);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.nav-item-drop {
    position: relative;
}

.nav-link {
    position: relative;
    padding: 9px 14px !important;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-muted) !important;
    border-radius: var(--radius-pill);
    transition: color 0.2s ease, background 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.nav-link:hover {
    color: var(--green) !important;
    background: var(--cream);
}

.nav-link.active {
    color: var(--orange) !important;
    font-weight: 600;
}

.nav-caret {
    font-size: 0.65rem;
    transition: transform 0.25s ease;
}

.nav-item-drop:hover .nav-caret {
    transform: rotate(180deg);
}

.dropdown-panel {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
    border: 1px solid var(--border);
    z-index: 950;
}

.nav-item-drop:hover .dropdown-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(4px);
}

.dropdown-panel a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.87rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: background 0.18s ease, color 0.18s ease, padding-left 0.18s ease;
}

.dropdown-panel a:hover {
    background: var(--orange-light);
    color: var(--orange-dark);
    padding-left: 16px;
}

.dropdown-panel a i {
    color: var(--orange);
    font-size: 1rem;
}

.btn-primary-orange {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--orange);
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px 11px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    /* box-shadow: var(--shadow-orange); */
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary-orange:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(249, 115, 22, 0.38);
    color: #fff;
}

.btn-outline-orange {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: transparent;
    color: var(--orange);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 11px 23px;
    border-radius: var(--radius-pill);
    border: 1.5px solid var(--orange);
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.btn-outline-orange:hover {
    background: var(--orange);
    color: #fff;
    transform: translateY(-2px);
}

.btn-green {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--green);
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 12px 24px;
    border-radius: var(--radius-pill);
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 26px rgba(28,77,39,0.30);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-green:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    color: #fff;
}

.btn-white-solid {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: #fff;
    color: var(--green);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 12px 24px;
    border-radius: var(--radius-pill);
    border: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-white-solid:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--green);
}

.navbar-toggler-custom {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    cursor: pointer;
}

/* ============================================================
   MOBILE OFF-CANVAS SIDEBAR
============================================================ */
#mobileOverlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 18, 23, 0.55);
    backdrop-filter: blur(2px);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

#mobileOverlay.active {
    opacity: 1;
    visibility: visible;
}

#mobileSidebar {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 84%;
    max-width: 340px;
    background: var(--white);
    z-index: 1050;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(.22,.9,.3,1);
    box-shadow: -10px 0 40px rgba(0,0,0,0.25);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

#mobileSidebar.active {
    transform: translateX(0);
}

.ms-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 20px;
    background: var(--green);
    color: #fff;
}

.ms-header .navbar-brand-text b {
    color: #fff;
}

.ms-header .navbar-brand-text span {
    color: var(--orange-light);
}

.ms-close {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: none;
    color: #fff;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.ms-close:hover {
    background: var(--orange);
    transform: rotate(90deg);
}

.ms-nav {
    padding: 14px 12px;
    flex: 1;
}

.ms-nav-item {
    border-bottom: 1px solid var(--border);
}

.ms-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 12px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
    border-radius: var(--radius-sm);
    transition: background 0.2s ease, color 0.2s ease, transform 0.25s ease;
    opacity: 0;
    transform: translateX(24px);
}

#mobileSidebar.active .ms-nav-link {
    opacity: 1;
    transform: translateX(0);
}

.ms-nav-link:hover, .ms-nav-link.active {
    color: var(--orange);
    background: var(--cream);
}

.ms-nav-link i.bi-chevron-down {
    font-size: 0.8rem;
    transition: transform 0.25s ease;
    color: var(--green);
}

.ms-nav-item.open .ms-nav-link i.bi-chevron-down {
    transform: rotate(180deg);
}

.ms-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    background: var(--cream);
    border-radius: var(--radius-sm);
}

.ms-nav-item.open .ms-submenu {
    max-height: 300px;
}

.ms-submenu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    font-size: 0.87rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.ms-submenu a:hover {
    color: var(--orange);
    padding-left: 28px;
}

.ms-submenu a i {
    color: var(--orange);
}

.ms-footer {
    padding: 20px;
    border-top: 1px solid var(--border);
}

.ms-footer .btn-primary-orange {
    width: 100%;
    justify-content: center;
    margin-bottom: 12px;
}

.ms-contact-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.ms-contact-row i {
    color: var(--orange);
}

/* stagger delays for sidebar items */
#mobileSidebar.active .ms-nav-item:nth-child(1) .ms-nav-link {
    transition-delay: 0.05s;
}

#mobileSidebar.active .ms-nav-item:nth-child(2) .ms-nav-link {
    transition-delay: 0.10s;
}

#mobileSidebar.active .ms-nav-item:nth-child(3) .ms-nav-link {
    transition-delay: 0.15s;
}

#mobileSidebar.active .ms-nav-item:nth-child(4) .ms-nav-link {
    transition-delay: 0.20s;
}

#mobileSidebar.active .ms-nav-item:nth-child(5) .ms-nav-link {
    transition-delay: 0.25s;
}

#mobileSidebar.active .ms-nav-item:nth-child(6) .ms-nav-link {
    transition-delay: 0.30s;
}

#mobileSidebar.active .ms-nav-item:nth-child(7) .ms-nav-link {
    transition-delay: 0.35s;
}

body.no-scroll {
    overflow: hidden;
}

/* ============================================================
   SECTION HEADERS
============================================================ */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--orange-light);
    color: var(--orange-dark);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    padding: 7px 16px 7px 12px;
    border-radius: var(--radius-pill);
}

.badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--orange);
    display: inline-block;
}

.section-title {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.015em;
    line-height: 1.18;
    margin: 18px 0 0;
    color: var(--text-dark);
}

.section-title span {
    color: var(--orange);
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 620px;
    line-height: 1.7;
}

.divider {
    width: 64px;
    height: 4px;
    border-radius: var(--radius-pill);
    background: linear-gradient(90deg, var(--orange), var(--green));
    margin-top: 18px;
}

.divider-center {
    margin-left: auto;
    margin-right: auto;
}

/* ============================================================
   HERO
============================================================ */
.hero-section {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--green-dark);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url("../images/hero-banner.jpg");
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, rgba(18, 52, 25, 0.95) 0%, rgba(18, 52, 25, 0.85) 42%, rgba(18, 52, 25, 0.60) 70%, rgba(249, 115, 22, 0.25) 100%);
}

.hero-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(249, 115, 22, 0.35), transparent 70%);
    filter: blur(10px);
    animation: float-shape 9s ease-in-out infinite;
}

.hero-shape-1 {
    width: 360px;
    height: 360px;
    top: -80px;
    right: 8%;
}

.hero-shape-2 {
    width: 220px;
    height: 220px;
    bottom: -40px;
    right: 28%;
    animation-delay: 2.4s;
}

@keyframes float-shape {
    0%, 100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-22px) scale(1.05);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(249, 115, 22, 0.18);
    border: 1px solid rgba(249, 115, 22, 0.45);
    color: #FFC896;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: var(--radius-pill);
    margin-bottom: 22px;
}

.hero-title {
    font-size: clamp(2.1rem, 4vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.16;
    color: #fff;
    margin-bottom: 16px;
}

.title-accent {
    color: var(--orange);
}

.hero-sub {
    font-size: 1.15rem;
    font-weight: 600;
    color: #FFDBB0;
    margin-bottom: 18px;
}

.hero-desc {
    font-size: 1.02rem;
    color: rgba(255, 255, 255, 0.78);
    max-width: 520px;
    line-height: 1.75;
    margin-bottom: 30px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-top: 44px;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: left;
}

.hs-val {
    font-size: 1.9rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
}

.hs-lbl {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.62);
    margin-top: 2px;
}

.hero-stat-divider {
    width: 1px;
    height: 38px;
    background: rgba(255, 255, 255, 0.18);
}

@media (max-width: 575px) {
    .hero-stats {
        gap: 16px;
    }

    .hero-stat-divider {
        display: none;
    }
}

/* Get in Touch panel (replaces search) */
.hero-search-panel {
    background: rgba(255, 255, 255, 0.98);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-lg);
    border-top: 4px solid var(--orange);
}

.sp-title {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.sp-sub {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 18px;
}

.sp-field label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 6px;
}

.sp-field input {
    width: 100%;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 11px 12px;
    font-size: 0.9rem;
    font-family: inherit;
    color: var(--text-dark);
    background: var(--cream);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.sp-field input:focus {
    border-color: var(--orange);
    outline: none;
    box-shadow: 0 0 0 3px rgba(249,115,22,0.15);
}

.sp-btn {
    width: 100%;
    background: var(--orange);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    padding: 14px;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.sp-btn:hover {
    background: var(--green);
    transform: translateY(-1px);
}

.scroll-indicator {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.72rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.si-mouse {
    width: 24px;
    height: 38px;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    border-radius: 14px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.si-wheel {
    width: 4px;
    height: 8px;
    border-radius: 2px;
    background: var(--orange);
    animation: si-scroll 1.6s ease-in-out infinite;
}

@keyframes si-scroll {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    70% {
        transform: translateY(10px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 0;
    }
}

@media (max-width: 767px) {
    .hero-section {
        min-height: auto;
        padding-top: 48px;
        padding-bottom: 56px;
    }

    .scroll-indicator {
        display: none;
    }
}

/* ============================================================
   ABOUT SECTION
============================================================ */
.about-img-wrap {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-lg);
    width: 100%;
    height: 460px;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
}

.about-img-secondary {
    position: absolute;
    bottom: -36px;
    left: -36px;
    width: 165px;
    height: 165px;
    object-fit: cover;
    border-radius: var(--radius-md);
    border: 6px solid var(--white);
    box-shadow: var(--shadow-md);
}

.about-exp-badge {
    position: absolute;
    top: 24px;
    right: -22px;
    background: var(--green);
    color: #fff;
    border-radius: var(--radius-md);
    padding: 16px 18px;
    text-align: center;
    box-shadow: 0 10px 26px rgba(28,77,39,0.35);
    line-height: 1.15;
}

.aeb-num {
    display: block;
    font-size: 1.7rem;
    font-weight: 800;
}

.aeb-text {
    font-size: 0.72rem;
    font-weight: 600;
    opacity: 0.92;
}

@media (max-width: 991px) {
    .about-img-secondary {
        left: 0;
        width: 130px;
        height: 130px;
        bottom: -24px;
    }

    .about-exp-badge {
        right: 12px;
    }
}

.about-value {
    display: flex;
    gap: 14px;
    padding: 16px;
    border-radius: var(--radius-md);
    background: var(--white);
    border: 1px solid var(--border);
    height: 100%;
}

.av-icon {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.av-title {
    font-weight: 700;
    font-size: 0.92rem;
    margin-bottom: 4px;
}

.av-text {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.55;
}

.welcome-strip {
    background: linear-gradient(120deg, var(--green), var(--green-dark));
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    margin-bottom: 56px;
    box-shadow: 0 20px 50px rgba(28,77,39,0.25);
    position: relative;
    overflow: hidden;
}

.welcome-strip::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(249,115,22,0.25), transparent 70%);
    border-radius: 50%;
}

.welcome-strip h2 {
    color: #fff;
    font-weight: 800;
    font-size: clamp(1.4rem, 2.6vw, 2.1rem);
    letter-spacing: 0.02em;
    margin-bottom: 10px;
    position: relative;
}

.welcome-strip h2 span {
    color: var(--orange);
}

.welcome-strip p {
    color: rgba(255,255,255,0.75);
    max-width: 620px;
    margin: 0 auto;
    font-size: 0.95rem;
    position: relative;
}

/* ============================================================
   CATEGORIES
============================================================ */
.category-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 280px;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.3s ease;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover img {
    transform: scale(1.08);
}

.category-card:hover {
    box-shadow: var(--shadow-lg);
}

.cat-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(21, 25, 31, 0.05) 0%, rgba(18, 52, 25, 0.88) 100%);
}

.cat-content {
    position: absolute;
    left: 22px;
    bottom: 22px;
    right: 60px;
    color: #fff;
}

.cat-icon {
    font-size: 1.6rem;
    display: block;
    margin-bottom: 6px;
}

.cat-name {
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 2px;
}

.cat-count {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.72);
}

.cat-arrow {
    position: absolute;
    right: 18px;
    bottom: 20px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--orange);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.category-card:hover .cat-arrow {
    transform: translateX(4px) rotate(-45deg);
}

/* ============================================================
   FEATURED PROPERTIES
============================================================ */
.prop-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.prop-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.prop-card-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.prop-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.prop-card:hover .prop-card-img img {
    transform: scale(1.08);
}

.prop-badge-featured {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-dark);
    font-size: 0.74rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: var(--radius-pill);
}

.prop-wishlist {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    color: var(--text-dark);
    cursor: pointer;
    transition: color 0.2s ease, transform 0.2s ease;
}

.prop-wishlist[data-active="1"] {
    color: #E11D48;
}

.prop-wishlist:hover {
    transform: scale(1.1);
}

.prop-card-body {
    padding: 20px;
    flex: 1;
}

.prop-price {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--orange-dark);
    margin-bottom: 6px;
}

.prop-title {
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 8px;
}

.prop-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.83rem;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.prop-specs {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.prop-spec {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.78rem;
    color: var(--text-muted);
    background: var(--cream);
    padding: 5px 10px;
    border-radius: var(--radius-pill);
}

.prop-card-footer {
    padding: 0 20px 20px;
}

.prop-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--orange);
    transition: gap 0.2s ease;
}

.prop-view-btn:hover {
    gap: 11px;
    color: var(--green);
}

/* ============================================================
   WHY CHOOSE US
============================================================ */
.why-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 30px 26px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.wc-icon {
    width: 54px;
    height: 54px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 18px;
}

.wc-title {
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 10px;
}

.wc-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
}

/* ============================================================
   FEATURED LOCATIONS
============================================================ */
.location-card {
    position: relative;
    height: 200px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.location-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.location-card:hover img {
    transform: scale(1.08);
}

.lc-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(21, 25, 31, 0) 40%, rgba(18, 52, 25, 0.90) 100%);
}

.lc-body {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 16px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    color: #fff;
}

.lc-name {
    font-weight: 700;
    font-size: 1.05rem;
}

.lc-count {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.7);
}

.lc-badge {
    background: rgba(249, 115, 22, 0.92);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: var(--radius-pill);
}

/* ============================================================
   SERVICES
============================================================ */
.service-item {
    display: flex;
    gap: 14px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.si-icon {
    width: 46px;
    height: 46px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.si-title {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 6px;
}

.si-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.55;
}

/* ============================================================
   INVESTMENT PROCESS
============================================================ */
.process-section {
    background: var(--green-dark);
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.18), transparent 70%);
    border-radius: 50%;
}

.timeline-wrap {
    position: relative;
    padding-top: 8px;
}

.timeline-line {
    position: absolute;
    top: 86px;
    left: 8.5%;
    right: 8.5%;
    height: 3px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-pill);
    z-index: 0;
}

.timeline-line-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--orange), #FFC896);
    border-radius: var(--radius-pill);
    transition: width 1.4s cubic-bezier(.22, .9, .3, 1);
}

@media (max-width: 991px) {
    .timeline-line {
        display: none;
    }
}

.process-step {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 8px;
}

.ps-number {
    width: 56px;
    height: 56px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 2px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.95rem;
    transition: all 0.4s ease;
}

.process-step.active .ps-number, .process-step.is-active .ps-number {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
    box-shadow: 0 0 0 6px rgba(249, 115, 22, 0.18);
}

.ps-icon {
    font-size: 1.6rem;
    margin-bottom: 10px;
    opacity: 0.92;
}

.ps-title {
    font-weight: 700;
    font-size: 0.92rem;
    color: #fff;
    margin-bottom: 6px;
}

.ps-desc {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
}

/* ============================================================
   TESTIMONIALS â€” OWL-STYLE CAROUSEL
============================================================ */
.testimonial-carousel {
    position: relative;
}

.tc-track-wrap {
    overflow: hidden;
}

.tc-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(.22,.9,.3,1);
}

.tc-slide {
    flex: 0 0 100%;
    padding: 6px;
}

@media (min-width: 768px) {
    .tc-slide {
        flex: 0 0 50%;
    }
}

@media (min-width: 1200px) {
    .tc-slide {
        flex: 0 0 33.3333%;
    }
}

.testimonial-card {
    position: relative;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 30px 26px;
    height: 100%;
}

.tc-prop {
    display: inline-block;
    background: var(--orange-light);
    color: var(--orange-dark);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 11px;
    border-radius: var(--radius-pill);
    margin-bottom: 16px;
}

.tc-quote {
    position: absolute;
    top: 18px;
    right: 26px;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--orange-light);
    line-height: 1;
    font-family: Georgia, serif;
}

.tc-stars {
    color: var(--orange);
    font-size: 0.9rem;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.tc-text {
    font-size: 0.9rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 20px;
}

.tc-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tc-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.tc-name {
    font-weight: 700;
    font-size: 0.88rem;
}

.tc-role {
    font-size: 0.76rem;
    color: var(--text-muted);
}

.tc-nav-arrows {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 28px;
}

.tc-arrow-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--white);
    border: 1.5px solid var(--border);
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.tc-arrow-btn:hover {
    background: var(--orange);
    color: #fff;
    border-color: var(--orange);
    transform: scale(1.08);
}

.tc-dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.tc-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: background 0.25s ease, width 0.25s ease, border-radius 0.25s ease;
}

.tc-dot.active {
    background: var(--orange);
    width: 26px;
    border-radius: var(--radius-pill);
}

/* ============================================================
   GALLERY (with zoom-on-click lightbox)
============================================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 160px;
    gap: 14px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    cursor: zoom-in;
}

.gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item:nth-child(5) {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gi-overlay {
    position: absolute;
    inset: 0;
    background: rgba(18, 52, 25, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.4rem;
    opacity: 0;
    transition: opacity 0.3s ease, background 0.3s ease;
}

.gallery-item:hover .gi-overlay {
    opacity: 1;
    background: rgba(18, 52, 25, 0.45);
}

@media (max-width: 767px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 150px;
    }

    .gallery-item:nth-child(1) {
        grid-column: span 2;
        grid-row: span 1;
    }

    .gallery-item:nth-child(5) {
        grid-column: span 1;
    }
}

#lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

#lightbox.active {
    display: flex;
}

#lightbox-img {
    max-width: 90vw;
    max-height: 88vh;
    border-radius: 12px;
    object-fit: contain;
    transform: scale(0.85);
    opacity: 0;
    transition: transform 0.35s cubic-bezier(.22,.9,.3,1), opacity 0.35s ease;
}

#lightbox.active #lightbox-img {
    transform: scale(1);
    opacity: 1;
}

#lightbox-close {
    position: absolute;
    top: 24px;
    right: 32px;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    background: rgba(255,255,255,.10);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}

#lightbox-close:hover {
    background: var(--orange);
}

#lightbox-prev, #lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.6rem;
    color: #fff;
    cursor: pointer;
    background: rgba(255,255,255,.10);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}

#lightbox-prev {
    left: 24px;
}

#lightbox-next {
    right: 24px;
}

#lightbox-prev:hover, #lightbox-next:hover {
    background: var(--orange);
}

@media (max-width: 575px) {
    #lightbox-prev, #lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    #lightbox-prev {
        left: 8px;
    }

    #lightbox-next {
        right: 8px;
    }
}

/* ============================================================
   CHANNEL PARTNERS
============================================================ */
.partners-marquee-wrap {
    overflow: hidden;
    margin: 8px 0 48px;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.partners-marquee {
    display: flex;
    gap: 14px;
    width: max-content;
    animation: marquee-scroll 32s linear infinite;
}

.partners-marquee:hover {
    animation-play-state: paused;
}

@keyframes marquee-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.partner-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 1px solid var(--border);
    padding: 10px 20px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-dark);
    white-space: nowrap;
}

.pc-emoji {
    font-size: 1.05rem;
}

.partner-card-full {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    height: 100%;
}

.pcf-emoji {
    font-size: 2rem;
    margin-bottom: 14px;
}

.pcf-name {
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 10px;
}

.pcf-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: var(--radius-pill);
    margin-bottom: 14px;
}

.pcf-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 18px;
}

.pcf-stats {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--border);
    padding-top: 16px;
}

.pcf-stat-v {
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--orange-dark);
}

.pcf-stat-l {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 2px;
}

/* ============================================================
   HIGHLIGHTS
============================================================ */
.highlights-img-wrap {
    position: relative;
}

.highlights-img-main {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.highlights-glass-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.90);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    box-shadow: var(--shadow-md);
}

.hgb-val {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--orange-dark);
}

.hgb-lbl {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 600;
}

.highlights-float-stat {
    position: absolute;
    bottom: -24px;
    right: 20px;
    background: var(--green);
    color: #fff;
    border-radius: var(--radius-md);
    padding: 14px 20px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.hfs-val {
    font-size: 1.4rem;
    font-weight: 800;
}

.hfs-lbl {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.65);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 52px;
}

.metric-tile {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 18px;
    text-align: center;
}

.mt-val {
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--text-dark);
}

.mt-lbl {
    font-size: 0.76rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.highlight-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 16px 18px;
    margin-bottom: 12px;
}

.hr-icon {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.hr-title {
    font-weight: 700;
    font-size: 0.92rem;
    margin-bottom: 3px;
}

.hr-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.55;
}

.hr-badge {
    margin-left: auto;
    align-self: center;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 5px 11px;
    border-radius: var(--radius-pill);
    white-space: nowrap;
    flex-shrink: 0;
}

@media (max-width: 575px) {
    .highlight-row {
        flex-wrap: wrap;
    }

    .hr-badge {
        margin-left: 58px;
    }
}

/* ============================================================
   AMENITIES
============================================================ */
.amenity-filter-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 36px;
}

.amenity-tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--white);
    border: 1px solid var(--border);
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 10px 20px;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: all 0.2s ease;
}

.amenity-tab-btn:hover {
    color: var(--text-dark);
}

.amenity-tab-btn.active {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
}

.amenity-card-item {
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.amenity-card-item.hide {
    display: none;
}

.amenity-feat-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.amenity-feat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.afc-img {
    position: relative;
    height: 190px;
    overflow: hidden;
}

.afc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.amenity-feat-card:hover .afc-img img {
    transform: scale(1.08);
}

.afc-cat {
    position: absolute;
    top: 14px;
    left: 14px;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: var(--radius-pill);
}

.afc-body {
    padding: 22px;
}

.afc-icon {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.afc-title {
    font-weight: 700;
    font-size: 0.98rem;
    margin-bottom: 8px;
}

.afc-desc {
    font-size: 0.83rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 14px;
}

.afc-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.afc-tag {
    font-size: 0.72rem;
    font-weight: 600;
    background: var(--cream);
    color: var(--text-muted);
    padding: 5px 11px;
    border-radius: var(--radius-pill);
}

.dark-feature-card {
    background: var(--green-dark);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 32px;
    height: 100%;
}

.dfc-title {
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 12px;
    line-height: 1.35;
}

.dfc-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.65;
    margin-bottom: 20px;
}

.dfc-list {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.dfc-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
}

.dfc-check {
    color: var(--orange);
    font-weight: 800;
    flex-shrink: 0;
}

.amenity-icon-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 22px;
}

.aig-box {
    text-align: center;
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 16px 8px;
}

.aig-emoji {
    font-size: 1.4rem;
    display: block;
    margin-bottom: 6px;
}

.aig-lbl {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-muted);
}

@media (max-width: 575px) {
    .amenity-icon-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.cta-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    background: linear-gradient(120deg, var(--orange), var(--orange-dark));
    border-radius: var(--radius-lg);
    padding: 36px 40px;
    margin-top: 56px;
    box-shadow: var(--shadow-orange);
}

.cs-title {
    font-weight: 800;
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 6px;
}

.cs-sub {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.85);
}

/* ============================================================
   BLOG
============================================================ */
.blog-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.bc-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.bc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .bc-img img {
    transform: scale(1.08);
}

.bc-cat {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--orange);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: var(--radius-pill);
}

.bc-body {
    padding: 22px;
}

.bc-date {
    font-size: 0.76rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
}

.bc-title {
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.45;
    margin-bottom: 10px;
}

.bc-desc {
    font-size: 0.83rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.bc-read {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--orange);
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: gap 0.2s ease;
}

.bc-read:hover {
    gap: 11px;
    color: var(--green);
}

/* ============================================================
   CONTACT
============================================================ */
.contact-form-wrap {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 34px;
}

.contact-form-wrap .form-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.contact-form-wrap .form-control, .contact-form-wrap .form-select {
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 11px 14px;
    font-size: 0.9rem;
    background: var(--cream);
}

.contact-form-wrap .form-control:focus, .contact-form-wrap .form-select:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.15);
}

.form-toast {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--green-light);
    color: var(--green-dark);
    border: 1px solid #9ecaa8;
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 14px;
}

.contact-info-card {
    background: var(--green-dark);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 34px;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 22px;
}

.cii-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: rgba(249, 115, 22, 0.20);
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.cii-label {
    font-size: 0.74rem;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 4px;
}

.cii-val {
    font-size: 0.9rem;
    line-height: 1.55;
}

.cii-open-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.76rem;
    font-weight: 700;
    color: #7EE7A8;
    margin-bottom: 6px;
}

.cii-open-badge .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #7EE7A8;
    box-shadow: 0 0 0 4px rgba(126,231,168,0.20);
}

.map-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 520px;
}

.map-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
    background: var(--green-dark);
    color: rgba(255, 255, 255, 0.65);
    padding: 72px 0 0;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-brand img {
    height: 46px;
}

.footer-brand-text b {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
}

.footer-brand-text span {
    font-size: 0.7rem;
    color: var(--orange-light);
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.footer-desc {
    font-size: 0.85rem;
    line-height: 1.75;
    margin-bottom: 22px;
    color: rgba(255, 255, 255, 0.55);
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, color 0.2s ease;
}

.footer-social-btn:hover {
    background: var(--orange);
    color: #fff;
}

.footer-heading {
    font-weight: 700;
    font-size: 0.95rem;
    color: #fff;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--orange);
}

.fn-input-wrap {
    display: flex;
    gap: 0;
    border-radius: var(--radius-pill);
    overflow: hidden;
    border: 1.5px solid rgba(255, 255, 255, 0.16);
}

.fn-input-wrap input {
    flex: 1;
    background: rgba(255, 255, 255, 0.06);
    border: none;
    padding: 12px 18px;
    color: #fff;
    font-size: 0.85rem;
}

.fn-input-wrap input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.fn-input-wrap input:focus {
    outline: none;
}

.fn-input-wrap button {
    background: var(--orange);
    color: #fff;
    border: none;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 12px 22px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.fn-input-wrap button:hover {
    background: var(--orange-dark);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 56px;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    font-size: 0.8rem;
}

.fb-links {
    display: flex;
    gap: 22px;
}

.fb-links a {
    color: rgba(255, 255, 255, 0.55);
    transition: color 0.2s ease;
}

.fb-links a:hover {
    color: var(--orange);
}

/* =========================
   INNER PAGE HERO
========================= */
.inner-hero{
    position:relative;
    min-height: 250px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    overflow:hidden;
    background:url('images/page-banner.jpg') center center/cover no-repeat;
}

.inner-hero::before{
    content:'';
    position:absolute;
    inset:0;
    background:
    linear-gradient(
    135deg,
    rgba(11,59,46,.90),
    rgba(11,59,46,.70)
    );
}

.hero-overlay{
    position:absolute;
  
}

.inner-hero-content{
    position:relative;
    z-index:2;
}

.inner-hero h1{
    color:#fff;
    font-size: 2.6rem;
    font-weight:800;
    margin-bottom: -1px;
    text-transform:uppercase;
    letter-spacing:1px;
}

.breadcrumb-custom{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    list-style:none;
    padding:0;
    margin:0;
}

.breadcrumb-custom li{
    color:#fff;
    font-size: 14px;
    font-weight:500;
}

.breadcrumb-custom a{
    color:#ffffff;
    text-decoration:none;
    transition:.3s;
}

.breadcrumb-custom a:hover{
    color:#f7941d;
}

.breadcrumb-custom .active{
    color:#f7941d;
    font-weight:700;
}

.breadcrumb-custom .separator{
    color:rgba(255,255,255,.6);
}

@media(max-width:991px){
    .inner-hero{
        min-height: 175px;
    }

    .inner-hero h1{
        font-size:2.5rem;
    }
}
