/* ============================================================
   landing.css — King Leo Homes and Properties
   Redesigned: modern, image-driven, reference-style
   ============================================================ */

/* -------------------------------------------------------
   CSS CUSTOM PROPERTIES
   ------------------------------------------------------- */
:root {
    --navy:          #1A3C5E;
    --navy-dark:     #12293f;
    --navy-deeper:   #0d1e2d;
    --gold:          #C9A84C;
    --gold-hover:    #b8932e;
    --gold-light:    rgba(201,168,76,.12);
    --bg-white:      #FFFFFF;
    --bg-light:      #F7F8FA;
    --bg-light2:     #EEF2F7;
    --text:          #1A1A2E;
    --text-mid:      #444;
    --subtext:       #6B7280;
    --border:        #E5E7EB;

    --font-sans:     'Inter', 'Segoe UI', system-ui, sans-serif;
    --radius:        10px;
    --radius-lg:     18px;
    --radius-xl:     24px;
    --shadow-sm:     0 1px 4px rgba(0,0,0,.07);
    --shadow-md:     0 4px 20px rgba(0,0,0,.09);
    --shadow-lg:     0 12px 40px rgba(0,0,0,.13);
    --shadow-xl:     0 20px 60px rgba(0,0,0,.16);
    --transition:    all 0.3s ease;
    --nav-height:    72px;
}

/* -------------------------------------------------------
   RESET & BASE
   ------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-sans);
    color: var(--text);
    background: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

/* -------------------------------------------------------
   UTILITY: SECTION LABELS & HEADINGS
   ------------------------------------------------------- */
.section-label {
    display: inline-block;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .5rem;
}

.section-heading {
    font-size: clamp(1.65rem, 3vw, 2.3rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.22;
    margin-bottom: 1rem;
    letter-spacing: -.02em;
}

/* -------------------------------------------------------
   UTILITY: BUTTONS
   ------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    padding: .65rem 1.5rem;
    font-size: .92rem;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    font-family: var(--font-sans);
}

.btn--lg {
    padding: .9rem 2.25rem;
    font-size: 1rem;
}

.btn--primary {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy);
}
.btn--primary:hover {
    background: var(--navy-dark);
    border-color: var(--navy-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(26,60,94,.3);
}

.btn--ghost {
    background: transparent;
    color: var(--text);
    border-color: var(--border);
}
.btn--ghost:hover {
    background: var(--bg-light);
    border-color: #ccc;
}

.btn--outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,.6);
}
.btn--outline:hover {
    background: rgba(255,255,255,.12);
    border-color: #fff;
}

.btn--outline-dark {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
    font-size: .85rem;
    padding: .55rem 1.2rem;
}
.btn--outline-dark:hover {
    background: var(--navy);
    color: #fff;
}

/* -------------------------------------------------------
   SCROLL REVEAL
   ------------------------------------------------------- */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .65s ease, transform .65s ease;
}
.reveal--delay-1 { transition-delay: .1s; }
.reveal--delay-2 { transition-delay: .2s; }
.reveal--delay-3 { transition-delay: .32s; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* -------------------------------------------------------
   NAVIGATION
   ------------------------------------------------------- */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--nav-height);
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 var(--border);
    transition: box-shadow .3s ease;
}
.nav--scrolled { box-shadow: var(--shadow-md); }

.nav__container {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 1.75rem;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

/* Brand */
.nav__brand {
    display: flex;
    align-items: center;
    gap: .7rem;
    flex-shrink: 0;
}
.nav__brand-logo {
    width: 38px; height: 38px;
    border-radius: 10px;
    background: var(--navy);
    color: var(--gold);
    font-size: .95rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: .05em;
    flex-shrink: 0;
}
.nav__brand-logo-img {
    width: 38px; height: 38px;
    border-radius: 10px;
    object-fit: contain;
    flex-shrink: 0;
}
.nav__brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.nav__brand-king { font-size: 1rem; font-weight: 800; color: var(--navy); }
.nav__brand-sub  { font-size: .6rem; font-weight: 600; color: var(--gold); letter-spacing: .06em; text-transform: uppercase; }

/* Desktop links */
.nav__links {
    display: flex;
    align-items: center;
    gap: 2.25rem;
    margin-left: auto;
}
.nav__link {
    font-size: .875rem;
    font-weight: 500;
    color: var(--text-mid);
    position: relative;
    padding-bottom: 2px;
    transition: color .2s;
}
.nav__link::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 0; height: 2px;
    background: var(--gold);
    transition: width .25s ease;
    border-radius: 2px;
}
.nav__link:hover,
.nav__link--active { color: var(--navy); }
.nav__link:hover::after,
.nav__link--active::after { width: 100%; }

