/* =====================================================
   GRECIMMO — Design System CSS
   Premium Greek Real Estate & Investment Platform
   ===================================================== */

/* ── Design Tokens ─────────────────────────────────── */
:root {
    --navy:      #0f1f35;
    --navy-mid:  #1a2e4a;
    --navy-lt:   #2a4268;
    --gold:      #c8a96e;
    --gold-dk:   #a0844f;
    --gold-lt:   #e8d5b0;
    --gold-faint:#faf4e8;

    --cream:     #f9f6f0;
    --cream-dk:  #f0ebe2;
    --stone:     #e8e0d5;
    --stone-dk:  #d0c9be;
    --border:    #e5e0d9;

    --text:      #1f2937;
    --text-md:   #374151;
    --text-lt:   #6b7280;
    --text-xs:   #9ca3af;
    --white:     #ffffff;

    --success:   #15803d;
    --info:      #1d4ed8;

    --section-py:    96px;
    --section-py-sm: 56px;
    --card-radius:   14px;
    --btn-radius:    8px;

    --shadow-sm:    0 1px 3px rgba(15,31,53,.06), 0 1px 2px rgba(15,31,53,.04);
    --shadow-md:    0 4px 16px rgba(15,31,53,.10);
    --shadow-lg:    0 12px 40px rgba(15,31,53,.14);
    --shadow-hover: 0 16px 48px rgba(15,31,53,.18);
}

/* ── Reset & Base ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,h2,h3,h4,h5,h6,.serif {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    line-height: 1.2;
    font-weight: 700;
    color: var(--navy);
}

a { color: var(--navy); text-decoration: none; transition: color .18s; }
a:hover { color: var(--gold-dk); }
img { max-width: 100%; height: auto; display: block; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── Container ─────────────────────────────────────── */
.gc-container {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Sections ──────────────────────────────────────── */
.gc-section        { padding: var(--section-py) 0; }
.gc-section--cream { background: var(--cream); }
.gc-section--navy  { background: var(--navy); }
.gc-section--white { background: var(--white); }

.section-eyebrow {
    display: inline-block;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gold-dk);
    margin-bottom: .75rem;
    font-family: 'Inter', sans-serif;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: .75rem;
    line-height: 1.2;
}

.section-title--white { color: var(--white); }

.section-sub {
    font-size: 1.05rem;
    color: var(--text-lt);
    max-width: 560px;
    line-height: 1.65;
}

.section-sub--white { color: rgba(255,255,255,.68); }

.gold-rule {
    display: block;
    width: 48px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
    margin: 1rem 0;
}

/* ── Buttons ───────────────────────────────────────── */
.btn-gc {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    padding: .85rem 1.75rem;
    border-radius: var(--btn-radius);
    font-family: 'Inter', sans-serif;
    font-size: .88rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    border: 2px solid transparent;
    transition: background .18s, color .18s, border-color .18s, transform .14s, box-shadow .14s;
    white-space: nowrap;
    line-height: 1;
}

.btn-gc:hover { transform: translateY(-2px); }
.btn-gc:active { transform: translateY(0); }

.btn-gc--gold {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}
.btn-gc--gold:hover { background: var(--gold-dk); border-color: var(--gold-dk); color: var(--navy); }

.btn-gc--outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,.5);
}
.btn-gc--outline-white:hover {
    background: rgba(255,255,255,.1);
    border-color: rgba(255,255,255,.9);
    color: var(--white);
}

.btn-gc--navy {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}
.btn-gc--navy:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }

.btn-gc--sm { padding: .5rem 1.1rem; font-size: .8rem; }
.btn-gc--xs { padding: .35rem .8rem; font-size: .74rem; }

/* ══════════════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════════════ */
.gc-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1050;
    padding: 1rem 0;
    transition: background .28s, box-shadow .28s, padding .28s;
}

.gc-header--transparent { background: transparent; }

.gc-header.scrolled,
.gc-header--solid {
    background: var(--navy);
    box-shadow: 0 2px 24px rgba(15,31,53,.25);
    padding: .65rem 0;
}

.gc-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.gc-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    letter-spacing: -.01em;
    flex-shrink: 0;
    line-height: 1;
}
.gc-logo em { color: var(--gold); font-style: normal; }
.gc-logo:hover { color: var(--white); }

.gc-nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
    gap: 0;
}

.gc-nav-menu a {
    display: block;
    padding: .38rem .7rem;
    font-size: .8rem;
    font-weight: 500;
    color: rgba(255,255,255,.78);
    letter-spacing: .02em;
    transition: color .15s;
    white-space: nowrap;
}

.gc-nav-menu a:hover,
.gc-nav-menu a.gc-active { color: var(--gold); }

.gc-nav-cta {
    flex-shrink: 0;
    padding: .5rem 1.15rem;
    border-radius: var(--btn-radius);
    background: var(--gold);
    color: var(--navy);
    font-size: .8rem;
    font-weight: 700;
    text-decoration: none;
    transition: background .15s, color .15s;
    white-space: nowrap;
}
.gc-nav-cta:hover { background: var(--gold-dk); color: var(--navy); }

.gc-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: .3rem;
    margin-left: auto;
}

.gc-nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform .2s, opacity .2s;
}

/* ══════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════ */
.gc-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.gc-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 40%;
    transform: scale(1.05);
    transition: transform 9s ease-out;
}
.gc-hero-bg.loaded { transform: scale(1); }

.gc-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(10,20,38,.65) 0%,
        rgba(10,20,38,.38) 50%,
        rgba(10,20,38,.78) 100%
    );
}

.gc-hero-content {
    position: relative;
    z-index: 2;
    padding: 120px 0 80px;
    width: 100%;
}

.gc-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.1rem;
    font-family: 'Inter', sans-serif;
}
.gc-hero-eyebrow::before {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: var(--gold);
    flex-shrink: 0;
}

.gc-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.13;
    margin-bottom: 1.2rem;
    max-width: 700px;
    text-shadow: 0 2px 24px rgba(0,0,0,.28);
}

.gc-hero-sub {
    font-size: 1.08rem;
    color: rgba(255,255,255,.8);
    max-width: 500px;
    line-height: 1.68;
    margin-bottom: 2.25rem;
}

.gc-hero-actions {
    display: flex;
    gap: .85rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.gc-hero-trust {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.gc-trust-item {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .76rem;
    color: rgba(255,255,255,.68);
    font-weight: 500;
}
.gc-trust-item svg { color: var(--gold); flex-shrink: 0; }

/* ── Hero Search Bar ── */
.hero-search {
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 12px;
    padding: 1.25rem 1.4rem;
    display: flex;
    gap: .85rem;
    align-items: flex-end;
    flex-wrap: wrap;
    max-width: 780px;
    box-shadow: 0 8px 48px rgba(0,0,0,.28);
}

.hero-search-group { flex: 1; min-width: 160px; }

.hero-search-group label {
    display: block;
    font-size: .66rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--text-lt);
    margin-bottom: .3rem;
}

.hero-search-group input,
.hero-search-group select {
    width: 100%;
    padding: .55rem .8rem;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-size: .86rem;
    color: var(--text);
    background: var(--white);
    outline: none;
    font-family: 'Inter', sans-serif;
    transition: border-color .15s;
    appearance: none;
}

.hero-search-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right .8rem center;
    padding-right: 2rem;
}

.hero-search-group input:focus,
.hero-search-group select:focus { border-color: var(--gold); }

