/* ═══════════════════════════════════════════════════════
   NICMAC CREST — Master Stylesheet
   Navy #00377c | Gold #fad220 | Green #59c053
   ═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

/* ── Variables ─────────────────────────────────────────── */
:root {
    --navy: #00377c;
    --navy-dk: #002558;
    --gold: #fad220;
    --gold-dk: #d9b400;
    --green: #59c053;
    --green-dk: #3fa33a;
    --orange: #ff6b35;
    --white: #ffffff;
    --surface: #f5f7fc;
    --border: #e4e7ef;
    --text: #1c2340;
    --muted: #697184;
    --hdr-h: 76px;
    --r: 10px;
    --r-lg: 18px;
    --sh: 0 4px 20px rgba(0, 55, 124, .09);
    --sh-lg: 0 14px 44px rgba(0, 55, 124, .14);
    --ease: cubic-bezier(.4, 0, .2, 1);
    --dur: .26s;
    --fh: Arial, "Arial black", "Arial bold", sans-serif;
    --fb: 'Plus Jakarta Sans', system-ui, sans-serif;
}

/* ── Reset ─────────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--fb);
    color: var(--text);
    background: var(--white);
    line-height: 1.65;
    overflow-x: hidden;
    padding-top: var(--hdr-h);
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    font-family: var(--fb);
    cursor: pointer;
    border: none;
}

/* ── Layout helpers*/
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-pad {
    padding: 84px 0;
}

.surface-bg {
    background: var(--surface);
}

.white-bg {
    background: var(--white);
}

.navy-bg {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dk) 100%);
}

/* Section header */
.sec-head {
    text-align: center;
    margin-bottom: 52px;
}

.sec-head h2 {
    font-family: var(--fh);
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--muted);
    line-height: 1.15;
    margin-bottom: 10px;


}

.sec-head h2 em {
    font-style: normal;
    display: inline-block;
    background: linear-gradient(135deg, var(--orange) 0%, var(--gold) 50%, var(--green) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}


.sec-head p {
    color: var(--muted);
    font-size: 1.02rem;
    max-width: 600px;
    margin: 0 auto;
}

.sec-head::after {
    content: '';
    display: block;
    width: 52px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--green));
    border-radius: 2px;
    margin: 16px auto 0;
}


/* ── Buttons ───────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: .92rem;
    letter-spacing: .02em;
    border: 2px solid transparent;
    transition: all var(--dur) var(--ease);
    white-space: nowrap;
    cursor: pointer;
}

.btn-navy {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

.btn-navy:hover {
    background: var(--navy-dk);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 55, 124, .28);
}

.btn-green {
    background: var(--green);
    color: var(--white);
    border-color: var(--green);
}

.btn-green:hover {
    background: var(--green-dk);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(89, 192, 83, .3);
}

.btn-gold {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

.btn-gold:hover {
    background: var(--gold-dk);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(250, 210, 32, .35);
}

.btn-outline-w {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, .5);
}

.btn-outline-w:hover {
    background: rgba(255, 255, 255, .1);
    border-color: var(--white);
}

.btn-wa {
    background: #25d366;
    color: var(--white);
    border-color: #25d366;
}

.btn-wa:hover {
    background: #1da851;
    transform: translateY(-2px);
}

/* ── Scroll-to-top ─────────────────────────────────────── */
.scroll-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--white);
    font-size: .9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--sh);
    z-index: 900;
    opacity: 0;
    transform: translateY(10px);
    transition: all var(--dur) var(--ease);
}

.scroll-top.show {
    opacity: 1;
    transform: none;
}

.scroll-top:hover {
    background: var(--green);
}

/* ── Scroll reveal ─────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .55s var(--ease), transform .55s var(--ease);
}

.reveal.in {
    opacity: 1;
    transform: none;
}

.reveal.d1 {
    transition-delay: .08s;
}

.reveal.d2 {
    transition-delay: .16s;
}

.reveal.d3 {
    transition-delay: .24s;
}

.reveal.d4 {
    transition-delay: .32s;
}

/* ══════════════════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════════════════ */
.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    height: var(--hdr-h);
    background: var(--navy);
    display: flex;
    align-items: center;
    z-index: 1000;
    transition: background var(--dur), box-shadow var(--dur);
}

.site-header.scrolled {
    background: rgba(0, 37, 88, .97);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, .18);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 60px;
}