/* Nav actions */
.nav__actions { display: flex; align-items: center; gap: .75rem; flex-shrink: 0; }

/* Hamburger */
.nav__hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px; height: 40px;
    background: none;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    padding: 0;
    margin-left: auto;
    flex-shrink: 0;
}
.nav__hamburger-bar { display: block; width: 20px; height: 1.5px; background: var(--navy); border-radius: 2px; transition: var(--transition); transform-origin: center; }
.nav__hamburger.is-open .nav__hamburger-bar:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__hamburger.is-open .nav__hamburger-bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.is-open .nav__hamburger-bar:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer */
.nav__mobile { display: none; flex-direction: column; background: var(--bg-white); border-top: 1px solid var(--border); padding: 1.25rem 1.75rem 1.75rem; gap: .15rem; box-shadow: var(--shadow-md); }
.nav__mobile.is-open { display: flex; }
.nav__mobile-link { font-size: .95rem; font-weight: 500; color: var(--text-mid); padding: .7rem 0; border-bottom: 1px solid var(--border); transition: color .2s; }
.nav__mobile-link:hover { color: var(--navy); }
.nav__mobile-actions { display: flex; gap: .75rem; margin-top: 1.25rem; flex-wrap: wrap; }

/* -------------------------------------------------------
   HERO SECTION
   ------------------------------------------------------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--nav-height) + 4rem) 1.5rem 5rem;
    overflow: hidden;
}

/* Background image */
.hero__bg { position: absolute; inset: 0; }
.hero__bg-img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero__bg-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10,22,40,.68) 0%,
        rgba(10,22,40,.52) 50%,
        rgba(10,22,40,.72) 100%
    );
}

.hero__content {
    position: relative;
    z-index: 1;
    max-width: 820px;
    text-align: center;
}

/* Badge */
.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.2);
    color: rgba(255,255,255,.9);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .04em;
    padding: .4rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}
.hero__badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); flex-shrink: 0; animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.4)} }

/* Headline */
.hero__headline {
    font-size: clamp(2.6rem, 6vw, 4rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    letter-spacing: -.03em;
}

.hero__subheadline {
    font-size: clamp(.95rem, 2vw, 1.1rem);
    color: rgba(255,255,255,.78);
    max-width: 580px;
    margin: 0 auto 2.75rem;
    line-height: 1.72;
}

/* Search bar */
.hero__search {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    padding: .55rem .55rem .55rem 0;
    max-width: 740px;
    margin: 0 auto 3rem;
    overflow: hidden;
}
.hero__search-field {
    display: flex;
    align-items: center;
    gap: .6rem;
    flex: 1;
    padding: .65rem 1.25rem;
    min-width: 0;
}
.hero__search-icon { color: var(--subtext); flex-shrink: 0; display: flex; }
.hero__search-input {
    border: none;
    outline: none;
    font-size: .82rem;
    font-family: var(--font-sans);
    color: var(--text);
    background: transparent;
    width: 100%;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.hero__search-input::placeholder { color: var(--subtext); }
.hero__search-divider { width: 1px; height: 28px; background: var(--border); flex-shrink: 0; }
.hero__search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px; height: 46px;
    border-radius: 50px;
    background: var(--navy);
    color: #fff;
    flex-shrink: 0;
    transition: var(--transition);
    margin-left: .4rem;
}
.hero__search-btn:hover { background: var(--navy-dark); transform: scale(1.05); }

/* Scroll indicator */
.hero__scroll {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}
.hero__scroll-dot {
    width: 24px; height: 40px;
    border: 2px solid rgba(255,255,255,.4);
    border-radius: 50px;
    position: relative;
}
.hero__scroll-dot::after {
    content: '';
    position: absolute;
    top: 5px; left: 50%; transform: translateX(-50%);
    width: 4px; height: 8px;
    background: rgba(255,255,255,.7);
    border-radius: 2px;
    animation: scroll-bounce 1.8s infinite;
}
@keyframes scroll-bounce { 0%,100%{opacity:1;top:5px} 50%{opacity:.3;top:16px} }

/* -------------------------------------------------------
   STATS BAR
   ------------------------------------------------------- */
.stats {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
    padding: 2.5rem 1.5rem;
}
.stats__container {
    max-width: 1000px; margin: 0 auto;
    display: flex; align-items: center; justify-content: center; gap: 0;
}
.stats__item { flex: 1; text-align: center; padding: 1rem 1.5rem; }
.stats__number {
    display: block;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 900;
    color: var(--navy);
    letter-spacing: -.03em;
    line-height: 1;
    margin-bottom: .35rem;
}
.stats__plus { font-size: 70%; color: var(--gold); }
.stats__label {
    display: block;
    font-size: .78rem;
    font-weight: 600;
    color: var(--subtext);
    text-transform: uppercase;
    letter-spacing: .06em;
}
.stats__divider { width: 1px; height: 50px; background: var(--border); flex-shrink: 0; }

/* -------------------------------------------------------
   PROPERTIES SECTION
   ------------------------------------------------------- */
.properties {
    padding: 6rem 1.5rem;
    background: var(--bg-white);
}
.properties__container { max-width: 1200px; margin: 0 auto; }
.properties__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 2.75rem;
    gap: 1rem;
}

