@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700&family=Jost:wght@300;400;500;600;700;800&display=swap');

/*
Theme Name: RISH Global Properties
Theme URI: https://primerealty.rw
Author: RISH Global Properties
Description: A luxury real estate theme with chocolate, black and white design, hero section, property listings, and WhatsApp booking.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: rish-global
Tags: real-estate, business, chocolate, luxury, responsive
*/

/* ═══════════════════════════════════════════════════════════
   PRIME REALTY THEME — MASTER STYLESHEET
   Primary:  #5C3317  (chocolate)
   Accent:   #A0652A  (warm chocolate)
   Dark:     #1C0F07  (near black)
   Gray:     #6b7280
   Light:    #f3f4f6
═══════════════════════════════════════════════════════════ */

:root {
    --choc-dark:   #1C0F07;
    --choc:        #5C3317;
    --choc-mid:    #7A4428;
    --choc-light:  #A0652A;
    --choc-pale:   #F2E8DC;
    --choc-xpale:  #FAF4EE;
    --gray-dark:    #1f2937;
    --gray:         #6b7280;
    --gray-mid:     #9ca3af;
    --gray-light:   #f3f4f6;
    --gray-border:  #e5e7eb;
    --white:        #ffffff;
    --wa-green:     #FAF4EE;
    --shadow-sm:    0 1px 3px rgba(0,0,0,.08);
    --shadow-md:    0 4px 16px rgba(0,0,0,.10);
    --shadow-lg:    0 12px 40px rgba(0,0,0,.14);
    --radius:       12px;
    --radius-lg:    20px;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Jost', 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: #fff;
    color: var(--white);
    line-height: 1.6;
    font-size: 16px;
}
img { max-width: 100%; height: auto; display: block; }
a  { color: var(--choc-light); text-decoration: none; }
a:hover { color: var(--choc-dark); }
ul { list-style: none; }
h1,h2,h3,h4 { line-height: 1.2; color: var(--white); font-family: 'Cormorant Garamond', Georgia, serif; }

/* ── Container ── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all .25s;
    border: none;
    text-decoration: none;
}
.btn-primary {
    background: var(--choc);
    color: #fff;
    box-shadow: 0 4px 14px rgba(92,51,23,.35);
}
.btn-primary:hover { background: #1C0F07; color: #fff; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(92,51,23,.4); }

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline:hover { background: rgba(255,255,255,.15); color: #fff; }

.btn-book {
    background: var(--choc);
    color: #fff;
}
.btn-book:hover { background:
#5c3317; color: #fff; transform: translateY(-2px); }

.btn-white {
    background: #fff;
    color: var(--choc);
    box-shadow: var(--shadow-md);
}
.btn-white:hover { background: var(--choc-pale); color: var(--choc-dark); transform: translateY(-2px); }

/* ════════════════════════════════════
   HEADER / NAVIGATION
════════════════════════════════════ */
#site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    transition: all .3s;
    padding: 0;
}
#site-header.scrolled {
    background: rgba(28,15,7,0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0,0,0,.2);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}
.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.logo-img {
    height: 48px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
    transition: filter .3s;
}
/* When header is not yet scrolled (transparent), keep logo white */
#site-header .logo-img { filter: brightness(0) invert(1); }
/* On white/light backgrounds (e.g. footer), show natural logo */
.footer-brand .logo-img { filter: none; height: 44px; }
.logo-text { color: #fff; font-size: 1.3rem; font-weight: 800; letter-spacing: -.3px; font-family: 'Cormorant Garamond', serif; display: none; }
.logo-text span { color: var(--choc-light); }

.main-nav { display: flex; align-items: center; gap: 36px; }
.main-nav a {
    color: rgba(255,255,255,.85);
    font-size: 15px;
    font-weight: 500;
    transition: color .2s;
    position: relative;
}
.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 0; right: 0;
    height: 2px;
    background: var(--choc-light);
    transform: scaleX(0);
    transition: transform .25s;
}
.main-nav a:hover, .main-nav a.active { color: #fff; }
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }

.header-cta { display: flex; align-items: center; gap: 14px; }
.header-phone { color: rgba(255,255,255,.8); font-size: 14px; }
.header-phone strong { color: #fff; }

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
}
.mobile-menu-btn span {
    display: block;
    width: 26px; height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all .3s;
}
/* ════════════════════════════════════
   PROPERTIES NAV DROPDOWN
════════════════════════════════════ */

/* Wrapper — position relative so dropdown sits below */
.nav-dropdown-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

/* Trigger link — same style as other nav links + chevron */
.nav-dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 5px;
    color: rgba(255,255,255,.85);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: color .2s;
    position: relative;
    cursor: pointer;
    white-space: nowrap;
}

.nav-dropdown-trigger::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 0; right: 0;
    height: 2px;
    background: var(--choc-light);
    transform: scaleX(0);
    transition: transform .25s;
}

.nav-dropdown-trigger:hover,
.nav-dropdown-trigger.active {
    color: #fff;
}

.nav-dropdown-trigger:hover::after,
.nav-dropdown-trigger.active::after {
    transform: scaleX(1);
}

#site-header.scrolled .nav-dropdown-trigger {
    color: rgba(255,255,255,.85);
}

/* Chevron rotates when open */
.nav-chevron {
    transition: transform .25s;
    flex-shrink: 0;
}
.nav-dropdown-wrap:hover .nav-chevron,
.nav-dropdown.open ~ * .nav-chevron {
    transform: rotate(180deg);
}
.nav-dropdown-wrap:hover .nav-chevron {
    transform: rotate(180deg);
}

/* Dropdown panel (desktop popover) */
.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    box-shadow: 0 16px 48px rgba(0,0,0,.16);
    min-width: 220px;
    padding: 8px;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(8px);
    transition: opacity .22s, transform .22s, visibility .22s;
    pointer-events: none;
}