/* ══════════════════════════════════════════════════════
   DESTINATION CARDS
══════════════════════════════════════════════════════ */
.dest-card {
    position: relative;
    border-radius: var(--card-radius);
    overflow: hidden;
    height: 400px;
    display: block;
    text-decoration: none;
    box-shadow: var(--shadow-md);
}

.dest-card-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}
.dest-card:hover .dest-card-img { transform: scale(1.06); }

.dest-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,20,38,.85) 0%, rgba(10,20,38,.15) 55%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.75rem;
    transition: background .3s;
}

.dest-card-count {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .5rem;
}

.dest-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.55rem;
    color: var(--white);
    margin-bottom: .35rem;
    line-height: 1.2;
}

.dest-card-sub {
    font-size: .82rem;
    color: rgba(255,255,255,.68);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.dest-card-link {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-size: .78rem;
    font-weight: 600;
    color: var(--gold);
    transition: gap .15s;
}
.dest-card:hover .dest-card-link { gap: .55rem; }

/* ══════════════════════════════════════════════════════
   PROPERTY CARDS
══════════════════════════════════════════════════════ */
.prop-card {
    background: var(--white);
    border-radius: var(--card-radius);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: transform .22s ease, box-shadow .22s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.prop-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    color: inherit;
}

.prop-card.gc-highlighted {
    outline: 2px solid var(--gold);
    box-shadow: 0 0 0 5px rgba(200,169,110,.18), var(--shadow-hover);
}

/* Image wrapper */
.prop-img-wrap {
    position: relative;
    padding-top: 62%;
    overflow: hidden;
    background: var(--cream-dk);
    flex-shrink: 0;
}

.prop-img-wrap img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}
.prop-card:hover .prop-img-wrap img { transform: scale(1.06); }

.prop-img-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--stone-dk);
    font-size: .75rem;
    gap: .5rem;
}

/* Badges on image */
.prop-badge {
    position: absolute;
    top: .75rem;
    padding: .2rem .6rem;
    border-radius: 6px;
    font-size: .63rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.prop-badge--type  { left: .75rem; }
.prop-badge--gv    { right: .75rem; }

.prop-badge--residential { background: rgba(209,250,229,.92); color: #065f46; }
.prop-badge--business    { background: rgba(219,234,254,.92); color: #1e40af; }
.prop-badge--gold        { background: rgba(200,169,110,.95); color: var(--navy); }

/* Body */
.prop-body {
    padding: 1.1rem 1.2rem .7rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: .45rem;
}

.prop-title {
    font-size: .96rem;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

.prop-location {
    display: flex;
    align-items: center;
    gap: .3rem;
    font-size: .76rem;
    color: var(--text-lt);
}

.prop-excerpt {
    font-size: .79rem;
    color: var(--text-lt);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.55;
}

.prop-meta {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem .85rem;
    font-size: .73rem;
    color: var(--text-md);
    border-top: 1px solid var(--border);
    padding-top: .6rem;
    margin-top: auto;
}

.prop-meta-item {
    display: flex;
    align-items: center;
    gap: .28rem;
}

/* Footer */
.prop-foot {
    padding: .8rem 1.2rem;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .5rem;
    background: #fafafa;
}

.prop-price {
    font-size: 1.18rem;
    font-weight: 700;
    color: var(--navy);
    font-family: 'Inter', sans-serif;
    line-height: 1.2;
}

.prop-price-note {
    font-size: .67rem;
    color: var(--text-lt);
    font-weight: 400;
    display: block;
    margin-top: .1rem;
}

/* Wide card (listing page) */
.prop-card--wide .prop-img-wrap { padding-top: 54%; }
.listing-cards-grid .prop-card { height: 100%; }

/* ══════════════════════════════════════════════════════
   SERVICES
══════════════════════════════════════════════════════ */
.service-card {
    padding: 1.75rem;
    border-radius: var(--card-radius);
    background: var(--white);
    border: 1px solid var(--border);
    height: 100%;
    transition: transform .2s, box-shadow .2s;
}
.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.service-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--gold-faint);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    border: 1px solid var(--gold-lt);
}

.service-title {
    font-size: .97rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: .35rem;
    font-family: 'Inter', sans-serif;
}

.service-desc {
    font-size: .82rem;
    color: var(--text-lt);
    line-height: 1.65;
    margin: 0;
}

/* ══════════════════════════════════════════════════════
   CATEGORY CARDS (Residential / Business picker)
══════════════════════════════════════════════════════ */
.cat-card {
    border-radius: var(--card-radius);
    background: var(--navy-mid);
    position: relative;
    overflow: hidden;
    padding: 2.5rem 2rem 2rem;
    min-height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: background .3s;
}
.cat-card:hover { background: var(--navy-lt); }

.cat-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: .12;
    transition: opacity .3s;
}
.cat-card:hover .cat-card-bg { opacity: .22; }

.cat-card-content { position: relative; z-index: 1; }

.cat-card-icon { font-size: 2.4rem; margin-bottom: .75rem; display: block; }

.cat-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    color: var(--white);
    margin-bottom: .4rem;
    line-height: 1.2;
}

.cat-card-sub {
    font-size: .84rem;
    color: rgba(255,255,255,.65);
    margin-bottom: 1.25rem;
    line-height: 1.55;
}

.cat-subtypes {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}
.cat-subtypes.open { max-height: 200px; }

.cat-subtypes a {
    display: inline-block;
    padding: .26rem .7rem;
    border-radius: 9999px;
    font-size: .71rem;
    font-weight: 600;
    background: rgba(255,255,255,.1);
    color: rgba(255,255,255,.85);
    border: 1px solid rgba(255,255,255,.18);
    transition: background .15s, color .15s;
    text-decoration: none;
}
.cat-subtypes a:hover {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

.cat-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .79rem;
    font-weight: 600;
    color: var(--gold);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-top: .75rem;
    font-family: 'Inter', sans-serif;
    transition: color .15s;
}
.cat-toggle-btn:hover { color: var(--gold-lt); }
.cat-toggle-btn .toggle-arrow { transition: transform .25s; display: inline-block; }
.cat-toggle-btn.open .toggle-arrow { transform: rotate(180deg); }

/* ══════════════════════════════════════════════════════
   LOCATION SCROLLER
══════════════════════════════════════════════════════ */
/* ── Location Grid (2 rows × 4 cols) ────────────────── */
.loc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 220px);
    gap: 1rem;
}

.loc-grid-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: var(--shadow-sm);
    display: block;
}
.loc-grid-card:hover .loc-grid-img { transform: scale(1.07); }
.loc-grid-card:hover { box-shadow: var(--shadow-lg); }

.loc-grid-img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.loc-grid-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
        rgba(10,20,38,.82) 0%,
        rgba(10,20,38,.28) 55%,
        rgba(10,20,38,.04) 100%);
    pointer-events: none;
}

.loc-grid-body {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 1rem 1.1rem;
}

.loc-grid-region {
    font-size: .64rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .2rem;
}

.loc-grid-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
}

.loc-grid-count {
    font-size: .7rem;
    color: rgba(255,255,255,.6);
    margin-top: .15rem;
}

/* Responsive */
@media (max-width: 900px) {
    .loc-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(3, 190px);
    }
}
@media (max-width: 600px) {
    .loc-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 170px);
    }
}