/* Property cards */
.properties__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.prop-card {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform .35s ease, box-shadow .35s ease;
}
.prop-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }

.prop-card__img-wrap { position: relative; overflow: hidden; height: 210px; }
.prop-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.prop-card:hover .prop-card__img { transform: scale(1.04); }
.prop-card__badge {
    position: absolute; top: 14px; left: 14px;
    background: var(--navy);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .05em;
    padding: .3rem .75rem;
    border-radius: 50px;
    text-transform: uppercase;
}
.prop-card__badge--gold { background: var(--gold); }

.prop-card__body { padding: 1.4rem 1.5rem 1.5rem; }
.prop-card__meta {
    display: flex;
    align-items: center;
    gap: .35rem;
    font-size: .78rem;
    color: var(--subtext);
    margin-bottom: .5rem;
}
.prop-card__meta svg { color: var(--gold); flex-shrink: 0; }
.prop-card__title { font-size: 1.05rem; font-weight: 800; color: var(--navy); margin-bottom: .85rem; }

.prop-card__features {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.1rem;
}
.prop-card__feat {
    display: flex;
    align-items: center;
    gap: .3rem;
    font-size: .78rem;
    color: var(--subtext);
    font-weight: 500;
}
.prop-card__feat svg { color: var(--navy); opacity: .6; }

.prop-card__footer {
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}
.prop-card__cta {
    display: block;
    text-align: center;
    font-size: .85rem;
    font-weight: 700;
    color: var(--navy);
    border: 1.5px solid var(--navy);
    border-radius: 50px;
    padding: .55rem 1rem;
    width: 100%;
    transition: var(--transition);
}
.prop-card__cta:hover { background: var(--navy); color: #fff; }

/* -------------------------------------------------------
   ABOUT SECTION
   ------------------------------------------------------- */
.about {
    padding: 6rem 1.5rem;
    background: var(--bg-light);
}
.about__container {
    max-width: 1200px; margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about__visual { position: relative; }
.about__img-wrap {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: visible;
}
.about__img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    display: block;
}
.about__img-card {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: var(--navy);
    color: #fff;
    padding: 1.5rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
}
.about__img-card-number {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold);
    letter-spacing: -.02em;
    line-height: 1;
    margin-bottom: .25rem;
}
.about__img-card-label { font-size: .75rem; font-weight: 600; opacity: .8; text-transform: uppercase; letter-spacing: .06em; }

.about__body { font-size: .97rem; color: var(--subtext); line-height: 1.8; margin-bottom: 1.1rem; }

