
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --black:      #080810;
    --card-bg:    #10101a;
    --card-border:#1e1e30;
    --gold:       #C9A84C;
    --gold-light: #E8C96A;
    --gold-dark:  #9A7730;
    --champagne:  #EAD9A4;
    --text:       #E2DDD4;
    --muted:      #8A8A9A;
    --white:      #ffffff;
    --radius:     18px;
    --radius-lg:  28px;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }

body {
    background: var(--black);
    font-family: 'Inter', sans-serif;
    color: var(--text);
    overflow-x: hidden;
}

h1,h2,h3,h4,h5 { font-family: 'Playfair Display', serif; }

/* ── GOLD UTILS ─────────────────────────────────────── */
.gold { color: var(--gold); }
.gold-gradient {
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── OVERLINE LABEL ─────────────────────────────────── */
.overline {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

/* ── DIVIDER ────────────────────────────────────────── */
.gold-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 auto 56px;
}
.gold-divider::before, .gold-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,168,76,.45));
}
.gold-divider::after {
    background: linear-gradient(90deg, rgba(201,168,76,.45), transparent);
}
.gold-divider span {
    width: 6px; height: 6px;
    background: var(--gold);
    transform: rotate(45deg);
    box-shadow: 0 0 10px rgba(201,168,76,.6);
    flex-shrink: 0;
}

/* ══════════════════════════════════════
   NAVBAR
══════════════════════════════════════ */
.custom-navbar.scrolled {
    background: rgba(8,8,16,1);
    border-bottom-color: rgba(201,168,76,.25);
    box-shadow: 0 4px 30px rgba(0,0,0,.5);
}
.custom-navbar {
    background: rgba(8,8,16,.96);
    border-bottom: 1px solid rgba(201,168,76,.12);
    min-height: 90px;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}
.navbar-contacts { border-left: 1px solid rgba(201,168,76,.2); padding-left: 16px; }
.nav-contact-link {
    color: var(--champagne);
    text-decoration: none;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color .2s;
}
.nav-contact-link:hover { color: var(--gold); }
.nav-contact-link i { color: var(--gold); font-size: 11px; }
.navbar-brand img { height: 68px; width: auto; }

.navbar-nav { gap: 32px; }

.nav-link {
    color: var(--text) !important;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color .25s;
    position: relative;
    padding: 4px 0 !important;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width .3s;
}
.nav-link:hover { color: var(--gold) !important; }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link.active { color: var(--champagne) !important; }

.contact-btn {
    border: 1px solid rgba(201,168,76,.5);
    color: var(--champagne);
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: .3s;
    white-space: nowrap;
}
.contact-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #000;
}

.dropdown-menu {
    background: #0d0d18;
    border: 1px solid rgba(201,168,76,.2);
    border-radius: var(--radius);
    padding: 8px;
    box-shadow: 0 24px 48px rgba(0,0,0,.6);
}
.dropdown-item {
    color: var(--champagne);
    padding: 11px 18px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    transition: .2s;
}
.dropdown-item:hover { background: var(--gold); color: #000; }
@media(min-width:992px){
    .dropdown:hover .dropdown-menu { display:block; margin-top:0; }
}

/* Mobile nav */
@media(max-width:991px){
    .navbar-contacts { border-left: 1px solid rgba(201,168,76,.2); padding-left: 16px; }
.nav-contact-link {
    color: var(--champagne);
    text-decoration: none;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color .2s;
}
.nav-contact-link:hover { color: var(--gold); }
.nav-contact-link i { color: var(--gold); font-size: 11px; }
.navbar-brand img { height: 52px; }
    .navbar-collapse {
        background: #0d0d1a;
        margin-top: 12px;
        padding: 20px;
        border-radius: 20px;
        border: 1px solid rgba(201,168,76,.15);
    }
    .navbar-nav { flex-direction:column; align-items:flex-start; gap:14px; margin-bottom:16px; }
    .contact-btn { width:100%; text-align:center; }
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
    min-height: 100vh;
    background:
        linear-gradient(105deg, rgba(8,8,16,.88) 45%, rgba(8,8,16,.55) 100%),
        image-set(
            url('bolyar.webp') type('image/webp') 1x,
            url('bolyar.jpg')  type('image/jpeg') 1x
        ) center/cover no-repeat;
    display: flex;
    align-items: center;
    padding: 110px 0 80px;
    position: relative;
    overflow: hidden;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 120px;
    background: linear-gradient(transparent, var(--black));
    pointer-events: none;
}

.phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--champagne);
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    margin-bottom: 24px;
    letter-spacing: .5px;
}
.phone i { color: var(--gold); font-size: 14px; }