.site-logo img {
    height: 200px;
    width: auto;
}

/* Nav links */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2px;
}

.nav-menu>li {
    position: relative;
}

.nav-menu>li>a {
    color: rgba(255, 255, 255, .82);
    font-weight: 600;
    font-size: .9rem;
    padding: 5px 35px;
    border-radius: 8px;
    transition: color var(--dur), background var(--dur);
    white-space: nowrap;
    display: block;
}

.nav-menu>li>a:hover,
.nav-menu>li>a.active {
    color: var(--gold);
    background: rgba(250, 210, 32, .1);
}

/* Dropdown */
.dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: var(--white);
    min-width: 220px;
    border-radius: var(--r);
    border: 1px solid var(--border);
    box-shadow: var(--sh-lg);
    overflow: hidden;
    z-index: 999;
}

.dropdown li a {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 11px 17px;
    color: var(--navy);
    font-size: .9rem;
    font-weight: 600;
    border-left: 3px solid transparent;
    transition: background var(--dur), color var(--dur), border-color var(--dur);
}

.dropdown li a:hover {
    background: var(--surface);
    color: var(--green);
    border-left-color: var(--green);
}

.has-dropdown:hover .dropdown {
    display: block;
}

/* Call-us pill */
.nav-cta>a {
    background: var(--gold);
    color: var(--navy);
    font-weight: 700;
    font-size: .84rem;
    padding: 8px 17px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 10px rgba(250, 210, 32, .28);
    transition: all var(--dur);
}

.nav-cta>a:hover {
    background: var(--gold-dk);
    transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: transparent;
    border: none;
    border-radius: 6px;
}

.hamburger span {
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    display: block;
    transition: all var(--dur) var(--ease);
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ══════════════════════════════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════════════════════════════ */
.page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dk) 100%);
    padding: 66px 0 54px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 34px;
    background: var(--white);
    clip-path: ellipse(52% 100% at 50% 100%);
}

.page-hero.surface-cut::after {
    background: var(--surface);
}

.page-hero h1 {
    font-family: var(--fh);
    color: var(--white);
    font-size: clamp(1.9rem, 5vw, 3rem);
    margin-bottom: 10px;
}

.page-hero h1 span {
    color: var(--gold);
}

.page-hero p {
    color: rgba(255, 255, 255, .75);
    font-size: 1rem;
    max-width: 540px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-bottom: 14px;
    font-size: .84rem;
}

.breadcrumb a {
    color: var(--gold);
}

.breadcrumb span {
    color: rgba(255, 255, 255, .4);
}

/* ══════════════════════════════════════════════════════════
   HOME — HERO SLIDER
══════════════════════════════════════════════════════════ */
.hero {
    position: relative;
}

.slider-wrap {
    position: relative;
    width: 100%;
    height: 640px;
    overflow: hidden;
}

.slider-track {
    display: flex;
    height: 100%;
    transition: transform .65s cubic-bezier(.77, 0, .175, 1);
    will-change: transform;
}

.slide {
    width: 100%;
    height: 100%;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(0, 37, 88, .2) 0%, rgba(0, 37, 88, .65) 100%);
}

.hero-caption {
    position: absolute;
    bottom: 80px;
    left: 0;
    right: 0;
    z-index: 10;
    text-align: center;
    padding: 0 24px;
    pointer-events: none;
}

.hero-caption h1 {
    font-family: var(--fh);
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 14px;
    text-shadow: 0 2px 24px rgba(0, 0, 0, .45);
}

.hero-caption h2 span {
    color: var(--gold);
}

.hero-caption p {
    color: rgba(255, 255, 255, .88);
    font-size: 1.08rem;
    max-width: 560px;
    margin: 0 auto 26px;
}

.hero-caption .hero-btns {
    pointer-events: all;
    display: inline-flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.slider-arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 14px;
    z-index: 20;
    pointer-events: none;
}

.slider-arrows button {
    pointer-events: all;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .14);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, .28);
    color: var(--white);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--dur) var(--ease);
}

.slider-arrows button:hover {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
    transform: scale(1.08);
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 20;
}

.slider-dots button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    padding: 0;
    background: rgba(255, 255, 255, .4);
    transition: all var(--dur);
}

.slider-dots button.on {
    background: var(--gold);
    width: 24px;
    border-radius: 4px;
}