/* Small arrow tip pointing up (desktop only) */
.nav-dropdown::before {
    content: '';
    position: absolute;
    top: -7px;
    left: 50%;
    transform: translateX(-50%);
    width: 14px;
    height: 7px;
    background: #fff;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    filter: drop-shadow(0 -2px 2px rgba(0,0,0,.06));
}

/* Show on hover or .open class (desktop) */
.nav-dropdown-wrap:hover .nav-dropdown,
.nav-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

/* Each item row */
.nav-dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 8px;
    text-decoration: none;
    transition: background .18s;
    color: #1f2937;
}

.nav-dropdown-item:hover {
    background: #faf4ee;
}

/* Icon circle */
.nav-dropdown-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Text inside item */
.nav-dropdown-item div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.nav-dropdown-item strong {
    font-size: 14px;
    font-weight: 700;
    color: #1f2937;
    display: block;
}

.nav-dropdown-item span {
    font-size: 12px;
    color: #6b7280;
    display: block;
}

/* Divider between items */
.nav-dropdown-item + .nav-dropdown-item {
    border-top: 1px solid #f3f4f6;
    margin-top: 2px;
    padding-top: 12px;
}

/* NOTE: the old rule `.nav-dropdown-wrap { display: none; }` inside
   `@media (max-width: 768px)` has been REMOVED here on purpose —
   that rule was hiding "Properties" and "Our Offer" from the mobile
   nav entirely. The mobile-specific accordion styling lives further
   down in the "MOBILE NAV — ACCORDION DROPDOWNS" section instead. */

/* ════════════════════════════════════
   HERO SECTION
════════════════════════════════════ */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1C0F07 0%, #2d1a0d 45%, #5C3317 100%);
    overflow: hidden;
}
.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(160,101,42,.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,.05) 0%, transparent 40%),
        radial-gradient(circle at 60% 80%, rgba(28,15,7,.3) 0%, transparent 50%);
}
.hero-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}
.hero-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,.04);
}
.hero-shape-1 { width: 600px; height: 600px; top: -200px; right: -150px; }
.hero-shape-2 { width: 300px; height: 300px; bottom: -100px; left: 10%; }
.hero-shape-3 { width: 200px; height: 200px; top: 30%; left: 5%; background: rgba(160,101,42,.08); }

.hero-content-wrap {
    position: relative;
    z-index: 2;
    padding: 120px 0 80px;
    width: 100%;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.2);
    color: #fff;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
}
.hero-badge-dot {
    width: 8px; height: 8px;
    background: var(--choc-light);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: .6; transform: scale(1.3); }
}

.hero-title {
    font-size: 3.4rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}
.hero-title .highlight {
    color: var(--choc-light);
    position: relative;
}
.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,.8);
    margin-bottom: 36px;
    max-width: 480px;
    line-height: 1.7;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-stats {
    display: flex;
    gap: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,.15);
}
.hero-stat { text-align: center; }
.hero-stat-num { font-size: 1.8rem; font-weight: 800; color: #fff; }
.hero-stat-label { font-size: 12px; color: rgba(255,255,255,.7); margin-top: 2px; }

/* Hero Right — Featured Card */
.hero-card-wrap { position: relative; }
.hero-featured-card {
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: var(--radius-lg);
    overflow: hidden;
    backdrop-filter: blur(16px);
    box-shadow: 0 24px 60px rgba(0,0,0,.25);
}
.hero-card-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}
.hero-card-body { padding: 20px; }
.hero-card-tag {
    display: inline-block;
    background: var(--choc-light);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.hero-card-title { color: #fff; font-size: 1.05rem; font-weight: 700; margin-bottom: 6px; }
.hero-card-meta { display: flex; gap: 16px; font-size: 13px; color: rgba(255,255,255,.7); margin-bottom: 12px; }
.hero-card-price { color: var(--choc-light); font-size: 1.4rem; font-weight: 800; }

.hero-float-badge {
    position: absolute;
    top: 20px; right: -20px;
    background: #fff;
    color: var(--choc-dark);
    border-radius: 12px;
    padding: 12px 16px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    min-width: 110px;
}
.float-num { font-size: 1.4rem; font-weight: 800; color: var(--choc); }
.float-label { font-size: 11px; color: var(--gray); }
/* ════════════════════════════════════
   SEARCH BAR (below hero)
════════════════════════════════════ */
#search-bar {
    background:transparent;
    border-radius: var(--radius-lg);
    padding: 18px 22px;
    margin: -180px auto 0 -30px;
    position: relative;
    z-index: 10;
    max-width: 960px;
}
.search-bar-title { font-size: 1.2rem; font-weight: 700; color: var(--choc-light); margin-bottom: 16px; }
.search-bar-form { display: flex; gap: 10px; flex-wrap: wrap; align-items: flex-end; }
.search-bar-field { flex: 1; min-width: 160px;background:transparent; }
.search-bar-field label { display: block; font-size: 12px; font-weight: 600; color: rgba(255, 255, 255, 0.65); margin-bottom: 6px; text-transform: uppercase; letter-spacing: .5px; }
.search-bar-field input,
.search-bar-field select {
    width: 100%;
    padding: 12px 6px;
    border: 1px solid var(--gray-border);
    border-radius: 10px;
    font-size: 14px;
    color:rgba(18, 7, 7, 0.65);
    background:transparent;
    transition: all .2s;
}
.search-bar-field input:focus,
.search-bar-field select:focus { outline: none; border-color: var(--choc-light); box-shadow: 0 0 0 3px rgba(160,101,42,.15); }
.search-bar-btn {
    padding: 12px 18px;
    background: var(--choc);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all .2s;
    white-space: nowrap;
}
.search-bar-btn:hover { background: #1C0F07; transform: translateY(-1px); }

/* ════════════════════════════════════
   SECTIONS COMMON
════════════════════════════════════ */
.section { padding: 90px 0; }
.section-alt { background: var(--choc-xpale); }
.section-dark { background: #130A03; }

.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
    display: inline-block;
    background: var(--choc-pale);
    color: var(--choc);
    font-size: 12px;
    font-weight: 700;
    padding: 5px 16px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}
.section-title { font-size: 2.4rem; font-weight: 700; font-family: 'Cormorant Garamond', Georgia, serif; color: var(--gray-dark); margin-bottom: 14px; }
.section-title span { color: var(--choc); }
.section-sub { font-size: 1rem; color: var(--gray); max-width: 520px; margin: 0 auto; }

/* ════════════════════════════════════
   FEATURED PROPERTIES
════════════════════════════════════ */
.properties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 48px;
}

/* Property Card */
.prop-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-border);
    transition: transform .3s, box-shadow .3s;
    position: relative;
}
.prop-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.prop-card-img-wrap { position: relative; height: 230px; overflow: hidden; }
.prop-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.prop-card:hover .prop-card-img { transform: scale(1.07); }