/* ══════════════════════════════════════════════════════
   OPPORTUNITY CARDS
══════════════════════════════════════════════════════ */
.opp-card {
    border-radius: var(--card-radius);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: .7rem;
    border: 1px solid var(--border);
    background: var(--white);
    transition: transform .2s, box-shadow .2s, background .2s;
    text-decoration: none;
    color: inherit;
}
.opp-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    background: var(--cream);
    color: inherit;
}
.opp-icon { font-size: 2.2rem; line-height: 1; display: block; }
.opp-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
}
.opp-desc {
    font-size: .81rem;
    color: var(--text-lt);
    line-height: 1.6;
    flex: 1;
    margin: 0;
}
.opp-arrow {
    font-size: .79rem;
    font-weight: 600;
    color: var(--gold-dk);
    display: flex;
    align-items: center;
    gap: .3rem;
    margin-top: .25rem;
    transition: gap .15s;
}
.opp-card:hover .opp-arrow { gap: .5rem; }

/* ══════════════════════════════════════════════════════
   FAQ ACCORDION
══════════════════════════════════════════════════════ */
.gc-faq .accordion-item {
    background: transparent;
    border: 1px solid rgba(255,255,255,.12) !important;
    border-radius: 10px !important;
    margin-bottom: .65rem;
    overflow: hidden;
}

.gc-faq .accordion-button {
    background: rgba(255,255,255,.05);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: .93rem;
    padding: 1.1rem 1.4rem;
    box-shadow: none !important;
}

.gc-faq .accordion-button:not(.collapsed) {
    background: rgba(200,169,110,.15);
    color: var(--gold);
    box-shadow: none !important;
}

.gc-faq .accordion-button::after {
    filter: invert(1) brightness(1.5);
}

.gc-faq .accordion-body {
    background: rgba(255,255,255,.04);
    color: rgba(255,255,255,.65);
    font-size: .87rem;
    line-height: 1.72;
    padding: 0 1.4rem 1.2rem;
}

/* ══════════════════════════════════════════════════════
   PAGE HERO (inner pages: /properties, /properties/{id})
══════════════════════════════════════════════════════ */
.page-hero {
    background: var(--navy);
    padding: 100px 0 40px;
    position: relative;
    overflow: hidden;
}
.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-dk) 0%, var(--gold) 50%, var(--gold-dk) 100%);
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(200,169,110,.08) 0%, transparent 70%);
    pointer-events: none;
}

.page-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.65rem);
    color: var(--white);
    margin-bottom: .4rem;
    line-height: 1.2;
}

.page-hero-meta {
    font-size: .82rem;
    color: rgba(255,255,255,.5);
}

.gc-breadcrumb {
    display: flex;
    align-items: center;
    gap: .4rem;
    list-style: none;
    padding: 0; margin: 0;
    font-size: .78rem;
    flex-wrap: wrap;
}
.gc-breadcrumb li { color: rgba(255,255,255,.45); }
.gc-breadcrumb li:not(:last-child)::after { content: '/'; margin-left: .4rem; }
.gc-breadcrumb a { color: rgba(255,255,255,.45); }
.gc-breadcrumb a:hover { color: var(--gold); }
.gc-breadcrumb li:last-child { color: rgba(255,255,255,.7); }

/* ══════════════════════════════════════════════════════
   FILTER BAR (listing page)
══════════════════════════════════════════════════════ */
.filter-bar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: .9rem 0;
    position: sticky;
    top: 62px;
    z-index: 200;
    box-shadow: 0 2px 12px rgba(15,31,53,.05);
}

.filter-form {
    display: flex;
    align-items: flex-end;
    gap: .7rem;
    flex-wrap: wrap;
}

.filter-group { display: flex; flex-direction: column; gap: .2rem; }

.filter-lbl {
    font-size: .63rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--text-lt);
}

.filter-ctrl {
    padding: .5rem .8rem;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-size: .8rem;
    color: var(--text);
    background: var(--white);
    outline: none;
    font-family: 'Inter', sans-serif;
    transition: border-color .15s;
    min-width: 130px;
    height: 36px;
    appearance: none;
}

.filter-ctrl--select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='7' viewBox='0 0 10 7'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right .7rem center;
    padding-right: 1.8rem;
}

.filter-ctrl:focus { border-color: var(--gold); }

.filter-btn-submit {
    padding: .5rem 1.2rem;
    background: var(--navy);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: .82rem;
    font-weight: 600;
    cursor: pointer;
    height: 36px;
    transition: background .15s;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
}
.filter-btn-submit:hover { background: var(--gold-dk); color: var(--navy); }

.filter-reset {
    font-size: .76rem;
    color: var(--text-lt);
    text-decoration: none;
    padding: .4rem .6rem;
    transition: color .15s;
    height: 36px;
    display: inline-flex;
    align-items: center;
}
.filter-reset:hover { color: var(--navy); }

/* ══════════════════════════════════════════════════════
   LISTING LAYOUT (cards + map)
══════════════════════════════════════════════════════ */
.listing-wrap {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 1.5rem;
    align-items: start;
}

.listing-cards { min-width: 0; }

.listing-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

@media (max-width: 700px) {
    .listing-cards-grid { grid-template-columns: 1fr; }
}

.listing-map-col {
    position: sticky;
    top: 120px;
}

.listing-map-box {
    height: calc(100vh - 145px);
    border-radius: var(--card-radius);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

#gc-map { width: 100%; height: 100%; }

.results-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .5rem;
    margin-bottom: 1.25rem;
    font-size: .82rem;
    color: var(--text-lt);
}

.results-meta strong { color: var(--navy); }

/* Sort select in results meta */
.sort-select {
    padding: .3rem .75rem;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: .78rem;
    color: var(--text);
    background: var(--white);
    outline: none;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
}

/* ══════════════════════════════════════════════════════
   PROPERTY DETAIL
══════════════════════════════════════════════════════ */
.detail-gallery {
    border-radius: var(--card-radius);
    overflow: hidden;
    margin-bottom: 2rem;
    background: var(--cream-dk);
    position: relative;
}

.detail-gallery .carousel-item img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.detail-gallery .carousel-control-prev,
.detail-gallery .carousel-control-next {
    width: 44px;
    height: 44px;
    background: rgba(15,31,53,.55);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    bottom: auto;
}

.detail-gallery .carousel-control-prev { left: 1rem; }
.detail-gallery .carousel-control-next { right: 1rem; }
.detail-gallery .carousel-control-prev-icon,
.detail-gallery .carousel-control-next-icon { width: 18px; height: 18px; }
.detail-gallery .carousel-indicators { bottom: .85rem; }
.detail-gallery .carousel-indicators button {
    width: 8px; height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,.55);
    margin: 0 3px;
}
.detail-gallery .carousel-indicators .active { background: var(--gold); }

.detail-img-count {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(15,31,53,.65);
    color: var(--white);
    font-size: .72rem;
    font-weight: 600;
    padding: .25rem .65rem;
    border-radius: 9999px;
    z-index: 10;
}

/* Spec grid */
.detail-spec-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: .85rem;
    margin: 1.5rem 0;
}

.detail-spec {
    background: var(--cream);
    border-radius: 10px;
    padding: .9rem .75rem;
    text-align: center;
    border: 1px solid var(--border);
}

.detail-spec-val {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy);
    display: block;
    line-height: 1.15;
    font-family: 'Inter', sans-serif;
}

.detail-spec-lbl {
    font-size: .66rem;
    color: var(--text-lt);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-top: .3rem;
    display: block;
}

/* Features list */
.detail-features {
    list-style: none;
    padding: 0; margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: .35rem;
}

.detail-features li {
    display: flex;
    align-items: flex-start;
    gap: .45rem;
    font-size: .83rem;
    color: var(--text-md);
    padding: .3rem 0;
}

.detail-features li::before {
    content: '✓';
    color: var(--success);
    font-weight: 700;
    font-size: .78rem;
    flex-shrink: 0;
    margin-top: .1rem;
}