.about__stats-row {
    display: flex;
    align-items: center;
    gap: 0;
    margin: 2rem 0 2.25rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.about__stat { flex: 1; text-align: center; }
.about__stat-num { display: block; font-size: 1.65rem; font-weight: 900; color: var(--navy); letter-spacing: -.02em; }
.about__stat-label { font-size: .72rem; color: var(--subtext); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.about__stat-divider { width: 1px; height: 40px; background: var(--border); flex-shrink: 0; }

/* -------------------------------------------------------
   SERVICES SECTION
   ------------------------------------------------------- */
.services {
    padding: 6rem 1.5rem;
    background: var(--bg-white);
}
.services__container { max-width: 1200px; margin: 0 auto; }
.services__header { max-width: 600px; margin-bottom: 3.5rem; }
.services__intro { color: var(--subtext); font-size: .97rem; line-height: 1.75; margin-top: .75rem; }

.services__split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.services__img-wrap { position: relative; border-radius: var(--radius-xl); overflow: hidden; height: 500px; }
.services__img { width: 100%; height: 100%; object-fit: cover; }
.services__img-badge {
    position: absolute;
    bottom: 24px; left: 24px;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-lg);
    padding: .85rem 1.25rem;
    display: flex;
    align-items: center;
    gap: .85rem;
    box-shadow: var(--shadow-md);
}
.services__img-badge-icon {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: #22c55e;
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.services__img-badge-title { font-size: .88rem; font-weight: 700; color: var(--navy); }
.services__img-badge-sub  { font-size: .72rem; color: var(--subtext); margin-top: .1rem; }

/* Service cards */
.services__cards { display: flex; flex-direction: column; gap: 1.1rem; }

.svc-card {
    display: flex;
    align-items: flex-start;
    gap: 1.1rem;
    padding: 1.4rem 1.5rem;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: var(--transition);
    cursor: default;
}
.svc-card:hover { background: var(--bg-white); box-shadow: var(--shadow-md); transform: translateX(4px); border-color: transparent; }

.svc-card__icon {
    width: 46px; height: 46px; border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    color: #fff;
}
.svc-card__icon--blue   { background: #3B82F6; }
.svc-card__icon--gold   { background: var(--gold); }
.svc-card__icon--green  { background: #22C55E; }
.svc-card__icon--purple { background: #8B5CF6; }

.svc-card__body {}
.svc-card__title { font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: .35rem; }
.svc-card__text  { font-size: .845rem; color: var(--subtext); line-height: 1.65; }

/* -------------------------------------------------------
   HOW IT WORKS
   ------------------------------------------------------- */
.how-it-works {
    padding: 6rem 1.5rem;
    background: var(--bg-light);
}
.how-it-works__container { max-width: 1100px; margin: 0 auto; }
.how-it-works__header { text-align: center; margin-bottom: 3.5rem; }
.how-it-works__intro { color: var(--subtext); font-size: .97rem; margin-top: .5rem; }

.how-it-works__steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
    justify-content: center;
}

.how-it-works__step {
    flex: 1;
    max-width: 300px;
    text-align: center;
    padding: 0 1rem;
}

.how-it-works__step-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-xl);
    margin-bottom: 1.5rem;
    height: 140px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    box-shadow: var(--shadow-md);
    color: rgba(255,255,255,0.85);
}
.how-it-works__badge {
    position: absolute;
    bottom: 14px; left: 14px;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--gold);
    color: #fff;
    font-size: 1rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 12px rgba(201,168,76,.5);
}

.how-it-works__title { font-size: 1rem; font-weight: 800; color: var(--navy); margin-bottom: .5rem; }
.how-it-works__desc  { font-size: .855rem; color: var(--subtext); line-height: 1.65; }

.how-it-works__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 0 .5rem;
    margin-top: 90px;
    color: var(--navy);
    opacity: .3;
}

/* -------------------------------------------------------
   PARTNERS STRIP
   ------------------------------------------------------- */
.partners {
    padding: 3rem 1.5rem;
    background: var(--bg-white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.partners__container { max-width: 1100px; margin: 0 auto; }
.partners__label {
    text-align: center;
    font-size: .8rem;
    font-weight: 600;
    color: var(--subtext);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 2rem;
}
.partners__logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3.5rem;
    flex-wrap: wrap;
}
.partners__logo {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text-mid);
    opacity: .35;
    letter-spacing: -.02em;
    transition: opacity .2s;
}
.partners__logo span { color: var(--gold); }
.partners__logo:hover { opacity: .7; }

/* -------------------------------------------------------
   TESTIMONIALS SECTION
   ------------------------------------------------------- */
.testimonials {
    padding: 6rem 1.5rem;
    background: var(--bg-light);
}
.testimonials__container { max-width: 1100px; margin: 0 auto; }
.testimonials__header { margin-bottom: 3rem; }