.prop-badge-wrap { position: absolute; top: 14px; left: 14px; display: flex; gap: 6px; }
.prop-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .4px;
}
.prop-badge.featured { background: #f59e0b; color: #fff; }
.prop-badge.available { background: var(--choc-mid); color: #fff; }
.prop-badge.sold      { background: #dc2626; color: #fff; }

.prop-type-tag {
    position: absolute;
    top: 14px; right: 14px;
    background: rgba(0,0,0,.5);
    color: #fff;
    font-size: 11px;
    padding: 4px 12px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
}

.prop-card-body { padding: 20px 22px 22px; }
.prop-price { font-size: 1.5rem; font-weight: 900; color: var(--choc); margin-bottom: 6px; }
.prop-title { font-size: 1rem; font-weight: 700; color: var(--gray-dark); margin-bottom: 8px; }
.prop-location { font-size: 13px; color: var(--gray); margin-bottom: 14px; display: flex; align-items: center; gap: 4px; }
.prop-specs {
    display: flex;
    gap: 18px;
    font-size: 13px;
    color: var(--gray);
    padding: 14px 0;
    border-top: 1px solid var(--gray-border);
    border-bottom: 1px solid var(--gray-border);
    margin-bottom: 16px;
}
.prop-spec { display: flex; align-items: center; gap: 5px; }

.prop-card-actions { display: flex; gap: 10px; }
.prop-btn-view {
    flex: 1;
    text-align: center;
    padding: 10px;
    background: var(--choc);
    color: #fff;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s;
}
.prop-btn-view:hover { background: #1C0F07; color: #fff; }
.prop-btn-book {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: var(--choc-pale);
    color: var(--choc);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all .2s;
    border: none;
    cursor: pointer;
}
.prop-btn-book:hover { background: var(--choc); color: #fff; }

.properties-cta { text-align: center; }

/* ════════════════════════════════════
   WHY CHOOSE US
════════════════════════════════════ */
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.feature-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-border);
    transition: all .3s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--choc-light); }
.feature-icon {
    width: 64px; height: 64px;
    background: var(--choc-pale);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 18px;
}
.feature-title { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.feature-desc { font-size: 14px; color: var(--gray); line-height: 1.6; }

/* ════════════════════════════════════
   STATS BANNER
════════════════════════════════════ */
.stats-banner {
    background: linear-gradient(135deg, var(--choc-dark), var(--choc));
    padding: 70px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat-item { text-align: center; }
.stat-num { font-size: 3rem; font-weight: 900; color: #fff; line-height: 1; }
.stat-unit { font-size: 1.5rem; color: var(--choc-light); }
.stat-label { font-size: 14px; color: rgba(255,255,255,.75); margin-top: 8px; }

/* ════════════════════════════════════
   PROCESS / HOW IT WORKS
════════════════════════════════════ */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.process-grid::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: var(--choc-pale);
    z-index: 0;
}
.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}
.process-num {
    width: 72px; height: 72px;
    background: var(--choc);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 900;
    margin: 0 auto 20px;
    box-shadow: 0 4px 16px rgba(92,51,23,.35);
    border: 4px solid #fff;
}
.process-title { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.process-desc { font-size: 14px; color: var(--gray); line-height: 1.6; }

/* ════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════ */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-border);
    transition: all .3s;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.testimonial-stars { color: #f59e0b; font-size: 16px; margin-bottom: 14px; }
.testimonial-text { font-size: 15px; color: var(--gray-dark); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
    width: 46px; height: 46px;
    background: var(--choc-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
.testimonial-name { font-weight: 700; font-size: 14px; }
.testimonial-role { font-size: 12px; color: var(--gray); }

/* ════════════════════════════════════
   CTA SECTION
════════════════════════════════════ */
.cta-section {
    background: linear-gradient(135deg, #1C0F07 0%, #3a1e0c 50%, #5C3317 100%);
    padding: 90px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(160,101,42,.15) 0%, transparent 60%),
                radial-gradient(circle at 70% 50%, rgba(255,255,255,.04) 0%, transparent 60%);
}
.cta-content { position: relative; z-index: 1; }
.cta-title { font-size: 2.6rem; font-weight: 900; color: #fff; margin-bottom: 16px; }
.cta-sub { font-size: 1.05rem; color: rgba(255,255,255,.8); margin-bottom: 36px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ════════════════════════════════════
   FOOTER
════════════════════════════════════ */
#site-footer {
    background: var(--choc-dark);
    color: rgba(255,255,255,.75);
}
.footer-main { padding: 70px 0 50px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; }

.footer-brand .logo-text { font-size: 1.4rem; }
.footer-tagline { font-size: 14px; color: rgba(255,255,255,.6); margin: 14px 0 24px; line-height: 1.7; }
.footer-social { display: flex; gap: 10px; }
.social-icon {
    width: 40px; height: 40px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .25s;
    text-decoration: none;
}
.social-icon svg {
    width: 18px; height: 18px;
    fill: rgba(255,255,255,.75);
    transition: fill .25s;
}
.social-icon:hover {
    background: var(--choc-light);
    border-color: var(--choc-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(160,101,42,.4);
}
.social-icon:hover svg { fill: #fff; }
.social-icon.whatsapp:hover { background: #25D366; border-color: #25D366; box-shadow: 0 6px 18px rgba(37,211,102,.35); }

.footer-col h4 { color: #fff; font-size: 20px; font-weight: 700; margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { color: rgba(255,255,255,.65); font-size: 14px; transition: color .2s; }
.footer-col ul li a:hover { color: var(--choc-light); }

.footer-contact-item { display: flex; gap: 10px; margin-bottom: 14px; font-size: 14px; }
.footer-contact-icon { color: var(--choc-light); font-size: 16px; flex-shrink: 0; margin-top: 2px; }

.footer-newsletter { margin-top: 20px; }
.footer-newsletter p { font-size: 13px; margin-bottom: 12px; }
.newsletter-form { display: flex; gap: 8px; }
.newsletter-form input {
    flex: 1;
    padding: 10px 14px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.4); }
.newsletter-form button {
    padding: 10px 18px;
    background: var(--choc);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    transition: background .2s;
}
.newsletter-form button:hover { background: var(--choc-light); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(255,255,255,.45);
}
.footer-bottom a { color: rgba(255,255,255,.55); }
.footer-bottom a:hover { color: var(--choc-light); }

/* ════════════════════════════════════
   SINGLE PROPERTY PAGE
════════════════════════════════════ */
.page-hero {
    background: linear-gradient(135deg, var(--choc-dark), var(--choc));
    padding: 140px 0 60px;
    color: #fff;
}
.page-hero h1 { color: #fff; font-size: 2.2rem; font-weight: 800; margin-bottom: 8px; }
.page-hero .breadcrumb { display: flex; gap: 8px; font-size: 14px; color: rgba(255,255,255,.7); align-items: center; }
.page-hero .breadcrumb a { color: rgba(255,255,255,.8); }
.page-hero .breadcrumb a:hover { color: #fff; }

.single-prop-section { padding: 60px 0 90px; }
.single-grid { display: grid; grid-template-columns: 1fr 400px; gap: 40px; }

.prop-main-img { width: 100%; height: 460px; object-fit: cover; border-radius: var(--radius-lg); margin-bottom: 20px; }

.single-sidebar {}
.prop-price-box {
    background: var(--choc);
    color: #fff;
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 20px;
    text-align: center;
}
.prop-price-box .price { font-size: 2.2rem; font-weight: 900; }
.prop-price-box .price-label { font-size: 13px; opacity: .8; margin-top: 4px; }

.prop-info-box {
    background: #fff;
    border: 1px solid var(--gray-border);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}
.prop-info-box h3 { font-size: 1rem; font-weight: 700; margin-bottom: 16px; color: var(--gray-dark); }
.prop-info-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--gray-border); font-size: 14px; }
.prop-info-row:last-child { border-bottom: none; }
.prop-info-row .label { color: var(--gray); }
.prop-info-row .value { font-weight: 600; color: var(--gray-dark); }

/* Booking Form */
.booking-box {
    background: linear-gradient(135deg, var(--choc-dark), var(--choc));
    border-radius: var(--radius);
    padding: 28px;
    color: #fff;
}
.booking-box h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 6px; }
.booking-box .sub { font-size: 13px; opacity: .8; margin-bottom: 20px; }
.booking-field { margin-bottom: 14px; }
.booking-field label { display: block; font-size: 12px; font-weight: 600; margin-bottom: 5px; opacity: .9; text-transform: uppercase; letter-spacing: .4px; }
.booking-field input,
.booking-field textarea {
    width: 100%;
    padding: 11px 14px;
    background: rgba(255,255,255,.13);
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    transition: all .2s;
}
.booking-field input::placeholder,
.booking-field textarea::placeholder { color: rgba(255,255,255,.5); }
.booking-field input:focus,
.booking-field textarea:focus { outline: none; border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.2); }
.booking-field-row { display: flex; gap: 12px; }
.booking-field-row .booking-field { flex: 1; }

.btn-book-now {
    width: 100%;
    padding: 14px;
    background: var(--wa-green);
    color: #3a1e0c;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all .25s;
    box-shadow: 0 4px 14px rgba(155, 93, 11, 0.35);
}
.btn-book-now:hover { background: #813f1b; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,.45); }
.booking-success { display:none; text-align:center; padding:16px; background:rgba(255,255,255,.12); border-radius:8px; font-weight:600; }

/* Description */
.prop-desc-section h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 14px; }
.prop-desc-section p { color: var(--gray); line-height: 1.8; }
.prop-specs-section { margin-top: 28px; }
.prop-specs-section h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 16px; }
.specs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.spec-box {
    background: var(--choc-xpale);
    border-radius: var(--radius);
    padding: 18px;
    text-align: center;
}
.spec-box .icon { font-size: 1.6rem; margin-bottom: 6px; }
.spec-box .val { font-size: 1.1rem; font-weight: 800; color: var(--choc); }
.spec-box .lbl { font-size: 12px; color: var(--gray); margin-top: 2px; }

/* ════════════════════════════════════
   LISTINGS PAGE
════════════════════════════════════ */
.listings-section { padding: 40px 0 80px; }
.filter-panel {
    background: #fff;
    border: 1px solid var(--gray-border);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 32px;
    box-shadow: var(--shadow-sm);
}
.filter-panel form { display: flex; gap: 14px; flex-wrap: wrap; align-items: flex-end; }
.filter-field { flex: 1; min-width: 150px; }
.filter-field label { display: block; font-size: 12px; font-weight: 600; color: var(--gray); margin-bottom: 6px; text-transform: uppercase; letter-spacing: .4px; }
.filter-field input,
.filter-field select {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--gray-border);
    border-radius: 8px;
    font-size: 14px;
    background: var(--gray-light);
    color: var(--gray-dark);
    transition: all .2s;
}
.filter-field input:focus,
.filter-field select:focus { outline: none; border-color: var(--choc-light); background: #fff; }
.filter-btn {
    padding: 10px 24px;
    background: var(--choc);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    font-size: 14px;
    transition: background .2s;
}
.filter-btn:hover { background: #1C0F07; }
.filter-clear { padding: 10px 16px; color: var(--gray); border: 1px solid var(--gray-border); border-radius: 8px; text-decoration: none; font-size: 14px; transition: all .2s; }
.filter-clear:hover { background: var(--gray-light); }

.results-info { font-size: 14px; color: var(--gray); margin-bottom: 20px; }
.listings-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.no-results { text-align: center; padding: 80px 20px; color: var(--gray); }
.no-results-icon { font-size: 4rem; margin-bottom: 16px; }

/* ════════════════════════════════════
   RESPONSIVE
════════════════════════════════════ */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-card-wrap { display: none; }
    .properties-grid, .listings-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .single-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .hero-title { font-size: 2.2rem; }
    .main-nav { display: none; }
    .mobile-menu-btn { display: flex; }
    .properties-grid, .listings-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .section-title { font-size: 1.7rem; }
    .process-grid { grid-template-columns: 1fr 1fr; }
    .process-grid::before { display: none; }
    .search-bar-form { flex-direction: column; }
    #search-bar { margin: -30px 16px 0; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
@media (max-width: 480px) {
    .features-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr; }
    .hero-stats { flex-wrap: wrap; gap: 20px; }
}

/* ════════════════════════════════════
   MOBILE NAV — base panel + accordion dropdowns
════════════════════════════════════ */
.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: #1C0F07;
    z-index: 999;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 90px 24px 40px;
    overflow-y: auto;
    text-align: left;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { color: #fff; font-size: 1.3rem; font-weight: 700; }
.mobile-nav .close-btn { position: absolute; top: 24px; right: 24px; background: none; border: none; color: #fff; font-size: 2rem; cursor: pointer; }

/* Plain links (About Us, How It Works, Contact) get a tidy list row */
.mobile-nav > a:not(.btn):not([style]) {
    padding: 16px 4px;
    border-bottom: 1px solid rgba(255,255,255,.1);
    width: 100%;
    font-size: 1.1rem;
}

/* "Browse Properties" CTA button at the bottom keeps spacing */
.mobile-nav > a[style] {
    margin-top: 20px;
}

/* Re-enable + restyle the Properties / Our Offer wrapper for mobile
   (desktop hides/shows this via hover; mobile uses tap + accordion) */
.mobile-nav .nav-dropdown-wrap {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    position: static;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

/* Trigger row: "Properties" / "Our Offer" + chevron sitting right
   next to the text (not pushed to the far edge) */
.mobile-nav .nav-dropdown-trigger {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    padding: 16px 4px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}
.mobile-nav .nav-dropdown-trigger::after {
    display: none; /* no underline animation on mobile */
}
.mobile-nav .nav-dropdown-trigger .nav-chevron {
    margin-left: 2px;
}

/* Chevron rotates when this accordion is open */
.mobile-nav .nav-dropdown-wrap.open .nav-chevron {
    transform: rotate(180deg);
}

/* The dropdown panel becomes a clear, full-width inline accordion
   directly BELOW the trigger row — not absolutely positioned,
   not overlapping the trigger text */
.mobile-nav .nav-dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: block;
    background: rgba(255,255,255,.07);
    border: none;
    border-radius: 12px;
    box-shadow: none;
    min-width: 0;
    width: 100%;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease, padding .3s ease;
    margin: 0;
}
.mobile-nav .nav-dropdown::before {
    display: none; /* remove the desktop arrow tip */
}

/* Open state — JS toggles .open on .nav-dropdown-wrap (and .nav-dropdown) */
.mobile-nav .nav-dropdown-wrap.open .nav-dropdown {
    max-height: 700px;
    padding: 8px;
    margin: 4px 0 10px;
}

/* Items inside the mobile accordion: light text on dark bg.
   Explicit flex + gap so the icon never collides with the text,
   and content is never cut off or hidden under the icon. */
.mobile-nav .nav-dropdown-item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #fff;
    padding: 14px 12px;
    border-radius: 8px;
    width: 100%;
}
.mobile-nav .nav-dropdown-item:hover,
.mobile-nav .nav-dropdown-item:active {
    background: rgba(255,255,255,.12);
}
.mobile-nav .nav-dropdown-icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
}
.mobile-nav .nav-dropdown-item div {
    flex: 1;
    min-width: 0;
}
.mobile-nav .nav-dropdown-item strong {
    color: #fff;
    font-size: 15px;
    display: block;
    white-space: normal;
}
.mobile-nav .nav-dropdown-item span {
    color: rgba(255,255,255,.65);
    font-size: 13px;
    display: block;
    white-space: normal;
}
.mobile-nav .nav-dropdown-item + .nav-dropdown-item {
    border-top: 1px solid rgba(255,255,255,.08);
    margin-top: 2px;
    padding-top: 14px;
}

/* ════════════════════════════════════════════════════════════
   PRIME REALTY — NEW ADDITIONS v2.0
   1. Hero Slider
   2. Property Image Slider + Thumbnails
   3. YouTube Video Section
   ════════════════════════════════════════════════════════════ */

/* ──────────────────────────────────────────
   1. HERO SLIDER
────────────────────────────────────────── */
.hero-slider-section {
    position: relative;
    height: 100vh;
    min-height: 640px;
    max-height: 900px;
    overflow: hidden;
    background: #1C0F07;
}

.hero-slider-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}
.hero-slide.active {
    opacity: 1;
    z-index: 1;
}
.hero-slide.leaving {
    opacity: 0;
    z-index: 0;
}

.hero-slide-inner {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: center;
    height: 100%;
    padding-top: 80px;
    padding-bottom: 80px;
}

/* Hero Arrows */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.4);
    color: #fff;
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s;
    background: transparent;
}
.hero-arrow:hover {
    background: var(--choc);
    border-color: var(--choc);
    transform: translateY(-50%) scale(1.1);
}
.hero-prev { left: 28px; }
.hero-next { right: 28px; }

/* Dots */
.hero-dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}
.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.6);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}
.hero-dot.active {
    background: #fff;
    border-color: #fff;
    transform: scale(1.25);
}
.hero-dot:hover { background: rgba(255,255,255,0.6); }

/* Progress bar */
.hero-progress-bar-wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255,255,255,0.15);
    z-index: 10;
}
.hero-progress-bar {
    height: 100%;
    background: var(--choc-light);
    width: 0%;
    transition: width linear;
}