/* Property map */
#property-map {
    width: 100%;
    height: 280px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border);
}

/* Contact sidebar card */
.contact-card {
    position: sticky;
    top: 88px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--card-radius);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.contact-card-head {
    background: var(--navy);
    padding: 1.25rem 1.5rem;
}

.contact-agency-row {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: 1rem;
}

.contact-agency-logo {
    width: 42px; height: 42px;
    border-radius: 8px;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    flex-shrink: 0;
}

.contact-agency-name {
    font-size: .88rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
}

.contact-agency-sub {
    font-size: .7rem;
    color: rgba(255,255,255,.5);
}

.contact-price-label {
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.45);
    margin-bottom: .2rem;
}

.contact-price {
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--gold);
    font-family: 'Inter', sans-serif;
    line-height: 1;
}

.contact-card-body {
    padding: 1.4rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: .7rem;
}

.contact-action {
    display: flex;
    align-items: center;
    gap: .7rem;
    padding: .75rem 1rem;
    border-radius: 8px;
    font-size: .84rem;
    font-weight: 600;
    text-decoration: none;
    transition: opacity .15s, transform .14s;
    cursor: pointer;
}
.contact-action:hover { opacity: .9; transform: translateY(-1px); }

.contact-action--phone    { background: var(--navy); color: var(--white); border: none; }
.contact-action--whatsapp { background: #25D366; color: var(--white); border: none; }
.contact-action--email    { background: var(--cream); color: var(--navy); border: 1px solid var(--border); }

.contact-divider {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--text-lt);
    text-align: center;
    position: relative;
}
.contact-divider::before,
.contact-divider::after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    width: 38%;
    height: 1px;
    background: var(--border);
}
.contact-divider::before { left: 0; }
.contact-divider::after  { right: 0; }

.contact-form-field {
    width: 100%;
    padding: .55rem .8rem;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-size: .82rem;
    font-family: 'Inter', sans-serif;
    color: var(--text);
    outline: none;
    transition: border-color .15s;
    background: var(--white);
    resize: vertical;
}
.contact-form-field:focus { border-color: var(--gold); }

/* ══════════════════════════════════════════════════════
   LEAFLET OVERRIDES
══════════════════════════════════════════════════════ */
.leaflet-popup-content-wrapper {
    border-radius: 10px !important;
    box-shadow: var(--shadow-md) !important;
    font-family: 'Inter', sans-serif !important;
    border: 1px solid var(--border) !important;
    padding: 0 !important;
    overflow: hidden;
}

.leaflet-popup-content {
    margin: 0 !important;
}

.gc-map-popup {
    padding: .75rem .9rem;
    min-width: 190px;
    font-family: 'Inter', sans-serif;
}

.gc-map-popup-city {
    font-size: .88rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: .1rem;
}

.gc-map-popup-count {
    font-size: .7rem;
    color: var(--gold-dk);
    font-weight: 600;
    letter-spacing: .03em;
    margin-bottom: .55rem;
    text-transform: uppercase;
}

.gc-map-popup-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .5rem;
    padding: .3rem 0;
    border-top: 1px solid var(--border);
    text-decoration: none;
    transition: background .1s;
}
.gc-map-popup-row:hover { background: var(--cream); }

.gc-map-popup-type {
    font-size: .72rem;
    color: var(--text-lt);
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-transform: capitalize;
}

.gc-map-popup-price {
    font-size: .8rem;
    font-weight: 700;
    color: var(--navy);
    white-space: nowrap;
}

.gc-map-popup-more {
    font-size: .7rem;
    color: var(--gold-dk);
    text-align: center;
    padding-top: .4rem;
    font-weight: 600;
}

/* Legacy single-property popup (detail page) */
.gc-map-popup-title {
    font-size: .75rem;
    color: var(--text-lt);
    margin-top: .2rem;
    line-height: 1.4;
}

.gc-map-popup-link {
    display: inline-block;
    margin-top: .5rem;
    font-size: .72rem;
    font-weight: 600;
    color: var(--navy);
}

/* ══════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════ */
.gc-footer {
    background: var(--navy);
    padding: 64px 0 0;
}

.gc-footer-logo-txt {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    display: inline-block;
    margin-bottom: .6rem;
    text-decoration: none;
}
.gc-footer-logo-txt em { color: var(--gold); font-style: normal; }

.gc-footer-desc {
    font-size: .83rem;
    color: rgba(255,255,255,.45);
    line-height: 1.7;
    max-width: 280px;
    margin-bottom: 1.5rem;
}

.gc-footer-socials {
    display: flex;
    gap: .6rem;
}

.gc-footer-social {
    width: 34px; height: 34px;
    border-radius: 8px;
    background: rgba(255,255,255,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.55);
    font-size: .85rem;
    text-decoration: none;
    transition: background .15s, color .15s;
}
.gc-footer-social:hover { background: var(--gold); color: var(--navy); }

.gc-footer-h {
    font-size: .67rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
}

.gc-footer-links {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    flex-direction: column;
    gap: .55rem;
}

.gc-footer-links a {
    font-size: .83rem;
    color: rgba(255,255,255,.45);
    transition: color .15s;
    text-decoration: none;
}
.gc-footer-links a:hover { color: var(--gold); }

.gc-footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: .55rem;
    font-size: .82rem;
    color: rgba(255,255,255,.45);
    margin-bottom: .55rem;
}
.gc-footer-contact-item svg { flex-shrink: 0; margin-top: .15rem; color: var(--gold); }

.gc-footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 1.1rem 0;
    margin-top: 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .5rem;
    font-size: .72rem;
    color: rgba(255,255,255,.28);
}

.gc-footer-bottom a { color: rgba(255,255,255,.28); }
.gc-footer-bottom a:hover { color: var(--gold); }

/* ══════════════════════════════════════════════════════
   PAGINATION
══════════════════════════════════════════════════════ */
.gc-pagination { margin: 2rem 0; }

.gc-pagination .pagination { flex-wrap: wrap; gap: .25rem; }

.gc-pagination .page-link {
    color: var(--navy);
    border-color: var(--border);
    font-size: .8rem;
    padding: .45rem .8rem;
    border-radius: 8px !important;
    transition: background .15s, color .15s;
}

.gc-pagination .page-item.active .page-link {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--white);
}

.gc-pagination .page-link:hover {
    background: var(--cream);
    color: var(--navy);
}

/* ══════════════════════════════════════════════════════
   UTILITIES
══════════════════════════════════════════════════════ */
.text-gold { color: var(--gold-dk); }
.text-navy { color: var(--navy); }
.bg-cream  { background: var(--cream); }
.bg-navy   { background: var(--navy); }
.serif     { font-family: 'Playfair Display', serif; }

/* ══════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════ */
@media (max-width: 1200px) {
    .listing-wrap {
        grid-template-columns: 1fr;
    }
    .listing-map-col { position: static; }
    .listing-map-box { height: 360px; }
}

@media (max-width: 991px) {
    :root { --section-py: var(--section-py-sm); }

    .gc-nav-menu { display: none; }
    .gc-nav-toggle { display: flex; }
    .gc-nav-cta { display: none; }

    .gc-nav-menu.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: var(--navy);
        padding: .75rem 1.5rem 1.25rem;
        border-top: 1px solid rgba(255,255,255,.08);
        gap: 0;
        box-shadow: 0 8px 24px rgba(0,0,0,.2);
    }

    .gc-nav-menu.open li a {
        padding: .65rem 0;
        font-size: .9rem;
        border-bottom: 1px solid rgba(255,255,255,.05);
        display: block;
    }

    .hero-search { flex-direction: column; }
    .hero-search-group { min-width: 100%; }

    .detail-gallery .carousel-item img { height: 300px; }
    .contact-card { position: static; margin-top: 2rem; }

    .filter-form { gap: .5rem; }
    .filter-ctrl { min-width: 110px; }
}