/* ══════════════════════════════════════════════════════════
   STATS BAR
══════════════════════════════════════════════════════════ */
.stats-bar {
    padding: 52px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}

.stat-item {
    padding: 18px 20px;
    border-right: 1px solid rgba(255, 255, 255, .09);
}

.stat-item:last-child {
    border-right: none;
}

.stat-n {
    font-family: var(--fh);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-l {
    color: rgba(255, 255, 255, .68);
    font-size: .82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
}

/* ══════════════════════════════════════════════════════════
   PROPERTY CARDS (shared home + properties page)
══════════════════════════════════════════════════════════ */
.props-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 26px;
    margin-top: 42px;
}

.prop-card {
    background: var(--white);
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 2px 10px rgba(0, 55, 124, .07);
    transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
    display: flex;
    flex-direction: column;
}

.prop-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--sh-lg);
}

.prop-img {
    position: relative;
    height: 238px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--surface);
}

.prop-img .swiper,
.prop-img .swiper-wrapper,
.prop-img .swiper-slide {
    height: 100%;
}

.prop-img img,
.prop-img .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .55s var(--ease);
}

.prop-card:hover .prop-img>img {
    transform: scale(1.06);
}

.prop-badge-price {
    position: absolute;
    bottom: 12px;
    left: 12px;
    z-index: 5;
    background: var(--navy);
    color: var(--white);
    font-weight: 700;
    font-size: .83rem;
    padding: 5px 13px;
    border-radius: 50px;
}

.prop-badge-purpose {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 5;
    background: var(--gold);
    color: var(--navy);
    font-weight: 700;
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: 4px 11px;
    border-radius: 50px;
}

.prop-watermark {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 5;
    width: 38px;
    height: 38px;
    object-fit: contain;
    opacity: .88;
    pointer-events: none;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, .3));
}

/* Title typewriter overlay */
.prop-title-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    z-index: 6;
    pointer-events: none;
}

.typewriter {
    font-family: var(--fh);
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--white);
    text-shadow: 0 2px 12px rgba(0, 0, 0, .8);
    text-align: center;
    line-height: 1.3;
}

.prop-body {
    padding: 20px 22px 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.prop-title {
    font-family: var(--fh);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
    line-height: 1.3;
    display: flex;
    align-items: center;
    gap: 7px;
}

.prop-title img {
    height: 18px;
    width: auto;
    flex-shrink: 0;
}

.prop-meta {
    flex: 1;
}

.prop-meta p {
    font-size: .95rem;
    color: var(--muted);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.prop-meta p i {
    color: var(--green);
    font-size: .85rem;
}

.prop-meta strong {
    color: var(--text);
    font-weight: 600;
}

.prop-foot {
    margin-top: 15px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.prop-stars {
    color: var(--gold);
    font-size: .82rem;
    display: flex;
    gap: 2px;
}

.prop-link {
    font-size: .84rem;
    font-weight: 700;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color var(--dur);
}

.prop-link i {
    font-size: .72rem;
    transition: transform var(--dur);
}

.prop-link:hover {
    color: var(--green);
}

.prop-link:hover i {
    transform: translateX(4px);
}

/* Swiper inside cards */
.prop-img .swiper-button-next,
.prop-img .swiper-button-prev {
    color: var(--white);
    background: rgba(0, 0, 0, .32);
    width: 28px;
    height: 28px;
    border-radius: 50%;
}

.prop-img .swiper-button-next::after,
.prop-img .swiper-button-prev::after {
    font-size: 11px;
}

.prop-img .swiper-pagination-bullet {
    background: var(--white);
    opacity: .55;
}

.prop-img .swiper-pagination-bullet-active {
    background: var(--gold);
    opacity: 1;
}

/* ══════════════════════════════════════════════════════════
   FEATURES (Why Choose Us)
══════════════════════════════════════════════════════════ */
.feat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 26px;
    margin-top: 48px;
}

.feat-card {
    padding: 34px 24px;
    border-radius: var(--r-lg);
    border: 1px solid var(--border);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all var(--dur) var(--ease);
}

.feat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--navy), var(--green));
    transform: scaleX(0);
    transition: transform var(--dur) var(--ease);
}

.feat-card:hover {
    border-color: var(--navy);
    transform: translateY(-5px);
    box-shadow: var(--sh-lg);
}