/* ── Hero content (re-used from original, enhanced) ── */
.hero-left { position: relative; z-index: 2; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    color: rgba(255,255,255,0.95);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 22px;
    backdrop-filter: blur(6px);
}
.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--choc-light);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin: 0 0 20px;
    letter-spacing: -0.5px;
}
.hero-title .highlight {
    color: var(--choc-light);
    position: relative;
}

.hero-subtitle {
    color: rgba(255,255,255,0.82);
    font-size: 1.05rem;
    line-height: 1.65;
    margin-bottom: 32px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}
.hero-stat-num {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--choc-light);
    display: block;
}
.hero-stat-label {
    font-size: 12px;
    color: rgba(255,255,255,0.65);
    margin-top: 2px;
}

/* Hero Card */
.hero-card-wrap {
    position: relative;
    z-index: 2;
    animation: hero-card-in 0.6s ease both;
}
@keyframes hero-card-in {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-float-badge {
    position: absolute;
    top: -18px;
    right: 20px;
    background: linear-gradient(135deg, var(--choc-light), var(--choc-mid));
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(245,158,11,0.35);
    z-index: 3;
}

.hero-featured-card {
    display: block;
    background: rgba(255,255,255,0.96);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(255,255,255,0.3);
}
.hero-featured-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 70px rgba(0,0,0,0.45);
}
.hero-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}
.hero-card-body { padding: 18px 20px; }
.hero-card-tag {
    display: inline-block;
    background: var(--choc-pale);
    color: var(--choc);
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.hero-card-title { font-size: 1rem; font-weight: 700; color: var(--gray-dark); margin-bottom: 8px; line-height: 1.3; }
.hero-card-meta { display: flex; gap: 10px; flex-wrap: wrap; font-size: 12px; color: var(--gray); margin-bottom: 10px; }
.hero-card-price { font-size: 1.3rem; font-weight: 900; color: var(--choc); }

/* ── Responsive hero ── */
@media (max-width: 960px) {
    .hero-slide-inner {
        grid-template-columns: 1fr;
        padding-top: 120px;
        padding-bottom: 60px;
        align-items: flex-start;
    }
    .hero-card-wrap { display: none; }
    .hero-slider-section { height: auto; min-height: 580px; max-height: none; }
    .hero-slide { position: relative; min-height: 580px; }
    .hero-slide:not(.active) { display: none; }
    .hero-slider-track { position: relative; }
}
@media (max-width: 600px) {
    .hero-title { font-size: 2rem; }
    .hero-arrow { width: 42px; height: 42px; font-size: 1.5rem; }
    .hero-prev { left: 12px; }
    .hero-next { right: 12px; }
}


/* ──────────────────────────────────────────
   2. PROPERTY IMAGE SLIDER (Single Page)
────────────────────────────────────────── */
.prop-slider-wrap {
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 28px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    background: #000;
}

/* Main slide area */
.prop-slider-main {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #111;
    aspect-ratio: 16/9;
}

.prop-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}
.prop-slide.active {
    opacity: 1;
    z-index: 1;
}

