:root {
    --color-background-primary: #2b2b29;
    --color-background-secondary: #272725;
    --color-text-primary: #f4f5f7;
    --color-text-secondary: #b8bec7;
    --color-border-primary: #474d57;
    --color-border-secondary: #5a616d;
    --color-border-tertiary: #3c4048;
    --color-brand-blue: #378add;
    --color-shadow: rgba(0, 0, 0, 0.24);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Sora", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background: radial-gradient(1200px 700px at 0% 0%, #31312f, #232321 62%);
    color: var(--color-text-primary);
}

a {
    color: inherit;
}

.page {
    width: 100%;
    max-width: 1060px;
    margin: 0 auto;
    padding: 10px 12px 24px;
}

.nav {
    border: 1px solid var(--color-border-primary);
    border-radius: 16px;
    background: linear-gradient(180deg, #30302e, #2a2a28);
    overflow: hidden;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 14px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.nav-mark {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: #1c5da8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.nav-name {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.1;
    white-space: nowrap;
}

.nav-tagline {
    color: var(--color-text-secondary);
    font-size: 11px;
    line-height: 1.2;
    margin-top: 2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.nav-link,
.nav-cta {
    border: 1px solid var(--color-border-secondary);
    color: var(--color-text-primary);
    background: transparent;
    border-radius: 10px;
    font-size: 12px;
    line-height: 1;
    padding: 8px 14px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.nav-cta {
    background: #38404d;
    border-color: #6c7685;
}

.nav-link:hover,
.nav-cta:hover {
    background: #38404d;
    border-color: #8491a3;
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--color-border-secondary);
    border-radius: 12px;
    background: transparent;
    color: var(--color-text-primary);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    position: relative;
}

.nav-toggle::before,
.nav-toggle::after,
.nav-toggle span {
    content: "";
    display: block;
    width: 20px;
    height: 2.2px;
    background: currentColor;
    border-radius: 999px;
    transition: transform .18s ease, opacity .18s ease;
    position: absolute;
}

.nav-toggle::before {
    transform: translateY(-6px);
}

.nav-toggle::after {
    transform: translateY(6px);
}

.nav-toggle.is-open::before {
    transform: rotate(45deg);
}

.nav-toggle.is-open::after {
    transform: rotate(-45deg);
}

.nav-toggle.is-open span {
    opacity: 0;
}

.hero,
.section,
.contact-section {
    border-top: 1px solid var(--color-border-tertiary);
    margin-top: 12px;
    padding: 22px 8px 8px;
}

.hero-inner,
.section-inner,
.contact-inner {
    border: 1px solid var(--color-border-primary);
    border-radius: 16px;
    background: linear-gradient(180deg, #2f2f2d, #2a2a28);
    padding: 20px;
}

.section-contrast .section-inner {
    background: linear-gradient(180deg, #2d2d2b, #272725);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    border: 1px solid #96c2ef;
    background: #e6f1fb;
    color: #165ea4;
    font-size: 11px;
    padding: 4px 10px;
    margin-bottom: 16px;
}

.hero-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #2e7ad5;
}

.hero-h1 {
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.04;
    margin: 0;
    letter-spacing: -0.02em;
    max-width: 680px;
}

.hero-h1 span {
    color: #2e7ad5;
}

.hero-sub,
.section-sub,
.ci-sub {
    margin: 12px 0 0;
    color: var(--color-text-secondary);
    font-size: 16px;
    line-height: 1.55;
    max-width: 760px;
}

.hero-actions {
    margin-top: 22px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-outline {
    border-radius: 12px;
    font-size: 14px;
    line-height: 1;
    padding: 12px 16px;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
}

.btn-primary {
    background: #2f7fd8;
    border: 1px solid #58a0ee;
    color: #f4f8ff;
}

.btn-primary:hover {
    background: #2a73c4;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--color-border-secondary);
    color: #d7dce3;
}

.btn-outline:hover {
    background: #353a43;
}

.hero-stats {
    margin-top: 26px;
    display: flex;
    gap: 0;
    flex-wrap: wrap;
    border-top: 1px solid var(--color-border-tertiary);
    padding-top: 18px;
}

.stat-item {
    min-width: 150px;
    flex: 1 1 0;
    padding-right: 12px;
}

.stat-num {
    display: block;
    font-size: 34px;
    font-weight: 700;
    line-height: 1;
}

.stat-lbl {
    margin-top: 6px;
    display: block;
    color: var(--color-text-secondary);
    font-size: 13px;
    line-height: 1.3;
}

.section-label {
    color: #2f8dee;
    font-size: 11px;
    margin-bottom: 8px;
    letter-spacing: 0.04em;
}

.section-title {
    margin: 0;
    font-size: clamp(29px, 4vw, 42px);
    line-height: 1.12;
}

.prop-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.prop-card {
    border: 1px solid var(--color-border-primary);
    border-radius: 14px;
    overflow: hidden;
    background: #2c2c2a;
}

.prop-card.is-featured {
    border: 2px solid #2e7ad5;
}

.prop-img {
    height: 140px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prop-img.theme-blue { background: #e6f1fb; }
.prop-img.theme-green { background: #e1f5ee; }
.prop-img.theme-amber { background: #faeeda; }
.prop-img.theme-violet { background: #eeedfe; }

.prop-type-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    border-radius: 20px;
    padding: 3px 9px;
    font-size: 10px;
    font-weight: 600;
}

.prop-type-badge.theme-blue { background: #e6f1fb; color: #185fa5; }
.prop-type-badge.theme-green { background: #e1f5ee; color: #0f6e56; }
.prop-type-badge.theme-amber { background: #faeeda; color: #854f0b; }
.prop-type-badge.theme-violet { background: #eeedfe; color: #534ab7; }

.prop-featured-pill {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 20px;
    background: #e6f1fb;
    color: #185fa5;
}

.prop-body {
    padding: 12px;
}

.prop-name {
    font-size: 20px;
    line-height: 1.2;
    font-weight: 600;
}

.prop-loc {
    margin-top: 8px;
    color: var(--color-text-secondary);
    font-size: 12px;
}

.prop-meta {
    margin-top: 9px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.prop-chip {
    border: 1px solid #5a616d;
    border-radius: 20px;
    font-size: 10px;
    padding: 3px 7px;
    color: #d7dce3;
}

.prop-footer {
    margin-top: 12px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 8px;
}

.prop-rent {
    font-size: 25px;
    font-weight: 700;
    line-height: 1;
}

.prop-rent-lbl {
    color: var(--color-text-secondary);
    font-size: 11px;
    margin-top: 4px;
}

.prop-btn {
    border: 1px solid var(--color-border-secondary);
    background: transparent;
    color: var(--color-text-primary);
    border-radius: 10px;
    font-size: 12px;
    line-height: 1;
    padding: 9px 16px;
    cursor: pointer;
}

.prop-btn:hover {
    background: #373d46;
}

.prop-btn.is-requested {
    background: #dceecf;
    border-color: #9bc57a;
    color: #3f6f1f;
}

.section-hoardings .section-inner {
    background: linear-gradient(180deg, #2a313a, #242b33);
}

.hoardings-home-head .section-sub {
    margin-top: 10px;
}

.hoarding-home-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 16px;
}

.hoarding-home-card {
    border: 1px solid var(--color-border-primary);
    border-radius: 14px;
    overflow: hidden;
    background: #2b323b;
}

.hoarding-home-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.hoarding-home-body {
    padding: 13px;
}

.hoarding-home-body h3 {
    margin: 0;
    font-size: 19px;
    line-height: 1.2;
}

.hoarding-home-meta {
    margin: 6px 0 0;
    color: var(--color-text-secondary);
    font-size: 12px;
}

.hoarding-home-row {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.hoarding-home-price {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
}

.hoarding-home-status {
    font-size: 11px;
    font-weight: 700;
    border-radius: 999px;
    padding: 4px 9px;
    border: 1px solid transparent;
}

.hoarding-home-status.is-available {
    border-color: #81c6a0;
    color: #a5e4c0;
    background: rgba(23, 84, 55, 0.3);
}

.hoarding-home-status.is-booked {
    border-color: #c58f6d;
    color: #f7c5a6;
    background: rgba(101, 51, 20, 0.28);
}

.hoarding-home-status.is-filling-fast {
    border-color: #d2bf7a;
    color: #f5df95;
    background: rgba(107, 79, 15, 0.35);
}

.hoarding-home-status.is-hot {
    border-color: #df8f8f;
    color: #ffc2c2;
    background: rgba(125, 31, 31, 0.35);
}

.hoarding-home-note {
    margin: 9px 0 0;
    color: #b9c6d5;
    font-size: 12px;
    line-height: 1.4;
}

.hoarding-home-actions {
    margin-top: 12px;
    display: flex;
    gap: 8px;
}

.hoarding-home-actions a {
    width: 100%;
    text-align: center;
    justify-content: center;
}

.hoarding-home-footer {
    margin-top: 14px;
}

.hoarding-home-empty {
    margin-top: 16px;
    color: var(--color-text-secondary);
    border: 1px dashed var(--color-border-secondary);
    border-radius: 12px;
    padding: 12px;
}

.areas-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.area-pill {
    border: 1px solid var(--color-border-secondary);
    background: #2d2d2b;
    color: #e4e8ef;
    border-radius: 24px;
    padding: 7px 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    cursor: pointer;
}

.area-pill:hover {
    background: #363d47;
}

.area-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--color-brand-blue);
    flex: 0 0 auto;
}

.area-name {
    font-weight: 600;
    white-space: nowrap;
}

.area-count {
    color: var(--color-text-secondary);
    font-size: 11px;
    white-space: nowrap;
}

.why-grid {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.why-card {
    border: 1px solid var(--color-border-primary);
    border-radius: 12px;
    padding: 14px;
    background: #2d2d2b;
}

.why-icon {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    margin-bottom: 10px;
}

.why-icon.theme-blue { background: #e6f1fb; }
.why-icon.theme-green { background: #e1f5ee; }
.why-icon.theme-amber { background: #faeeda; }
.why-icon.theme-lime { background: #eaf3de; }

.why-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}

.why-desc {
    color: var(--color-text-secondary);
    font-size: 12px;
    line-height: 1.45;
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.ci-title {
    font-size: clamp(30px, 3.2vw, 45px);
    line-height: 1.05;
    margin: 0;
    letter-spacing: -0.02em;
}

.ci-item {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ci-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    border: 1px solid var(--color-border-secondary);
    background: #303843;
    color: #7db6f0;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.ci-text-title {
    color: var(--color-text-secondary);
    font-size: 11px;
    line-height: 1;
}

.ci-text-val {
    font-size: 13px;
    margin-top: 4px;
    line-height: 1.2;
}

.wa-strip {
    margin-top: 12px;
    border: 1px solid #9bc57a;
    background: #dceecf;
    border-radius: 10px;
    padding: 9px 11px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.wa-text {
    color: #2f6320;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.1;
}

.wa-sub {
    color: #3d7028;
    font-size: 10px;
    margin-top: 2px;
    line-height: 1;
}

.wa-btn {
    margin-left: auto;
    border: 1px solid #3f8f2c;
    border-radius: 999px;
    background: #3f8f2c;
    color: #fff;
    padding: 6px 10px;
    font-size: 11px;
    text-decoration: none;
    line-height: 1;
    white-space: nowrap;
}

.contact-form {
    border: 1px solid var(--color-border-primary);
    border-radius: 12px;
    background: #2d2d2b;
    padding: 14px;
}

.form-title {
    font-size: 20px;
    line-height: 1.2;
    margin-bottom: 10px;
}

.form-row {
    display: flex;
    gap: 10px;
}

.form-group {
    margin-top: 8px;
    width: 100%;
}

.form-label {
    display: block;
    font-size: 11px;
    color: var(--color-text-secondary);
    margin-bottom: 5px;
    line-height: 1.1;
}

.form-input {
    width: 100%;
    border: 1px solid var(--color-border-secondary);
    background: #2e2e2c;
    color: var(--color-text-primary);
    border-radius: 8px;
    padding: 10px 11px;
    font-size: 14px;
    font-family: inherit;
    line-height: 1.2;
    outline: none;
}

.form-input:focus {
    border-color: #70a7e5;
    box-shadow: 0 0 0 2px rgba(55, 138, 221, 0.15);
}

.form-submit {
    margin-top: 12px;
    width: 100%;
    border: 1px solid var(--color-border-secondary);
    background: transparent;
    color: var(--color-text-primary);
    border-radius: 10px;
    padding: 11px 12px;
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
}

.form-submit:hover {
    background: #373d46;
}

.form-message {
    font-size: 12px;
    text-align: center;
    margin-top: 10px;
    min-height: 16px;
    color: #9cd27f;
}

.footer {
    border-top: 1px solid var(--color-border-tertiary);
    margin-top: 18px;
    padding: 10px 8px 2px;
    color: var(--color-text-secondary);
    font-size: 12px;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer a {
    color: var(--color-text-secondary);
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-link {
    color: var(--color-text-secondary);
    text-decoration: none;
    cursor: pointer;
}

.footer-link:hover {
    color: var(--color-text-primary);
}

@media (max-width: 980px) {
    .prop-grid {
        grid-template-columns: 1fr;
    }

    .hoarding-home-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .nav-toggle {
        display: inline-flex;
        margin-left: auto;
    }

    .nav-links {
        display: none;
        width: 100%;
        border-top: 1px solid #404754;
        padding-top: 8px;
        margin-top: 2px;
    }

    .nav-links.is-open {
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }

    .nav-link,
    .nav-cta {
        width: 100%;
        padding: 10px 12px;
    }

    .nav-inner {
        flex-wrap: wrap;
    }

    .hero-h1 {
        font-size: clamp(30px, 8vw, 44px);
    }

    .hero-sub,
    .section-sub,
    .ci-sub {
        font-size: 15px;
    }

    .hero-stats {
        gap: 10px;
    }

    .stat-item {
        min-width: 140px;
        flex: 1 1 46%;
    }

    .contact-inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .page {
        padding: 8px 8px 22px;
    }

    .hero-inner,
    .section-inner,
    .contact-inner {
        padding: 14px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        flex-direction: column;
    }

    .hoarding-home-grid {
        grid-template-columns: 1fr;
    }
}