.feat-card:hover::before {
    transform: scaleX(1);
}

.feat-icon {
    width: 62px;
    height: 62px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 17px;
    font-size: 1.55rem;
    transition: transform var(--dur);
}

.feat-card:hover .feat-icon {
    transform: scale(1.1) rotate(-4deg);
}

.feat-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 9px;
}

.feat-card p {
    font-size: .86rem;
    color: var(--muted);
    line-height: 1.65;
}

/* ══════════════════════════════════════════════════════════
   CATEGORIES
══════════════════════════════════════════════════════════ */
.cats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 46px;
}

.cat-card {
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 28px 20px;
    text-align: center;
    border: 1px solid var(--border);
    display: block;
    transition: all var(--dur) var(--ease);
}

.cat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--sh-lg);
    border-color: transparent;
}

.cat-icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 1.65rem;
    transition: transform var(--dur);
}

.cat-card:hover .cat-icon {
    transform: scale(1.08);
}

.cat-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
}

.cat-card p {
    font-size: .83rem;
    color: var(--muted);
}

/* ══════════════════════════════════════════════════════════
   CTA BANNER
══════════════════════════════════════════════════════════ */
.cta-section {
    padding: 88px 0;
    background: linear-gradient(135deg, var(--navy) 0%, #005daa 55%, var(--navy-dk) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    top: -50%;
    right: -8%;
    border-radius: 50%;
    background: rgba(250, 210, 32, .05);
    pointer-events: none;
}

.cta-inner {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-inner h2 {
    font-family: var(--fh);
    font-size: clamp(2rem, 4.5vw, 3rem);
    color: var(--white);
    margin-bottom: 14px;
}

.cta-inner h2 span {
    color: var(--gold);
}

.cta-inner p {
    color: rgba(255, 255, 255, .76);
    font-size: 1.05rem;
    max-width: 530px;
    margin: 0 auto 30px;
}

.cta-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ══════════════════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════════════════ */
/* Homepage cards */
.testi-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 22px;
    margin-top: 48px;
}

.testi-card {
    background: var(--surface);
    border-radius: var(--r-lg);
    padding: 28px 24px;
    border: 1px solid var(--border);
    position: relative;
}

.testi-card::before {
    content: '\201C';
    position: absolute;
    top: -8px;
    left: 16px;
    font-family: var(--fh);
    font-size: 4.5rem;
    color: var(--gold);
    line-height: 1;
    opacity: .35;
    pointer-events: none;
}

.testi-card p {
    font-style: italic;
    line-height: 1.7;
    color: var(--text);
    font-size: .92rem;
    margin-bottom: 16px;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 11px;
}

.testi-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--green));
    color: var(--white);
    font-weight: 700;
    font-size: .95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testi-name {
    font-weight: 700;
    font-size: .88rem;
    color: var(--navy);
}

.testi-role {
    font-size: .76rem;
    color: var(--muted);
}

.testi-stars {
    color: var(--gold);
    font-size: .78rem;
    display: flex;
    gap: 2px;
    margin-top: 3px;
}

/* Testimonials page — two-column layout */
.testi-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    margin-top: 46px;
    align-items: start;
}

.testi-box {
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 30px;
    border: 1px solid var(--border);
    box-shadow: var(--sh);
}

.testi-box h2 {
    font-family: var(--fh);
    font-size: 1.7rem;
    color: var(--navy);
    margin-bottom: 20px;
    text-align: center;
}

/* Slider inside testi-box */
.testi-viewport {
    position: relative;
    height: 340px;
    overflow: hidden;
    margin-bottom: 14px;
}

.testi-slide {
    position: absolute;
    inset: 0;
    background: var(--surface);
    border-radius: var(--r);
    padding: 24px 22px;
    border: 1px solid var(--border);
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .5s var(--ease), transform .5s var(--ease);
}

.testi-slide.on {
    opacity: 1;
    transform: none;
}

.testi-slide::before {
    content: '\201C';
    position: absolute;
    top: 8px;
    left: 14px;
    font-family: var(--fh);
    font-size: 4rem;
    color: var(--gold);
    line-height: 1;
    opacity: .35;
    pointer-events: none;
}

.testi-quote {
    font-style: italic;
    line-height: 1.7;
    color: var(--text);
    font-size: .93rem;
    margin-bottom: 16px;
}