.prop-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    user-select: none;
    -webkit-user-drag: none;
}

/* Badges on slider */
.prop-slider-badge {
    position: absolute;
    z-index: 5;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    backdrop-filter: blur(4px);
}
.prop-slider-badge.featured-badge {
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, var(--choc-light), var(--choc-mid));
}
.prop-slider-badge.status-badge {
    bottom: 60px;
    right: 16px;
}
.prop-slider-badge.status-available { background: rgba(5,150,105,0.85); }
.prop-slider-badge.status-sold      { background: rgba(220,38,38,0.85); }
.prop-slider-badge.status-rented    { background: rgba(124,58,237,0.85); }
.prop-slider-badge.status-pending   { background: rgba(217,119,6,0.85); }

/* Counter badge */
.prop-slider-counter {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(0,0,0,0.55);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    z-index: 5;
    backdrop-filter: blur(4px);
}

/* Slider arrows */
.prop-slide-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 8;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.5);
    background: rgba(0,0,0,0.4);
    color: #fff;
    font-size: 1.6rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    backdrop-filter: blur(6px);
    opacity: 0;
}
.prop-slider-main:hover .prop-slide-arrow { opacity: 1; }
.prop-slide-arrow:hover {
    background: var(--choc);
    border-color: var(--choc);
    transform: translateY(-50%) scale(1.1);
}
.prop-slide-prev { left: 14px; }
.prop-slide-next { right: 14px; }