/* Slider */
.testimonials__slider { position: relative; overflow: hidden; }
.testimonials__track {
    display: flex;
    transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.testimonials__card {
    min-width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    padding: 2.5rem 3rem;
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.testimonials__avatar-wrap { flex-shrink: 0; }
.testimonials__avatar {
    width: 90px; height: 90px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top center;
    border: 3px solid var(--gold);
}

.testimonials__content { flex: 1; }
.testimonials__stars { display: flex; gap: .2rem; margin-bottom: 1rem; }
.testimonials__quote {
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.78;
    font-style: italic;
    margin-bottom: 1.25rem;
}
.testimonials__name { font-weight: 800; color: var(--navy); font-size: .95rem; display: block; }
.testimonials__apt  { font-size: .8rem; color: var(--subtext); display: block; margin-top: .2rem; }

/* Dots */
.testimonials__dots {
    display: flex;
    justify-content: center;
    gap: .6rem;
    margin-top: 2rem;
}
.testimonials__dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    cursor: pointer;
    transition: all .25s;
    padding: 0;
}
.testimonials__dot--active {
    background: var(--gold);
    width: 24px;
    border-radius: 4px;
}

/* -------------------------------------------------------
   CALL TO ACTION SECTION
   ------------------------------------------------------- */
.cta {
    position: relative;
    padding: 7rem 1.5rem;
    overflow: hidden;
}
.cta__bg { position: absolute; inset: 0; }
.cta__bg-img { width: 100%; height: 100%; object-fit: cover; }
.cta__bg-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(10,22,40,.88) 0%, rgba(26,60,94,.82) 100%);
}

.cta__container {
    position: relative; z-index: 1;
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}
.cta__heading {
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 1.1rem;
    letter-spacing: -.02em;
}
.cta__subtext { color: rgba(255,255,255,.72); font-size: 1rem; line-height: 1.7; margin-bottom: 2.5rem; }
.cta__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* -------------------------------------------------------
   FOOTER
   ------------------------------------------------------- */
.footer {
    background: var(--navy-deeper);
    padding: 5rem 1.5rem 0;
}
.footer__container {
    max-width: 1200px; margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.75fr;
    gap: 3rem;
    padding-bottom: 3.5rem;
    border-bottom: 1px solid rgba(255,255,255,.07);
}

/* Brand */
.footer__brand { display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem; }
.footer__brand-logo {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,.08);
    color: var(--gold);
    font-size: .95rem;
    font-weight: 900;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.footer__brand-logo-img {
    width: 40px; height: 40px;
    border-radius: 10px;
    object-fit: contain;
    flex-shrink: 0;
    background: rgba(255,255,255,.1);
}
.footer__brand-king { font-size: 1rem; font-weight: 800; color: #fff; line-height: 1.15; }
.footer__brand-sub  { font-size: .6rem; font-weight: 600; color: var(--gold); letter-spacing: .06em; text-transform: uppercase; }

.footer__tagline { font-size: .875rem; color: rgba(255,255,255,.45); margin-bottom: 1.5rem; line-height: 1.6; max-width: 260px; }

.footer__social { display: flex; gap: .65rem; }
.footer__social-link {
    display: flex; align-items: center; justify-content: center;
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.12);
    color: rgba(255,255,255,.6);
    transition: var(--transition);
}
.footer__social-link:hover { background: var(--gold); border-color: var(--gold); color: #fff; }

/* Link columns */
.footer__col-heading { font-size: .75rem; font-weight: 700; color: rgba(255,255,255,.85); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 1.5rem; }
.footer__links { display: flex; flex-direction: column; gap: .75rem; }
.footer__link { font-size: .875rem; color: rgba(255,255,255,.5); transition: color .2s; }
.footer__link:hover { color: var(--gold); }

/* Contact column */
.footer__contact-form { display: flex; flex-direction: column; gap: .6rem; }
.footer__contact-input {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 50px;
    padding: .65rem 1.1rem;
    font-size: .85rem;
    font-family: var(--font-sans);
    color: #fff;
    outline: none;
    transition: border-color .2s;
    min-width: 0;
}
.footer__contact-input::placeholder { color: rgba(255,255,255,.35); }
.footer__contact-input:focus { border-color: var(--gold); outline: none; }
.footer__contact-textarea {
    border-radius: 12px;
    resize: vertical;
    min-height: 80px;
}
.footer__contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    background: var(--gold);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: .65rem 1.25rem;
    font-size: .85rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    margin-top: .2rem;
}
.footer__contact-btn:hover { background: var(--gold-hover); }
.footer__contact-btn:disabled { opacity: .65; cursor: not-allowed; }
.footer__contact-status { font-size: .8rem; margin: 0; display: none; }