.testi-sep {
    border: none;
    border-top: 1px solid var(--border);
    margin-bottom: 14px;
}

.testi-dots {
    display: flex;
    justify-content: center;
    gap: 7px;
}

.testi-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--border);
    padding: 0;
    border: none;
    cursor: pointer;
    transition: all var(--dur);
}

.testi-dot.on {
    background: var(--gold);
    width: 22px;
    border-radius: 4px;
}

/* Form box */
.form-intro {
    color: var(--muted);
    font-size: .88rem;
    text-align: center;
    margin-bottom: 22px;
    line-height: 1.6;
}

.testi-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-weight: 700;
    font-size: .84rem;
    color: var(--navy);
}

.form-group input,
.form-group textarea {
    padding: 11px 14px;
    border: 1.5px solid var(--border);
    border-radius: 9px;
    font-family: var(--fb);
    font-size: .92rem;
    color: var(--text);
    outline: none;
    transition: border-color var(--dur), box-shadow var(--dur);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(0, 55, 124, .1);
}

.form-group textarea {
    min-height: 110px;
    resize: vertical;
}

.rating-stars {
    display: flex;
    gap: 7px;
    font-size: 1.35rem;
    margin-top: 4px;
}

.rating-stars i {
    cursor: pointer;
    color: var(--border);
    transition: color var(--dur);
}

.rating-stars i:hover,
.rating-stars i.active {
    color: var(--gold);
}

/* ══════════════════════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════════════════════ */
.about-grid {
    display: block;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    margin-bottom: 72px;
}

.about-img-wrap {
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--sh-lg);
}

.about-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
}

.about-text h2 {
    font-family: var(--fh);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: var(--navy);
    margin-bottom: 18px;
}

.about-text p {
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 18px;
    font-size: 1.02rem;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 24px;
}

.check-list li {
    padding: 10px 14px 10px 38px;
    position: relative;
    margin-bottom: 8px;
    background: var(--surface);
    border-radius: 8px;
    font-size: .94rem;
    color: var(--text);
}

.check-list li::before {
    content: '';
    position: absolute;
    left: 13px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.check-list li i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white);
    font-size: .65rem;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    margin: 56px 0;
}

.mission-card {
    background: var(--white);
    padding: 36px 28px;
    border-radius: var(--r-lg);
    box-shadow: var(--sh);
    text-align: center;
    border: 1px solid var(--border);
    transition: transform var(--dur), box-shadow var(--dur);
}

.mission-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--sh-lg);
}

.mission-card i {
    font-size: 2.6rem;
    color: var(--green);
    margin-bottom: 16px;
    display: block;
}

.mission-card h3 {
    color: var(--navy);
    margin-bottom: 12px;
    font-size: 1.2rem;
    font-weight: 700;
}

.mission-card p {
    color: var(--muted);
    line-height: 1.7;
    font-size: .92rem;
}

.promise-card {
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 48px;
    box-shadow: var(--sh-lg);
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    border-top: 4px solid var(--navy);
}

.promise-card h2 {
    font-family: var(--fh);
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 22px;
}

.promise-card h2 em {
    font-style: normal;
    color: var(--orange);
}

.promise-points {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 20px 0;
    text-align: left;
}

.promise-pt {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 14px 18px;
    background: var(--surface);
    border-radius: 9px;
    border-left: 3px solid var(--navy);
}

.promise-pt i {
    color: var(--navy);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.promise-pt span {
    color: var(--text);
    font-size: .94rem;
}

.audience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
    align-items: center;
}

.audience-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.audience-item {
    background: var(--white);
    padding: 22px 24px;
    border-radius: var(--r-lg);
    box-shadow: var(--sh);
    border-left: 4px solid transparent;
    transition: all var(--dur);
    font-size: 1rem;
    color: var(--text);
    font-weight: 600;
}

.audience-item:hover {
    border-left-color: var(--navy);
    transform: translateX(6px);
}

.audience-item em {
    font-style: normal;
    color: var(--navy);
}

.services-trio {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.svc-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: var(--r-lg);
    box-shadow: var(--sh);
    text-align: center;
    border: 1px solid var(--border);
    border-top: 3px solid var(--green);
    transition: transform var(--dur), box-shadow var(--dur);
}

.svc-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--sh-lg);
}