/* Touch swipe hint */
.prop-slider-main::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 3;
}

/* Thumbnail strip */
.prop-thumbs-strip {
    display: flex;
    gap: 6px;
    padding: 8px;
    background: #1a1a1a;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--choc) #333;
}
.prop-thumbs-strip::-webkit-scrollbar { height: 4px; }
.prop-thumbs-strip::-webkit-scrollbar-track { background: #333; }
.prop-thumbs-strip::-webkit-scrollbar-thumb { background: var(--choc); border-radius: 2px; }

.prop-thumb {
    flex-shrink: 0;
    width: 90px;
    height: 60px;
    border-radius: 6px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    padding: 0;
    background: none;
    transition: border-color 0.2s, opacity 0.2s, transform 0.2s;
    opacity: 0.6;
}
.prop-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}
.prop-thumb.active {
    border-color: var(--choc-light);
    opacity: 1;
    transform: scale(1.03);
}
.prop-thumb:hover:not(.active) {
    opacity: 0.85;
    border-color: rgba(160,101,42,0.5);
}

@media (max-width: 600px) {
    .prop-thumb { width: 70px; height: 48px; }
    .prop-slide-arrow { opacity: 1; width: 38px; height: 38px; font-size: 1.3rem; }
}


/* ──────────────────────────────────────────
   3. YOUTUBE VIDEO SECTION
────────────────────────────────────────── */
.prime-videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
    margin-bottom: 20px;
}