@media (max-width: 576px) {
    .gc-hero-title { font-size: 2.1rem; }
    .gc-hero-actions { flex-direction: column; }
    .gc-hero-actions .btn-gc { justify-content: center; }

    .dest-card { height: 300px; }

    .cat-card { min-height: 280px; padding: 1.75rem 1.25rem; }

    .detail-spec-grid { grid-template-columns: repeat(3, 1fr); }

    .gc-footer .row > div + div { margin-top: 2rem; }
}

/* ══════════════════════════════════════════════════════
   PAGE HERO — breadcrumb & sub-elements
══════════════════════════════════════════════════════ */
.page-hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .75rem;
    color: rgba(255,255,255,.4);
    margin-bottom: 1rem;
    flex-wrap: wrap;
}
.page-hero-breadcrumb a {
    color: rgba(255,255,255,.4);
    text-decoration: none;
    transition: color .15s;
}
.page-hero-breadcrumb a:hover { color: var(--gold); }
.page-hero-breadcrumb span   { color: rgba(255,255,255,.4); }

.page-hero-sub {
    font-size: .83rem;
    color: rgba(255,255,255,.5);
    margin-top: .3rem;
}

/* Detail hero extras */
.page-hero--detail { padding-bottom: 2rem; }

.detail-hero-meta { display: flex; flex-direction: column; gap: .6rem; }

.detail-badges { display: flex; flex-wrap: wrap; align-items: center; gap: .4rem; }

.detail-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: var(--white);
    margin: 0;
    line-height: 1.2;
}

.detail-hero-location {
    display: flex;
    align-items: center;
    gap: .35rem;
    font-size: .83rem;
    color: rgba(255,255,255,.55);
}

/* ══════════════════════════════════════════════════════
   FILTER BAR — new row-based layout
══════════════════════════════════════════════════════ */
.filter-row {
    display: flex;
    align-items: flex-end;
    gap: .6rem;
    flex-wrap: wrap;
    width: 100%;
}

.filter-label {
    display: block;
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--text-lt);
    margin-bottom: .22rem;
    white-space: nowrap;
}

.filter-input {
    display: block;
    width: 100%;
    padding: .45rem .75rem;
    border: 1.5px solid var(--border);
    border-radius: 7px;
    font-size: .8rem;
    color: var(--text);
    background: var(--white);
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: border-color .15s;
    height: 36px;
    appearance: none;
    -webkit-appearance: none;
}
.filter-input:focus { border-color: var(--gold); }

.filter-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='7' viewBox='0 0 10 7'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right .65rem center;
    padding-right: 1.75rem;
    cursor: pointer;
}

/* Override old .filter-ctrl that collided */
.filter-ctrl {
    display: flex;
    flex-direction: column;
    min-width: 120px;
    flex: 1;
}

.filter-ctrl--wide { flex: 2; min-width: 180px; }
.filter-ctrl--sm   { flex: 0 0 auto; min-width: 90px; }
.filter-ctrl--price { flex: 0 0 auto; min-width: 200px; }

.filter-ctrl--actions {
    display: flex;
    align-items: flex-end;
    gap: .4rem;
    flex: 0 0 auto;
}

.filter-range-pair {
    display: flex;
    align-items: center;
    gap: .35rem;
}
.filter-range-pair .filter-input { flex: 1; min-width: 70px; }

.filter-range-sep {
    font-size: .8rem;
    color: var(--text-lt);
    flex-shrink: 0;
}

.filter-input--sm { max-width: 85px; }

.filter-clear { white-space: nowrap; }

/* ══════════════════════════════════════════════════════
   LISTING PAGE — section + meta
══════════════════════════════════════════════════════ */
.listing-section {
    padding: 2rem 0 4rem;
    background: var(--cream);
    min-height: 60vh;
}

/* Row must not stretch to equal heights — let sticky column work */
#listing-row {
    align-items: flex-start !important;
}

.listing-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .5rem;
    margin-bottom: 1.2rem;
    font-size: .82rem;
    color: var(--text-lt);
}
.listing-meta strong { color: var(--navy); font-weight: 700; }
.listing-meta em     { color: var(--gold-dk); font-style: normal; font-weight: 600; }

.listing-count { font-size: .85rem; }
.listing-page-info { font-size: .75rem; }

.listing-empty {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--white);
    border-radius: var(--card-radius);
    border: 1px solid var(--border);
}
.listing-empty-icon { font-size: 3rem; margin-bottom: 1rem; display: block; }
.listing-empty h3 {
    font-size: 1.2rem;
    color: var(--navy);
    font-family: 'Playfair Display', serif;
    margin-bottom: .4rem;
}
.listing-empty p { font-size: .85rem; color: var(--text-lt); margin-bottom: 1.25rem; }

/* ══════════════════════════════════════════════════════
   DETAIL PAGE — layout, gallery, specs, features, map
══════════════════════════════════════════════════════ */
.detail-section {
    padding: 2.5rem 0 5rem;
    background: var(--cream);
}

.detail-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 2.5rem;
    align-items: start;
}

.detail-main { min-width: 0; }

.detail-sidebar { min-width: 0; }

/* Gallery */
.detail-carousel { border-radius: var(--card-radius); overflow: hidden; }
.detail-carousel-img {
    height: 460px;
    object-fit: cover;
    width: 100%;
    display: block;
    background: var(--cream-dk);
}

.detail-gallery-count {
    font-size: .72rem;
    color: var(--text-lt);
    text-align: right;
    padding: .35rem 0;
}

.detail-no-image {
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream-dk);
    border-radius: var(--card-radius);
    color: var(--text-xs);
    font-size: .85rem;
    border: 1px solid var(--border);
    margin-bottom: 2rem;
}

/* Spec grid */
.detail-specs {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: .75rem;
    margin: 1.75rem 0;
}

.detail-spec-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: .85rem .7rem;
    text-align: center;
    transition: box-shadow .2s;
}
.detail-spec-card:hover { box-shadow: var(--shadow-sm); }

.spec-icon { font-size: 1.4rem; line-height: 1; display: block; margin-bottom: .35rem; }

.spec-label {
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--text-lt);
    display: block;
    margin-bottom: .25rem;
}

.spec-value {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    font-family: 'Inter', sans-serif;
    display: block;
    line-height: 1.2;
}
.spec-value--price { font-size: .92rem; color: var(--gold-dk); }

/* Description */
.detail-description { margin: 2rem 0; }

.detail-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 1rem;
    padding-bottom: .5rem;
    border-bottom: 2px solid var(--gold-faint);
}

.detail-desc-body {
    font-size: .88rem;
    color: var(--text-md);
    line-height: 1.8;
}

/* Features */
.detail-features { margin: 2rem 0; }

.detail-features-list {
    list-style: none;
    padding: 0; margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    gap: .4rem;
}

.detail-feature-item {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .82rem;
    color: var(--text-md);
    padding: .35rem 0;
}
.detail-feature-item svg { color: var(--success); flex-shrink: 0; }

/* Location map */
.detail-map-section { margin: 2rem 0; }

.detail-map-note {
    font-size: .78rem;
    color: var(--text-lt);
    margin-bottom: .65rem;
    font-style: italic;
}

.detail-map-wrap {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border);
}
#property-map { width: 100%; height: 280px; }