.svc-card i {
    font-size: 2.8rem;
    color: var(--navy);
    margin-bottom: 14px;
    display: block;
    transition: color var(--dur);
}

.svc-card:hover i {
    color: var(--orange);
}

.svc-card h4 {
    color: var(--navy);
    font-size: 1.1rem;
    font-weight: 700;
}

/* ══════════════════════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════════════════════ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 44px;
    align-items: start;
}

.contact-info-box {
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 32px;
    border: 1px solid var(--border);
    box-shadow: var(--sh);
}

.contact-info-box h2 {
    font-family: var(--fh);
    font-size: 1.75rem;
    color: var(--navy);
    margin-bottom: 10px;
}

.contact-info-box>p {
    color: var(--muted);
    font-size: .93rem;
    line-height: 1.7;
    margin-bottom: 26px;
}

.c-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}

.c-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--navy);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    flex-shrink: 0;
}

.c-text strong {
    display: block;
    font-weight: 700;
    color: var(--navy);
    font-size: .9rem;
    margin-bottom: 3px;
}

.c-text span {
    color: var(--muted);
    font-size: .87rem;
    line-height: 1.55;
}

.hours-box {
    background: var(--surface);
    border-radius: var(--r);
    padding: 18px;
    margin-top: 22px;
}

.hours-box h4 {
    color: var(--navy);
    font-weight: 700;
    margin-bottom: 12px;
}

.hours-box ul {
    padding: 0;
}

.hours-box li {
    display: flex;
    justify-content: space-between;
    padding: 7px 0;
    border-bottom: 1px solid var(--border);
    font-size: .88rem;
    color: var(--text);
}

.hours-box li:last-child {
    border-bottom: none;
}

.contact-form-box {
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 32px;
    border: 1px solid var(--border);
    box-shadow: var(--sh);
}

.contact-form-box h3 {
    font-family: var(--fh);
    font-size: 1.7rem;
    color: var(--navy);
    margin-bottom: 22px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.submit-btn {
    background: var(--green);
    color: var(--white);
    border: none;
    padding: 14px 30px;
    border-radius: 9px;
    font-size: .96rem;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background var(--dur), transform var(--dur);
}

.submit-btn:hover {
    background: var(--green-dk);
    transform: translateY(-2px);
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    border-radius: 8px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .93rem;
    margin-bottom: 22px;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    border-radius: 8px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .93rem;
    margin-bottom: 22px;
}

.map-box {
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--sh);
    margin-top: 40px;
}

.map-box iframe {
    width: 100%;
    height: 340px;
    border: none;
    display: block;
}

/* ══════════════════════════════════════════════════════════
   FILTER BAR (properties page)
══════════════════════════════════════════════════════════ */
.filter-bar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 18px 0;
    position: sticky;
    top: var(--hdr-h);
    z-index: 99;
    box-shadow: 0 2px 8px rgba(0, 55, 124, .06);
}

.filter-form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: flex-end;
}

.fg {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    min-width: 130px;
}

.fg label {
    font-size: .74rem;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .06em;
}

.fg input,
.fg select {
    padding: 10px 13px;
    border: 1.5px solid var(--border);
    border-radius: 9px;
    font-family: var(--fb);
    font-size: .9rem;
    color: var(--text);
    outline: none;
    transition: border-color var(--dur);
}

.fg input:focus,
.fg select:focus {
    border-color: var(--navy);
}

/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
.site-footer {
    background: var(--navy-dk);
    color: rgba(255, 255, 255, .68);
    padding: 58px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 36px;
    padding-bottom: 44px;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.footer-brand p {
    font-size: .86rem;
    line-height: 1.75;
    margin: 14px 0 18px;
}

.footer-logo img {
    height: 200px;
    filter: brightness(0) invert(1);
}

.socials {
    display: flex;
    gap: 9px;
}

.social-btn {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .09);
    color: var(--white);
    font-size: .88rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--dur);
}