.prime-video-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.09);
    border: 1px solid var(--border);
    transition: transform 0.3s, box-shadow 0.3s;
}
.prime-video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(92,51,23,0.16);
}

/* 16:9 responsive embed */
.prime-video-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #000;
}
.prime-video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}
.prime-video-invalid {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
}

.prime-video-body {
    padding: 18px 20px 20px;
}
.prime-video-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-dark);
    margin: 0 0 8px;
    line-height: 1.4;
}
.prime-video-desc {
    font-size: 13px;
    color: var(--gray);
    margin: 0 0 14px;
    line-height: 1.55;
}
.prime-video-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: var(--choc);
    text-decoration: none;
    border: 1.5px solid var(--choc);
    padding: 6px 16px;
    border-radius: 20px;
    transition: all 0.2s;
}
.prime-video-link:hover {
    background: var(--choc);
    color: #fff;
}

/* Also used inside plugin shortcode */
.prime-videos-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

@media (max-width: 700px) {
    .prime-videos-grid { grid-template-columns: 1fr; }
}
/* ════════════════════════════════════
   WHAT WE OFFER SECTION
════════════════════════════════════ */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.offer-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-border);
    box-shadow: var(--shadow-sm);
    transition: transform .3s, box-shadow .3s;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.offer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(92,51,23,.16);
    border-color: var(--choc-light);
}

.offer-card-top {
    padding: 28px 24px 22px;
    flex: 1;
    border-bottom: 1px solid var(--gray-border);
}

.offer-icon {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    flex-shrink: 0;
}

.offer-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gray-dark);
    margin-bottom: 10px;
    font-family: 'Cormorant Garamond', Georgia, serif;
}

.offer-desc {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
}