/* Bottom bar */
.footer__bottom {
    padding: 1.5rem 0;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}
.footer__copyright { font-size: .78rem; color: rgba(255,255,255,.28); }
.footer__bottom-links { display: flex; gap: 1.5rem; }
.footer__bottom-link { font-size: .78rem; color: rgba(255,255,255,.35); transition: color .2s; }
.footer__bottom-link:hover { color: var(--gold); }

/* -------------------------------------------------------
   RESPONSIVE — TABLET (960px)
   ------------------------------------------------------- */
@media (max-width: 960px) {
    /* Nav */
    .nav__links, .nav__actions { display: none; }
    .nav__hamburger { display: flex; }

    /* Hero search */
    .hero__search {
        flex-direction: column;
        align-items: stretch;
        border-radius: var(--radius-lg);
        padding: .5rem;
        gap: 0;
    }
    .hero__search-divider { width: 100%; height: 1px; margin: 0; }
    .hero__search-btn { width: 100%; height: 46px; border-radius: var(--radius); margin: .5rem 0 0; }
    .hero__search-field { padding: .75rem 1rem; }

    /* Properties */
    .properties__grid { grid-template-columns: 1fr 1fr; }

    /* About */
    .about__container { grid-template-columns: 1fr; gap: 3rem; }
    .about__img-card { right: 0; bottom: -20px; }

    /* Services */
    .services__split { grid-template-columns: 1fr; gap: 2.5rem; }
    .services__img-wrap { height: 320px; }

    /* How it works */
    .how-it-works__steps { flex-direction: column; align-items: center; gap: 1.5rem; }
    .how-it-works__arrow { transform: rotate(90deg); margin-top: 0; }
    .how-it-works__step { max-width: 400px; }

    /* Testimonials */
    .testimonials__card { flex-direction: column; gap: 1.5rem; padding: 2rem; }

    /* Stats */
    .stats__container { flex-wrap: wrap; }
    .stats__item { min-width: 140px; }
    .stats__divider { display: none; }

    /* Footer */
    .footer__container { grid-template-columns: 1fr 1fr; }
    .footer__col--brand { grid-column: 1 / -1; }
    .footer__col--contact { grid-column: 1 / -1; }
}

/* -------------------------------------------------------
   RESPONSIVE — MOBILE (600px)
   ------------------------------------------------------- */
@media (max-width: 600px) {
    :root { --nav-height: 66px; }

    .hero { padding: calc(var(--nav-height) + 2.5rem) 1.25rem 4rem; }
    .hero__headline { font-size: 2.15rem; }
    .hero__search { display: none; } /* simplify on mobile */

    .properties__grid { grid-template-columns: 1fr; }
    .properties__header { flex-direction: column; align-items: flex-start; }

    .about { padding: 4rem 1.25rem; }
    .about__img { height: 320px; }
    .about__img-card { right: 0; bottom: -16px; padding: 1rem 1.25rem; }
    .about__img-card-number { font-size: 1.5rem; }
    .about__stats-row { gap: 0; }

    .services { padding: 4rem 1.25rem; }
    .how-it-works { padding: 4rem 1.25rem; }
    .how-it-works__step-icon { height: 120px; }

    .testimonials { padding: 4rem 1.25rem; }
    .testimonials__card { padding: 1.5rem; }
    .testimonials__avatar { width: 70px; height: 70px; }

    .cta { padding: 5rem 1.25rem; }
    .cta__heading { font-size: 1.8rem; }

    .footer { padding: 3.5rem 1.25rem 0; }
    .footer__container { grid-template-columns: 1fr; gap: 2rem; }
    .footer__col--brand { grid-column: auto; }
    .footer__col--contact { grid-column: auto; }
    .footer__bottom { flex-direction: column; text-align: center; }
    .footer__bottom-links { justify-content: center; }

    .partners__logos { gap: 1.5rem; }

    .section-heading { font-size: 1.6rem; }
}