.hero h1 {
    font-size: 68px;
    font-weight: 800;
    line-height: 1.08;
    color: #fff;
    margin-bottom: 28px;
    text-shadow: 0 4px 24px rgba(0,0,0,.5);
}
.hero h1 span {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text {
    font-size: 18px;
    color: rgba(226,221,212,.85);
    line-height: 1.85;
    margin-bottom: 40px;
    max-width: 520px;
}

.hero-buttons { display:flex; gap:16px; flex-wrap:wrap; }

/* Buttons */
.btn-gold {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: #050508;
    padding: 15px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .5px;
    transition: .3s;
    box-shadow: 0 8px 24px rgba(201,168,76,.3);
}
.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(201,168,76,.45);
    color: #000;
}
.btn-outline-gold {
    display: inline-block;
    border: 1.5px solid rgba(201,168,76,.6);
    color: var(--champagne);
    padding: 15px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    transition: .3s;
}
.btn-outline-gold:hover {
    background: rgba(201,168,76,.12);
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

/* HERO FORM */
.hero-form {
    background: rgba(10,10,20,.9);
    border: 1px solid rgba(201,168,76,.22);
    border-radius: var(--radius-lg);
    padding: 38px 36px;
    backdrop-filter: blur(24px);
    box-shadow: 0 32px 64px rgba(0,0,0,.5), inset 0 1px 0 rgba(201,168,76,.1);
}
.hero-form h3 {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 26px;
    letter-spacing: .5px;
}

/* Inputs */
.custom-input {
    background: rgba(255,255,255,.04) !important;
    border: 1px solid rgba(201,168,76,.18) !important;
    color: var(--text) !important;
    border-radius: 12px !important;
    padding: 14px 16px !important;
    font-size: 14px !important;
    font-family: 'Inter', sans-serif !important;
    transition: .25s !important;
}
.custom-input::placeholder { color: rgba(138,138,154,.7) !important; }
.custom-input:focus {
    background: rgba(255,255,255,.06) !important;
    border-color: var(--gold) !important;
    box-shadow: 0 0 0 3px rgba(201,168,76,.12) !important;
    outline: none !important;
}
.form-select.custom-input { appearance: none; cursor: pointer; }

textarea.custom-input { resize:none; min-height:110px; }

.gold-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: #050508;
    border: none;
    border-radius: 12px;
    padding: 16px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: .5px;
    cursor: pointer;
    transition: .3s;
    box-shadow: 0 6px 20px rgba(201,168,76,.25);
}
.gold-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(201,168,76,.4);
}

.hero-form .form-control,
.hero-form .form-select { margin-bottom: 14px; }

/* ── STATS BAR ────────────────────────────────────── */
.stats-bar {
    background: linear-gradient(180deg, var(--black) 0%, #0d0d1a 100%);
    border-top: 1px solid rgba(201,168,76,.1);
    border-bottom: 1px solid rgba(201,168,76,.1);
    padding: 50px 0;
}
.stat-item { text-align: center; padding: 0 20px; }
.stat-item + .stat-item {
    border-left: 1px solid rgba(201,168,76,.12);
}
.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}
.stat-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--muted);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ══════════════════════════════════════
   ABOUT SECTION (homepage)