/* Source link */
.detail-source {
    margin: 1.5rem 0;
    font-size: .8rem;
}
.detail-source-link {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    color: var(--text-lt);
    text-decoration: none;
    transition: color .15s;
}
.detail-source-link:hover { color: var(--navy); }

/* ══════════════════════════════════════════════════════
   CONTACT SIDEBAR — new structure
══════════════════════════════════════════════════════ */
.contact-card {
    position: sticky;
    top: 88px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--card-radius);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-price {
    text-align: center;
    padding-bottom: .75rem;
    border-bottom: 1px solid var(--border);
}
.contact-price-label {
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--text-lt);
    margin-bottom: .2rem;
}
.contact-price-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy);
    font-family: 'Inter', sans-serif;
    line-height: 1.1;
}
.contact-price-sqm {
    font-size: .75rem;
    color: var(--text-lt);
    margin-top: .2rem;
}

.contact-gv-note {
    background: var(--gold-faint);
    border: 1px solid var(--stone);
    border-radius: 8px;
    padding: .65rem .85rem;
    font-size: .77rem;
    color: var(--text-md);
    line-height: 1.5;
}
.contact-gv-note strong { color: var(--navy); }

.contact-actions {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.contact-btn {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: .65rem 1rem;
    font-size: .85rem;
}

.contact-btn--whatsapp {
    background: #25D366;
    color: var(--white);
    border: none;
    border-radius: 9px;
    font-weight: 600;
    font-size: .85rem;
    padding: .65rem 1rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .15s;
    font-family: 'Inter', sans-serif;
}
.contact-btn--whatsapp:hover { opacity: .88; color: var(--white); }

.contact-divider {
    font-size: .67rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--text-lt);
    text-align: center;
    position: relative;
}
.contact-divider::before, .contact-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 36%;
    height: 1px;
    background: var(--border);
}
.contact-divider::before { left: 0; }
.contact-divider::after  { right: 0; }

.contact-form { display: flex; flex-direction: column; gap: .55rem; }

.contact-field { display: flex; flex-direction: column; }

.contact-input {
    width: 100%;
    padding: .5rem .75rem;
    border: 1.5px solid var(--border);
    border-radius: 7px;
    font-size: .8rem;
    color: var(--text);
    font-family: 'Inter', sans-serif;
    background: var(--white);
    outline: none;
    transition: border-color .15s;
    resize: vertical;
}
.contact-input:focus { border-color: var(--gold); }
.contact-textarea { min-height: 72px; height: 72px; }

.contact-success {
    text-align: center;
    font-size: .82rem;
    color: var(--success);
    font-weight: 600;
    padding: .5rem 0;
}

.contact-meta {
    border-top: 1px solid var(--border);
    padding-top: .75rem;
    display: flex;
    flex-direction: column;
    gap: .3rem;
}
.contact-meta-item {
    font-size: .72rem;
    color: var(--text-lt);
    display: flex;
    align-items: center;
    gap: .35rem;
}

/* ══════════════════════════════════════════════════════
   RELATED PROPERTIES
══════════════════════════════════════════════════════ */
.detail-related {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.25rem;
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE ADDITIONS
══════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
    .detail-layout { grid-template-columns: 1fr; }
    .contact-card  { position: static; margin-top: 2rem; }
    .detail-carousel-img { height: 340px; }
}

@media (max-width: 768px) {
    .filter-row { flex-direction: column; gap: .45rem; }
    .filter-ctrl, .filter-ctrl--wide, .filter-ctrl--sm,
    .filter-ctrl--price, .filter-ctrl--actions { flex: 1 1 100%; min-width: 100%; }
    .filter-ctrl--actions { flex-direction: row; }
    .filter-range-pair .filter-input { max-width: none; }
    .listing-section { padding: 1.5rem 0 3rem; }
    .detail-specs { grid-template-columns: repeat(3, 1fr); }
    .detail-features-list { grid-template-columns: 1fr 1fr; }
    .detail-carousel-img { height: 260px; }
    .related-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
    .detail-specs { grid-template-columns: repeat(2, 1fr); }
    .detail-features-list { grid-template-columns: 1fr; }
    .related-grid { grid-template-columns: 1fr; }
}

/* ╔══════════════════════════════════════════════════════╗
   ║  LISTING PAGE v2 — CLEAN FILTER + MAP                ║
   ╚══════════════════════════════════════════════════════╝ */

/* Filter panel (non-sticky, clean white card) */
.filter-panel-wrap {
    background: var(--cream);
    padding: 1.5rem 0 2rem;
    border-bottom: 1px solid var(--border);
}

.filter-panel {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--card-radius);
    padding: 1.5rem 1.75rem;
    box-shadow: var(--shadow-sm);
}

.fp-label {
    display: block;
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--text-lt);
    margin-bottom: .3rem;
}

.fp-ctrl {
    font-size: .82rem !important;
    color: var(--text) !important;
    font-family: 'Inter', sans-serif !important;
    border-color: var(--border) !important;
    border-radius: 7px !important;
    height: 38px;
}
.fp-ctrl:focus {
    border-color: var(--gold) !important;
    box-shadow: 0 0 0 2px rgba(200,169,110,.18) !important;
}

.fp-price-group .form-control { border-radius: 7px !important; }
.fp-price-group .input-group-text.fp-sep {
    background: var(--cream);
    border-color: var(--border);
    font-size: .8rem;
    color: var(--text-lt);
    padding: 0 .5rem;
}

.fp-actions {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding-top: 1.55rem;
}

/* Listing cards: 2-col grid within col-lg-8 */
#listing-cards-col .prop-card {
    margin-bottom: 1.25rem;
    display: inline-block;
    width: 100%;
}

#listing-cards-col {
    column-count: 2;
    column-gap: 1.25rem;
}

#listing-cards-col .prop-card {
    break-inside: avoid;
    display: block;
    margin-bottom: 1.25rem;
}

#listing-cards-col .listing-empty,
#listing-cards-col .gc-pagination {
    column-span: all;
}

/* Map — full-height sticky column */
#listing-map-col {
    position: sticky;
    top: 72px;
    height: calc(100vh - 72px);
    align-self: flex-start;
    padding-bottom: 0 !important;
}

.listing-map-sticky {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.listing-map-box {
    flex: 1;
    height: 100%;
    border-radius: var(--card-radius);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
}

#gc-map { width: 100%; height: 100%; }

/* Responsive listing */
@media (max-width: 992px) {
    #listing-cards-col { column-count: 1; }
    #listing-map-col {
        position: static;
        height: auto;
        order: -1;
        margin-bottom: 1.5rem;
    }
    .listing-map-sticky { height: auto; }
    .listing-map-box { height: 380px; }
}

@media (max-width: 576px) {
    .filter-panel { padding: 1rem; }
    .fp-actions { padding-top: .5rem; }
    .listing-map-box { height: 280px; }
}

/* ╔══════════════════════════════════════════════════════╗
   ║  HOMEPAGE V2 — PREMIUM REDESIGN                      ║
   ╚══════════════════════════════════════════════════════╝ */

/* ── Hero upgrades ───────────────────────────────────── */
.gc-hero-title {
    font-size: clamp(2.6rem, 5.5vw, 4.8rem) !important;
    line-height: 1.08 !important;
    margin-bottom: 1.5rem !important;
    max-width: 780px !important;
    letter-spacing: -.02em;
}

.gc-hero-sub {
    font-size: 1.12rem !important;
    max-width: 580px !important;
    line-height: 1.75 !important;
    margin-bottom: 2.8rem !important;
    color: rgba(255,255,255,.82) !important;
}