.social-btn:hover {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

.footer-col h4 {
    font-size: .8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: .09em;
}

.footer-col li {
    margin-bottom: 9px;
}

.footer-col a {
    font-size: .85rem;
    color: rgba(255, 255, 255, .58);
    transition: color var(--dur);
}

.footer-col a:hover {
    color: var(--gold);
}

.footer-bottom {
    padding: 16px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: .78rem;
    color: rgba(255, 255, 255, .35);
}

.footer-bottom a {
    color: var(--gold);
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */
@media(max-width:1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .audience-grid {
        grid-template-columns: 1fr;
    }

    .testi-page-grid {
        grid-template-columns: 1fr;
    }
}

@media(max-width:768px) {
    :root {
        --hdr-h: 66px;
    }

    /* Mobile nav slide-down */
    .nav-menu {
        flex-direction: column;
        position: fixed;
        top: var(--hdr-h);
        left: 0;
        width: 100%;
        background: var(--navy-dk);
        padding: 16px 0 24px;
        gap: 0;
        display: none;
        overflow-y: auto;
        max-height: calc(100dvh - var(--hdr-h));
        box-shadow: 0 8px 28px rgba(0, 0, 0, .22);
    }

    .nav-menu.open {
        display: flex;
    }

    .nav-menu>li>a {
        padding: 12px 22px;
        border-radius: 0;
    }

    .hamburger {
        display: flex;
    }

    .dropdown {
        position: static;
        box-shadow: none;
        border: none;
        border-radius: 0;
        background: rgba(255, 255, 255, .04);
    }

    .dropdown li a {
        color: rgba(255, 255, 255, .7);
        padding-left: 38px;
    }

    .dropdown li a:hover {
        background: rgba(255, 255, 255, .07);
        color: var(--gold);
    }

    .has-dropdown:hover .dropdown {
        display: block;
    }

    /* Hero */
    .slider-wrap {
        height: 420px;
    }

    .hero-caption h1 {
        font-size: 2rem;
    }

    .hero-caption {
        bottom: 44px;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
    }

    /* Stats */
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stat-item:nth-child(2) {
        border-right: none;
    }

    /* Grids */
    .props-grid {
        grid-template-columns: 1fr;
    }

    .feat-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .form-row-2 {
        grid-template-columns: 1fr;
    }

    .cta-btns {
        flex-direction: column;
        align-items: center;
    }

    .filter-form {
        flex-direction: column;
    }

    .mission-grid {
        grid-template-columns: 1fr;
    }

    .promise-card {
        padding: 28px;
    }
}

@media(max-width:480px) {
    .slider-wrap {
        height: 300px;
    }

    .feat-grid {
        grid-template-columns: 1fr;
    }

    .cats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
}



/* ═══════════════════════════════════════════════════════
   PREMIUM PARALLAX & GLASSMORPHISM (HOME & PROPERTIES)
   ═══════════════════════════════════════════════════════ */
body.parallax-bg {
    background-image: linear-gradient(rgba(245, 247, 252, 0.88), rgba(245, 247, 252, 0.88)), url('../assets/euwaso-kedong-scenery.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: background 0.5s ease-in-out;
}

/* Hide solid backgrounds in sections on parallax pages */
body.parallax-bg .surface-bg,
body.parallax-bg .white-bg,
body.parallax-bg section[style*="background-color"] {
    background: transparent !important;
    background-color: transparent !important;
}

/* Frosted glass styling for content cards on parallax pages */
body.parallax-bg .prop-card,
body.parallax-bg .feat-card,
body.parallax-bg .testi-card,
body.parallax-bg .property-card,
body.parallax-bg .category-card {
    background: rgba(255, 255, 255, 0.72) !important;
    backdrop-filter: blur(16px) saturate(120%);
    -webkit-backdrop-filter: blur(16px) saturate(120%);
    border: 1px solid rgba(255, 255, 255, 0.45) !important;
    box-shadow: 0 8px 32px 0 rgba(0, 55, 124, 0.05) !important;
    transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease);
}

body.parallax-bg .prop-card:hover,
body.parallax-bg .feat-card:hover,
body.parallax-bg .testi-card:hover,
body.parallax-bg .property-card:hover,
body.parallax-bg .category-card:hover {
    background: rgba(255, 255, 255, 0.88) !important;
    transform: translateY(-6px) !important;
    box-shadow: 0 14px 40px 0 rgba(0, 55, 124, 0.12) !important;
}

/* Reset inner body backgrounds to show through glass */
body.parallax-bg .prop-body,
body.parallax-bg .property-details {
    background: transparent !important;
}

/* Category cards fallback/base styles */
.category-card {
    background: var(--white);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform var(--dur) var(--ease), background var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
    display: block;
}

.category-card:hover {
    transform: translateY(-5px);
}