══════════════════════════════════════ */
.about-section {
    background: #0d0d1a;
    padding: 100px 0;
}
.about-owner {
    width: 100%;
    max-width: 420px;
    border-radius: 24px;
    border: 1px solid rgba(201,168,76,.3);
    box-shadow: 0 32px 60px rgba(0,0,0,.5), 0 0 0 6px rgba(201,168,76,.06);
}
.section-subtitle { /* = overline */ }
.section-title {
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 28px;
    line-height: 1.2;
}
.section-text {
    color: rgba(226,221,212,.75);
    font-size: 16.5px;
    line-height: 1.9;
    margin-bottom: 18px;
}
.section-text strong { color: var(--gold); }

/* ══════════════════════════════════════
   PROPERTY CARDS
══════════════════════════════════════ */
.properties-section {
    background: var(--black);
    padding: 100px 0;
}

.property-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--card-border);
    transition: transform .35s, border-color .35s, box-shadow .35s;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.property-card:hover {
    transform: translateY(-10px);
    border-color: rgba(201,168,76,.4);
    box-shadow: 0 24px 48px rgba(0,0,0,.5), 0 0 0 1px rgba(201,168,76,.15);
}

.property-image {
    position: relative;
    overflow: hidden;
}
.property-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform .5s ease;
    display: block;
}
.property-card:hover .property-img { transform: scale(1.07); }

/* gradient overlay on image */
.property-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8,8,16,.7) 0%, transparent 55%);
    pointer-events: none;
}

.property-type {
    position: absolute;
    top: 14px; left: 14px;
    z-index: 2;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: #050508;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.property-content {
    padding: 22px 24px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.property-city {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
}
.property-content h4 {
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    margin: 10px 0 0;
    line-height: 1.4;
    flex: 1;
}
.property-meta {
    display: flex;
    gap: 14px;
    margin: 12px 0;
    color: var(--muted);
    font-size: 13px;
}
.property-meta i { color: var(--gold); margin-right: 4px; font-size: 12px; }

.property-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--card-border);
}
.price {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.details-btn {
    background: rgba(201,168,76,.12);
    border: 1px solid rgba(201,168,76,.3);
    color: var(--gold);
    padding: 8px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: .25s;
}
.details-btn:hover {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
}

.property-img-placeholder {
    width: 100%;
    height: 240px;
    background: #131320;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(201,168,76,.2);
    font-size: 4rem;
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer {
    background: #060610;
    border-top: 1px solid rgba(201,168,76,.1);
    padding: 48px 0 20px;
}
.footer-logo { width: 140px; margin-bottom: 10px; }
.footer h5 {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    font-size: 17px;
    margin-bottom: 14px;
}
.footer-contact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text);
    text-decoration: none;
    font-size: 17px;
    margin-bottom: 16px;
    transition: color .2s;
}
.footer-contact:hover { color: var(--gold); }
.footer-contact i { color: var(--gold); }