.gc-hero-content {
    padding: 160px 0 120px !important;
}

.gc-hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

.btn-gc--hero {
    padding: .9rem 2rem !important;
    font-size: .92rem !important;
    letter-spacing: .04em;
}

.gc-trust-sep {
    width: 1px;
    height: 16px;
    background: rgba(255,255,255,.2);
    flex-shrink: 0;
}

.gc-hero-trust {
    align-items: center !important;
    gap: 1.2rem !important;
    padding-top: .5rem;
    border-top: 1px solid rgba(255,255,255,.1);
    display: inline-flex !important;
}

/* ── Section system (hp-section) ────────────────────── */
.hp-section {
    padding: 110px 0;
}
.hp-section--white  { background: var(--white); }
.hp-section--cream  { background: var(--cream); }
.hp-section--navy   { background: var(--navy); }

.hp-section-head    { margin-bottom: 3.5rem; }
.hp-section-head--center { text-align: center; }

.hp-section-head-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.hp-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold-dk);
    font-family: 'Inter', sans-serif;
    margin-bottom: .7rem;
}
.hp-eyebrow::before {
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    background: var(--gold);
    flex-shrink: 0;
}

.hp-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.9rem, 3.5vw, 2.85rem);
    color: var(--navy);
    line-height: 1.2;
    margin: 0 0 .5rem;
    font-weight: 700;
}
.hp-title--white { color: var(--white) !important; }
.hp-title--flush { margin-bottom: 0 !important; }

.hp-rule {
    display: block;
    width: 48px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-dk), var(--gold));
    margin: 1rem 0 1.5rem;
    border-radius: 1px;
}
.hp-section-head--center .hp-rule { margin-left: auto; margin-right: auto; }

.hp-sub {
    font-size: .95rem;
    color: var(--text-lt);
    line-height: 1.75;
    max-width: 600px;
    margin: 0;
}
.hp-sub--center { margin-left: auto; margin-right: auto; }

/* ── Destination cards v2 ────────────────────────────── */
.dest-v2-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.dest-v2-card {
    position: relative;
    display: block;
    height: 500px;
    border-radius: var(--card-radius);
    overflow: hidden;
    text-decoration: none;
    background: var(--navy);
}

.dest-v2-img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.dest-v2-card:hover .dest-v2-img { transform: scale(1.07); }

.dest-v2-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10,20,38,.88) 0%,
        rgba(10,20,38,.35) 55%,
        rgba(10,20,38,.08) 100%
    );
    transition: opacity .3s;
}
.dest-v2-card:hover .dest-v2-overlay { opacity: .9; }

.dest-v2-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.75rem;
}

.dest-v2-region {
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .55rem;
}

.dest-v2-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 .65rem;
    line-height: 1.2;
}

.dest-v2-desc {
    font-size: .82rem;
    color: rgba(255,255,255,.72);
    line-height: 1.6;
    margin-bottom: 1.1rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}
.dest-v2-card:hover .dest-v2-desc { max-height: 80px; }

.dest-v2-link {
    font-size: .78rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: .06em;
    display: flex;
    align-items: center;
    gap: .3rem;
    transition: gap .15s;
}
.dest-v2-card:hover .dest-v2-link { gap: .6rem; }

/* ── Services editorial grid ────────────────────────── */
.svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3.5rem 4rem;
}

.svc-item {
    position: relative;
}

.svc-num {
    font-family: 'Inter', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--stone);
    line-height: 1;
    margin-bottom: .75rem;
    letter-spacing: -.04em;
}

.svc-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: .6rem;
    line-height: 1.3;
}

.svc-desc {
    font-size: .85rem;
    color: var(--text-lt);
    line-height: 1.72;
    margin: 0;
}

.svc-item::after {
    content: '';
    position: absolute;
    bottom: -1.75rem;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border);
}

/* ── Category mega cards ─────────────────────────────── */
.cat-mega-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.cat-mega-card {
    position: relative;
    min-height: 540px;
    border-radius: var(--card-radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.cat-mega-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform .5s ease;
}
.cat-mega-card:hover .cat-mega-bg { transform: scale(1.04); }

.cat-mega-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10,20,38,.95) 0%,
        rgba(10,20,38,.62) 50%,
        rgba(10,20,38,.18) 100%
    );
}

.cat-mega-content {
    position: relative;
    z-index: 2;
    padding: 2.5rem 2.25rem;
}

.cat-mega-eyebrow {
    font-size: .63rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .6rem;
}

.cat-mega-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: .85rem;
}

.cat-mega-desc {
    font-size: .84rem;
    color: rgba(255,255,255,.65);
    line-height: 1.65;
    margin-bottom: 1.5rem;
    max-width: 340px;
}

.cat-mega-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.cat-mega-toggle {
    background: none;
    border: none;
    color: rgba(255,255,255,.6);
    font-size: .78rem;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: .35rem;
    padding: 0;
    transition: color .15s;
}
.cat-mega-toggle:hover { color: var(--gold); }
.cat-toggle-arrow { transition: transform .25s; display: inline-block; }
.cat-mega-toggle.open .cat-toggle-arrow { transform: rotate(180deg); }

.cat-mega-subs {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
}
.cat-mega-subs.open { max-height: 200px; }

.cat-sub-pill {
    display: inline-block;
    padding: .3rem .85rem;
    border-radius: 9999px;
    font-size: .73rem;
    font-weight: 600;
    background: rgba(255,255,255,.12);
    color: rgba(255,255,255,.88);
    border: 1px solid rgba(255,255,255,.22);
    text-decoration: none;
    transition: background .15s, color .15s, border-color .15s;
    white-space: nowrap;
}
.cat-sub-pill:hover {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

/* ── Homepage property grid (big 2-col) ─────────────── */
.home-props-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
}

.home-props-grid .prop-card .prop-img-wrap { padding-top: 66%; }
.home-props-grid .prop-title { font-size: 1.05rem; }
.home-props-grid .prop-price { font-size: 1.35rem; }
.home-props-grid .prop-card { box-shadow: var(--shadow-sm); }
.home-props-grid .prop-card:hover { box-shadow: var(--shadow-hover); }

/* ── Location chip — region label ───────────────────── */
.loc-chip-region {
    font-size: .6rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .15rem;
}

/* ── Opportunity cards v2 ───────────────────────────── */
.opp-v2-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.opp-v2-card {
    position: relative;
    border-radius: var(--card-radius);
    background: var(--white);
    border: 1px solid var(--border);
    padding: 2rem 1.75rem 1.75rem;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    gap: .85rem;
    overflow: hidden;
    transition: transform .2s, box-shadow .2s;
}
.opp-v2-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    color: inherit;
}