.offer-card-bottom {
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.offer-tag {
    font-size: 11px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.offer-arrow {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform .2s, box-shadow .2s;
    flex-shrink: 0;
    border: none;
    cursor: pointer;
}

.offer-arrow:hover {
    transform: translateX(3px) scale(1.1);
    box-shadow: 0 4px 12px rgba(92,51,23,.2);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .offers-grid {
        grid-template-columns: 1fr;
    }
    .offer-card-top {
        padding: 22px 20px 18px;
    }
    .offer-card-bottom {
        padding: 14px 20px;
    }
}

/* ════════════════════════════════════
   PARTNERS AUTO-SCROLL SLIDER
════════════════════════════════════ */
.partners-section {
    padding: 70px 0;
}

.partners-slider-wrap {
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.partners-slider-track {
    display: flex;
    align-items: center;
    gap: 40px;
    width: max-content;
    will-change: transform;
}

/* Round logo card */
.partner-logo-card {
    flex: 0 0 110px;
    height: 110px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: transparent;
    transition: transform .25s, box-shadow .25s;
    cursor: default;
}

.partner-logo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 28px rgba(92,51,23,.28);
}

.partner-icon {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform .25s;
}

.partner-logo-card:hover .partner-icon {
    transform: scale(1.07);
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    .partners-slider-wrap {
        overflow-x: auto;
        mask-image: none;
        -webkit-mask-image: none;
    }
    .partners-slider-track {
        animation: none !important;
    }
}

/* Tablet */
@media (max-width: 768px) {
    .partner-logo-card,
    .partner-icon {
        width: 88px;
        height: 88px;
    }
    .partners-slider-track {
        gap: 28px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .partner-logo-card,
    .partner-icon {
        width: 72px;
        height: 72px;
    }
    .partners-slider-track {
        gap: 20px;
    }
}
/* ════════════════════════════════════
   RISH GLOBAL — LOGO & IDENTITY OVERRIDES
════════════════════════════════════ */
/* Header logo — white on dark header */
#site-header .logo-img {
    height: 190px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: filter .3s, opacity .3s;
}
#site-header.scrolled .logo-img {
    filter: brightness(0) invert(1);
    opacity: .95;
}
/* Mobile nav logo */
.mobile-nav .logo-img {
    height: 52px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 8px;
}
/* Footer logo */
.footer-brand .logo-img {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 16px;
}

/* ── Section badge accent color fix ── */
.section-badge {
    background: linear-gradient(135deg, var(--choc-light), var(--choc-mid));
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .6px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

/* ── Hero progress bar choc accent ── */
.hero-progress-bar { background: var(--choc-light); }

/* ── Accent links ── */
a { color: var(--choc); }
a:hover { color: var(--choc-dark); }

/* ── Property price color ── */
.prop-price, .hero-card-price { color: var(--choc-light) !important; }

/* ── Active nav underline ── */
.main-nav a::after { background: var(--choc-light); }

/* ── Focus ring color ── */
input:focus, select:focus, textarea:focus {
    border-color: var(--choc-light) !important;
    box-shadow: 0 0 0 3px rgba(160,101,42,.15) !important;
}
/* ════════════════════════════════════
   MOBILE HEADER FIX
════════════════════════════════════ */
@media (max-width: 768px) {

    /* Tighter header height */
    .header-inner {
        height: 64px;
        gap: 8px;
        padding: 0;
    }

    /* Logo smaller — fits on one line */
    .site-logo .logo-img {
        height: 124px !important;
        width: auto;
    }

    /* Hide phone number on mobile — too cramped */
    .header-phone {
        display: none;
    }

    /* Right group: lang + hamburger tight together */
    .nav-right {
        display: flex;
        align-items: center;
        gap: 6px;
        flex-shrink: 0;
    }

    /* Hamburger lines white and visible */
    .mobile-menu-btn {
        display: flex;
        padding: 6px;
        flex-shrink: 0;
    }
    .mobile-menu-btn span {
        width: 22px;
        height: 2px;
        background: #fff;
        border-radius: 2px;
        display: block;
    }

    /* header-cta: keep things in a tight row */
    .header-cta {
        display: flex;
        align-items: center;
        gap: 6px;
        flex-shrink: 0;
    }

    /* Lang switcher compact */
    .gl2h-lang-switcher .trp-language-item {
        padding: 3px 6px !important;
    }
}

@media (max-width: 480px) {

    .header-inner {
        height: 58px;
    }

    .site-logo .logo-img {
        height: 96px !important;
    }

    /* Container padding tighter on very small screens */
    .container {
        padding: 0 14px;
    }
}

@media (max-width: 360px) {
    .site-logo .logo-img {
        height: 80px !important;
    }
    .container {
        padding: 0 10px;
    }
}
/* ════════════════════════════════════
   SERVICE MODALS
════════════════════════════════════ */
.service-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.service-modal.open {
    display: flex;
}

/* Dark overlay */
.service-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(28,15,7,0.75);
    backdrop-filter: blur(4px);
    cursor: pointer;
}

/* Modal box */
.service-modal-box {
    position: relative;
    z-index: 1;
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 24px 80px rgba(0,0,0,.25);
    animation: modal-in .25s cubic-bezier(0.4,0,0.2,1);
}
@keyframes modal-in {
    from { opacity: 0; transform: translateY(24px) scale(.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Close button */
.service-modal-close {
    position: absolute;
    top: 16px;
    right: 18px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: var(--choc-pale, #F2E8DC);
    color: var(--choc, #5C3317);
    font-size: 1.3rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}
.service-modal-close:hover {
    background: var(--choc, #5C3317);
    color: #fff;
}

/* Icon */
.service-modal-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

/* Heading */
.service-modal-box h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-dark, #1f2937);
    margin-bottom: 12px;
    font-family: 'Cormorant Garamond', Georgia, serif;
}

/* Description */
.service-modal-box p {
    font-size: 15px;
    color: var(--gray, #6b7280);
    line-height: 1.75;
    margin-bottom: 20px;
}

/* Feature list */
.service-modal-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.service-modal-list li {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-dark, #1f2937);
    padding: 8px 14px;
    background: var(--choc-xpale, #FAF4EE);
    border-radius: 8px;
    border-left: 3px solid var(--choc, #5C3317);
}

/* CTA button inside modal */
.service-modal-box .btn {
    width: 100%;
    justify-content: center;
    font-size: 15px;
}

/* Mobile modal */
@media (max-width: 480px) {
    .service-modal-box {
        padding: 28px 22px;
    }
    .service-modal-box h2 {
        font-size: 1.25rem;
    }
}


/* ════════════════════════════════════
   OFFERS SECTION — cards open modal
════════════════════════════════════ */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.offer-card {
    background: #fff;
    border-radius: var(--radius-lg, 20px);
    overflow: hidden;
    border: 1px solid var(--gray-border, #e5e7eb);
    box-shadow: var(--shadow-sm);
    transition: transform .3s, box-shadow .3s;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}
.offer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(92,51,23,.16);
    border-color: var(--choc-light, #A0652A);
}

.offer-card-top {
    padding: 28px 24px 22px;
    flex: 1;
    border-bottom: 1px solid var(--gray-border, #e5e7eb);
}

.offer-icon {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    flex-shrink: 0;
}

.offer-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gray-dark, #1f2937);
    margin-bottom: 10px;
    font-family: 'Cormorant Garamond', Georgia, serif;
}

.offer-desc {
    font-size: 14px;
    color: var(--gray, #6b7280);
    line-height: 1.7;
}

.offer-card-bottom {
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.offer-tag {
    font-size: 11px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.offer-arrow {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform .2s, box-shadow .2s;
    flex-shrink: 0;
    border: none;
    cursor: pointer;
}
.offer-arrow:hover {
    transform: translateX(3px) scale(1.1);
    box-shadow: 0 4px 12px rgba(92,51,23,.2);
}

/* Responsive */
@media (max-width: 1024px) {
    .offers-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .offers-grid { grid-template-columns: 1fr; }
    .offer-card-top { padding: 22px 20px 18px; }
    .offer-card-bottom { padding: 14px 20px; }
}


/* ════════════════════════════════════
   MOBILE HEADER FIX
════════════════════════════════════ */
@media (max-width: 768px) {
    .header-inner { height: 64px; gap: 8px; }
    .header-phone { display: none; }
    .nav-right { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
    .mobile-menu-btn { display: flex; padding: 6px; flex-shrink: 0; }
    .mobile-menu-btn span { width: 22px; height: 2px; background: #fff; border-radius: 2px; display: block; }
    .header-cta { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
    .gl2h-lang-switcher .trp-language-item { padding: 3px 6px !important; }
}
@media (max-width: 480px) {
    .header-inner { height: 58px; }
    .container { padding: 0 14px; }
}
@media (max-width: 360px) {
    .container { padding: 0 10px; }
}