.footer-social { display: flex; justify-content: flex-end; gap: 10px; }
.footer-social a {
    width: 38px; height: 38px;
    border: 1px solid rgba(201,168,76,.3);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    text-decoration: none;
    transition: .25s;
    font-size: 15px;
}
.footer-social a:hover { background: var(--gold); color: #000; border-color: var(--gold); }
.footer hr { border-color: rgba(201,168,76,.08); margin: 28px 0 16px; }
.copyright { text-align: center; color: #444; font-size: 13px; }

@media(max-width:991px){
    .footer { text-align:center; }
    .footer-social { justify-content:center; margin-top:16px; }
}

/* ══════════════════════════════════════
   PAGE HERO (about / contacts / listings)
══════════════════════════════════════ */
.page-hero {
    background:
        linear-gradient(rgba(8,8,16,.8), rgba(8,8,16,.85)),
        image-set(
            url('bolyar.webp') type('image/webp') 1x,
            url('bolyar.jpg')  type('image/jpeg') 1x
        ) center/cover no-repeat;
    padding: 130px 0 80px;
    text-align: center;
}
.page-hero h1 {
    font-size: 52px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}
.page-hero p {
    font-size: 18px;
    color: rgba(226,221,212,.7);
    max-width: 580px;
    margin: auto;
    line-height: 1.7;
}

/* ══════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════ */
.about-page { background: var(--black); padding: 100px 0; }
.founder-img {
    width: 100%;
    border-radius: 24px;
    border: 1px solid rgba(201,168,76,.3);
    box-shadow: 0 32px 60px rgba(0,0,0,.5);
}
.founder {
    margin-top: 32px;
    color: var(--gold);
    font-size: 17px;
    font-style: italic;
}

.values { background: #0d0d1a; padding: 100px 0; }
.value-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 42px 32px;
    text-align: center;
    transition: .35s;
    height: 100%;
}
.value-card:hover {
    border-color: rgba(201,168,76,.35);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,.4);
}
.value-card i { font-size: 40px; color: var(--gold); display: block; margin-bottom: 22px; }
.value-card h4 { color: #fff; margin-bottom: 16px; font-size: 20px; }
.value-card p { color: var(--muted); line-height: 1.8; font-size: 15px; }

.why-us { background: var(--black); padding: 100px 0; }
.why-us .col-md-3 { padding: 30px 20px; text-align: center; }
.why-us i { color: var(--gold); font-size: 48px; display: block; margin-bottom: 16px; }
.why-us h5 { color: #fff; font-size: 18px; }

.about-cta {
    background: linear-gradient(rgba(8,8,16,.82), rgba(8,8,16,.82)), url('bolyar.jpg') center/cover no-repeat;
    padding: 110px 0;
    text-align: center;
}
.about-cta h2 { color: #fff; font-size: 42px; margin-bottom: 20px; }
.about-cta p {
    color: rgba(226,221,212,.75);
    max-width: 680px;
    margin: 0 auto 36px;
    line-height: 1.8;
    font-size: 17px;
}

/* ══════════════════════════════════════
   CONTACTS PAGE
══════════════════════════════════════ */
.contact-hero {
    background: linear-gradient(rgba(8,8,16,.85), rgba(8,8,16,.82)),
                url('buildingIndex.jpg') center/cover no-repeat;
    padding: 120px 0 80px;
    position: relative;
}
.contact-hero .overlay {
    position: absolute; inset: 0;
    background: rgba(8,8,16,.3);
    pointer-events: none;
}
.hero-title {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    letter-spacing: .04em;
    margin-bottom: 16px;
}
.hero-subtitle {
    font-size: 18px;
    color: rgba(226,221,212,.75);
    max-width: 580px;
    margin: auto;
    line-height: 1.75;
}
.contact-card {
    background: rgba(10,10,20,.92);
    border: 1px solid rgba(201,168,76,.2);
    border-radius: var(--radius-lg);
    padding: 48px 44px;
    backdrop-filter: blur(20px);
    box-shadow: 0 24px 60px rgba(0,0,0,.5);
}
.contact-card h2 {
    color: var(--gold);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 32px;
    letter-spacing: .04em;
    text-align: center;
}
.contact-info-section { background: #0d0d1a; padding: 80px 0; }
.info-box {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 44px 32px;
    text-align: center;
    transition: .35s;
}
.info-box:hover {
    border-color: rgba(201,168,76,.35);
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0,0,0,.4);
}
.info-box i { font-size: 36px; color: var(--gold); display: block; margin-bottom: 18px; }
.info-box h4 { color: #fff; font-size: 14px; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 12px; }
.info-box a, .info-box p { color: rgba(226,221,212,.8); text-decoration: none; font-size: 16px; line-height: 1.7; margin:0; }
.info-box a:hover { color: var(--gold); }

/* ══════════════════════════════════════
   LISTINGS FILTER BAR
══════════════════════════════════════ */
.filter-bar {
    background: #0d0d1a;
    border-bottom: 1px solid rgba(201,168,76,.1);
    padding: 28px 0;
}
.filter-label {
    display: block;
    color: var(--gold);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.results-count { color: var(--muted); font-size: 14px; }

/* Filter pills */
.filter-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 14px;
    background: rgba(201,168,76,.08);
    border: 1px solid rgba(201,168,76,.25);
    border-radius: 50px;
    color: var(--gold);
    font-size: 12px;
    text-decoration: none;
    transition: .2s;
}
.filter-pill:hover { background: rgba(201,168,76,.18); color: var(--gold); }
.filter-clear { color: var(--muted); font-size: 12px; text-decoration: underline; cursor:pointer; }
.filter-clear:hover { color: var(--gold); }

/* ══════════════════════════════════════
   PAGINATION
══════════════════════════════════════ */
.pagination-gold .page-link {
    background: var(--card-bg);
    border-color: rgba(201,168,76,.2);
    color: var(--gold);
    border-radius: 10px;
    margin: 0 3px;
    transition: .25s;
}
.pagination-gold .page-link:hover,
.pagination-gold .page-item.active .page-link {
    background: var(--gold);
    border-color: var(--gold);
    color: #000;
}

/* ══════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════ */
.hero-text, .phone, .hero-form {
    animation: fadeUp .8s ease both;
}
.hero-text { animation-delay: .1s; }
.hero-buttons { animation: fadeUp .8s .2s ease both; }
.hero-form { animation-delay: .15s; }

@keyframes fadeUp {
    from { opacity:0; transform:translateY(30px); }
    to   { opacity:1; transform:translateY(0); }
}

/* ══════════════════════════════════════
   MOBILE
══════════════════════════════════════ */
@media(max-width:991px){
    .hero { padding: 90px 0 60px; text-align: center; }
    .hero h1 { font-size: 46px; }
    .hero-text { font-size: 16px; max-width: 100%; margin-bottom: 30px; }
    .hero-buttons { justify-content: center; }
    .hero-form { margin-top: 44px; padding: 28px 24px; }
    .stat-item + .stat-item { border-left: none; border-top: 1px solid rgba(201,168,76,.1); }
    .stat-number { font-size: 36px; }
}
@media(max-width:576px){
    .hero h1 { font-size: 34px; }
    .btn-gold, .btn-outline-gold { width:100%; text-align:center; }
    .hero-buttons { flex-direction: column; }
    .page-hero h1 { font-size: 36px; }
    .section-title { font-size: 30px; }
    .contact-card { padding: 32px 22px; }
}

/* ══════════════════════════════════════
   SCROLL ANIMATIONS
══════════════════════════════════════ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .65s ease, transform .65s ease;
}
.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ══════════════════════════════════════
   WHATSAPP FLOAT
══════════════════════════════════════ */
.whatsapp-float {
    position: fixed;
    bottom: 28px; right: 28px;
    z-index: 9999;
    width: 58px; height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 28px;
    box-shadow: 0 6px 24px rgba(37,211,102,.5);
    text-decoration: none;
    transition: .3s;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 32px rgba(37,211,102,.65);
    color: #fff;
}

/* ══════════════════════════════════════
   SELLER CTA BAND
══════════════════════════════════════ */
.seller-cta {
    background: linear-gradient(135deg, #0d0d1a 0%, #12101e 100%);
    border-top: 1px solid rgba(201,168,76,.12);
    border-bottom: 1px solid rgba(201,168,76,.12);
    padding: 70px 0;
}
.seller-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    color: #fff;
    margin-bottom: 14px;
}
.seller-cta p {
    color: var(--muted);
    font-size: 16px;
    margin: 0;
}

/* ══════════════════════════════════════
   FOOTER LINKS
══════════════════════════════════════ */
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 14px;
    transition: color .2s;
}
.footer-links a:hover { color: var(--gold); }

/* ══════════════════════════════════════
   PROPERTY DETAIL PAGE
══════════════════════════════════════ */
.property-detail { background: var(--black); padding: 60px 0 100px; }

.breadcrumb-bar {
    background: #0a0a14;
    border-bottom: 1px solid rgba(201,168,76,.08);
    padding: 14px 0;
}
.breadcrumb { margin: 0; background: transparent; padding: 0; font-size: 13px; }
.breadcrumb-item a { color: var(--muted); text-decoration: none; }
.breadcrumb-item a:hover { color: var(--gold); }
.breadcrumb-item.active { color: var(--champagne); }
.breadcrumb-item + .breadcrumb-item::before { color: #444; }

/* Gallery */
.prop-gallery .carousel-item img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 20px;
}
.prop-thumbs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 10px;
}
.prop-thumb {
    width: 72px; height: 52px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    opacity: .55;
    border: 2px solid transparent;
    transition: .2s;
}
.prop-thumb.active, .prop-thumb:hover { opacity: 1; border-color: var(--gold); }
.prop-no-img {
    width: 100%; height: 400px;
    background: var(--card-bg);
    border-radius: 20px;
    display: flex; align-items: center; justify-content: center;
    color: rgba(201,168,76,.2); font-size: 5rem;
}

/* Info panel */
.prop-info-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    position: sticky;
    top: 100px;
}
.prop-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: #000;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}
.prop-price {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    line-height: 1;
}
.prop-title {
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 24px;
    line-height: 1.4;
}
.prop-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 28px;
}
.prop-spec {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(201,168,76,.1);
    border-radius: 12px;
    padding: 14px 16px;
}
.prop-spec-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 4px;
}
.prop-spec-value { color: #fff; font-size: 15px; font-weight: 500; }

/* Contact form on property page */
.prop-contact-form {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin-top: 24px;
}
.prop-contact-form h4 {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    font-size: 19px;
    margin-bottom: 20px;
}

/* ══════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════ */
.about-hero {
    background:
        linear-gradient(rgba(8,8,16,.82), rgba(8,8,16,.82)),
        url('/bolyar.jpg') center/cover no-repeat;
    padding: 130px 0 80px;
    text-align: center;
}
.about-hero h1 { font-size: 52px; color: #fff; margin-bottom: 16px; }
.about-hero p { font-size: 18px; color: rgba(226,221,212,.7); max-width: 580px; margin: auto; line-height: 1.7; }

.about-content { background: var(--black); padding: 100px 0; }
.about-img {
    width: 100%;
    max-width: 420px;
    border-radius: 24px;
    border: 1px solid rgba(201,168,76,.25);
    box-shadow: 0 32px 60px rgba(0,0,0,.5);
}
.value-grid { background: #0d0d1a; padding: 90px 0; }
.value-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 40px 28px;
    text-align: center;
    height: 100%;
    transition: .35s;
}
.value-card:hover {
    border-color: rgba(201,168,76,.35);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,.4);
}
.value-card i { font-size: 38px; color: var(--gold); display: block; margin-bottom: 20px; }
.value-card h4 { color: #fff; font-size: 19px; margin-bottom: 14px; }
.value-card p { color: var(--muted); line-height: 1.8; font-size: 14px; }

/* ══════════════════════════════════════
   CONTACTS PAGE
══════════════════════════════════════ */
.contacts-section { background: var(--black); padding: 80px 0 100px; }
.contact-form-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 48px 44px;
}
.contact-form-card h2 {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    font-size: 24px;
    margin-bottom: 32px;
}
.contact-info-box {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: .3s;
    height: 100%;
}
.contact-info-box:hover {
    border-color: rgba(201,168,76,.3);
    transform: translateY(-5px);
}
.contact-info-box i { font-size: 32px; color: var(--gold); display: block; margin-bottom: 14px; }
.contact-info-box h4 {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 10px;
}
.contact-info-box a, .contact-info-box p {
    color: var(--text);
    text-decoration: none;
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}
.contact-info-box a:hover { color: var(--gold); }

.alert-gold {
    background: rgba(201,168,76,.1);
    border: 1px solid rgba(201,168,76,.3);
    color: var(--champagne);
    border-radius: 12px;
    padding: 16px 20px;
    font-size: 15px;
}
.alert-error {
    background: rgba(220,53,69,.1);
    border: 1px solid rgba(220,53,69,.3);
    color: #f8a;
    border-radius: 12px;
    padding: 16px 20px;
    font-size: 15px;
}