.opp-v2-accent {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
}
.opp-v2-accent--gold  { background: linear-gradient(90deg, var(--gold-dk), var(--gold)); }
.opp-v2-accent--blue  { background: linear-gradient(90deg, #1a4fa8, #3b82f6); }
.opp-v2-accent--teal  { background: linear-gradient(90deg, #0d7473, #14b8a6); }
.opp-v2-accent--navy  { background: linear-gradient(90deg, var(--navy), var(--navy-lt)); }

.opp-v2-icon {
    font-size: 2.4rem;
    line-height: 1;
    display: block;
}

.opp-v2-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0;
    line-height: 1.3;
}

.opp-v2-desc {
    font-size: .83rem;
    color: var(--text-lt);
    line-height: 1.7;
    flex: 1;
    margin: 0;
}

.opp-v2-link {
    font-size: .78rem;
    font-weight: 700;
    color: var(--gold-dk);
    display: flex;
    align-items: center;
    gap: .3rem;
    transition: gap .15s;
}
.opp-v2-card:hover .opp-v2-link { gap: .55rem; }

/* ── Homepage Carousel ───────────────────────────────── */
.hp-carousel {
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hp-carousel-slide {
    position: relative;
    height: 480px;
    background: var(--navy-mid);
}

.hp-carousel-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}
.hp-carousel-img--empty { background: var(--navy-mid); }

.hp-carousel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(10,20,38,.88) 0%,
        rgba(10,20,38,.55) 55%,
        rgba(10,20,38,.15) 100%
    );
}

.hp-carousel-body {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
}

.hp-carousel-inner {
    padding: 3rem;
    max-width: 560px;
    display: flex;
    flex-direction: column;
    gap: .85rem;
}

.hp-carousel-type {
    display: inline-block;
    padding: .25rem .75rem;
    background: var(--gold);
    color: var(--navy);
    border-radius: 9999px;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    width: fit-content;
}

.hp-carousel-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: var(--white);
    margin: 0;
    line-height: 1.2;
}

.hp-carousel-loc {
    display: flex;
    align-items: center;
    gap: .35rem;
    color: rgba(255,255,255,.6);
    font-size: .85rem;
    margin: 0;
}
.hp-carousel-loc svg { flex-shrink: 0; }

.hp-carousel-meta {
    display: flex;
    align-items: baseline;
    gap: 1rem;
}

.hp-carousel-price {
    font-family: 'Inter', sans-serif;
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.hp-carousel-sqm {
    font-size: .82rem;
    color: rgba(255,255,255,.5);
}

.hp-carousel-ctrl {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 1.5rem;
    width: 44px; height: 44px;
    background: rgba(255,255,255,.12) !important;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 50%;
    backdrop-filter: blur(8px);
    opacity: 1 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .15s;
}
.hp-carousel-ctrl--next { left: auto; right: 1.5rem; }
.hp-carousel-ctrl:hover { background: rgba(200,169,110,.3) !important; }

.hp-carousel-indicators {
    position: absolute;
    bottom: 1.2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: .4rem;
}
.hp-carousel-indicators button {
    width: 6px; height: 6px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,.35);
    padding: 0;
    cursor: pointer;
    transition: background .2s, transform .2s;
}
.hp-carousel-indicators button.active {
    background: var(--gold);
    transform: scale(1.35);
}

/* ── FAQ wrapper (narrow centered) ─────────────────── */
.hp-faq-wrap {
    max-width: 780px;
    margin: 0 auto;
}

/* ── Responsive: homepage ────────────────────────────── */
@media (max-width: 1100px) {
    .dest-v2-grid { grid-template-columns: 1fr 1fr; }
    .dest-v2-grid .dest-v2-card:last-child { display: none; }
    .opp-v2-grid { grid-template-columns: repeat(2, 1fr); }
    .svc-grid { grid-template-columns: repeat(2, 1fr); gap: 3rem 3rem; }
}

@media (max-width: 900px) {
    .cat-mega-pair { grid-template-columns: 1fr; }
    .cat-mega-card { min-height: 420px; }
}

@media (max-width: 768px) {
    .hp-section { padding: 72px 0; }
    .dest-v2-grid { grid-template-columns: 1fr; gap: 1rem; }
    .dest-v2-grid .dest-v2-card:last-child { display: block; }
    .dest-v2-card { height: 360px; }
    .svc-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .home-props-grid { grid-template-columns: 1fr; }
    .opp-v2-grid { grid-template-columns: 1fr 1fr; }
    .gc-hero-title { font-size: 2.4rem !important; }
    .gc-hero-ctas { flex-direction: column; }
    .gc-hero-ctas .btn-gc { justify-content: center; text-align: center; }
    .hp-carousel-slide { height: 380px; }
    .hp-carousel-inner { padding: 2rem; }
    .gc-hero-trust { gap: .75rem !important; }
    .gc-trust-sep { display: none; }
}

@media (max-width: 480px) {
    .opp-v2-grid { grid-template-columns: 1fr; }
    .hp-carousel-slide { height: 340px; }
    .gc-hero-title { font-size: 2rem !important; }
}

/* ── International Gateway — Intro Pillars ──────────── */
.intro-pillars {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.intro-pillar {
    background: var(--cream);
    border: 1px solid var(--stone);
    border-left: 4px solid var(--gold);
    border-radius: 10px;
    padding: 1.4rem 1.5rem;
    transition: box-shadow .2s, transform .2s;
}
.intro-pillar:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.intro-pillar-icon {
    font-size: 1.5rem;
    margin-bottom: .5rem;
    line-height: 1;
}

.intro-pillar-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: .4rem;
}

.intro-pillar-desc {
    font-size: .875rem;
    color: var(--text-lt);
    line-height: 1.7;
    margin: 0;
}

/* ── Greek Market — Stats Grid ──────────────────────── */
.market-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.market-stat {
    background: var(--navy);
    border-radius: 12px;
    padding: 2rem 1.75rem;
    text-align: center;
    border: 1px solid rgba(200,169,110,.18);
    transition: border-color .2s, box-shadow .2s;
}
.market-stat:hover {
    border-color: rgba(200,169,110,.45);
    box-shadow: 0 8px 28px rgba(15,31,53,.3);
}

.market-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: .6rem;
}

.market-stat-label {
    font-size: .8rem;
    color: rgba(255,255,255,.55);
    line-height: 1.5;
    letter-spacing: .02em;
}

/* ── Why Grecimmo — Checklist Grid ──────────────────── */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.4rem;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: .9rem;
    padding: 1.25rem 1.25rem;
    background: var(--cream);
    border: 1px solid var(--stone);
    border-radius: 10px;
    transition: box-shadow .2s;
}
.why-item:hover {
    box-shadow: var(--shadow-sm);
}

.why-check {
    flex-shrink: 0;
    width: 28px; height: 28px;
    background: var(--gold);
    color: var(--white);
    font-size: .8rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: .1rem;
}

.why-title {
    font-size: .92rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: .3rem;
    line-height: 1.35;
}

.why-desc {
    font-size: .82rem;
    color: var(--text-lt);
    line-height: 1.65;
    margin: 0;
}

/* ── Buying Process ─────────────────────────────────── */
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    position: relative;
    padding: 2rem 1.75rem 1.75rem;
    background: var(--white);
    border: 1px solid var(--stone);
    border-radius: 14px;
    transition: box-shadow .2s, transform .2s;
}
.process-step:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.process-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px; height: 44px;
    background: var(--gold-faint);
    border: 2px solid var(--gold);
    border-radius: 50%;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold-dk);
    margin-bottom: 1rem;
    line-height: 1;
}

.process-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: .6rem;
    line-height: 1.3;
}

.process-desc {
    font-size: .85rem;
    color: var(--text-lt);
    line-height: 1.7;
    margin: 0;
}

/* ── Responsive: new sections ────────────────────────── */
@media (max-width: 1100px) {
    .why-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .market-stats { grid-template-columns: repeat(2, 1fr); }
    .intro-pillars { gap: 1rem; }
}

@media (max-width: 768px) {
    .market-stats { grid-template-columns: 1fr 1fr; gap: 1rem; }
    .market-stat { padding: 1.5rem 1.25rem; }
    .market-stat-num { font-size: 1.9rem; }
    .process-grid { grid-template-columns: 1fr; gap: 1.25rem; }
    .why-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .market-stats { grid-template-columns: 1fr; }
}
