:root {

    --sand: #d6b98c;

    --skyline-blue: #5fa8ff;

    --glass-bg: rgba(18,20,24,.34); 

    --glass-border: rgba(255,255,255,.08);

    --text-light: #ffffff;

    --text-muted: rgba(255,255,255,.74);

}

/* ======================================================
   CUSTOM CONTAINER
====================================================== */

@media (min-width: 1400px) {

    .container {

        max-width: 90%;

    }

}

/* ======================================================
   GLOBAL
====================================================== */

body {

    font-family: 'Inter', sans-serif;

    background: #05070a;

    color: var(--text-light);

    overflow-x: hidden;

}

h1,h2,h3,h4,h5,h6 {

    font-family: 'Poppins', sans-serif;

}

/* ======================================================
   HERO
====================================================== */

.hero-section {

    position: relative;

    min-height: 100vh;

    background:

    url('/images/hero-background.webp');

    background-size: cover;

    background-position: center center;

    background-attachment: fixed;

}

.hero-overlay {

    position: absolute;

    inset: 0;

    background:
    radial-gradient(
    circle at top right,
    rgba(95,168,255,.12),
    transparent 35%
    );

}

.hero-card {

    position: relative;

    overflow: visible;

    padding: 40px;

    max-width: 820px;

    margin-top: -20px;

}

.hero-card::before {

    content: '';

    position: absolute;

    width: 500px;

    height: 500px;

    top: -220px;

    right: -220px;

    background:
    radial-gradient(
        circle,
        rgba(95,168,255,.14),
        transparent 70%
    );

    pointer-events: none;

}

.hero-card-inner {

    position: relative;

    z-index: 2;

}

.hero-badge {

    position: relative;

    z-index: 2;

    display: inline-block;

    padding: 10px 18px;

    border-radius: 100px;

    background: rgba(214,185,140,.12);

    border: 1px solid rgba(214,185,140,.20);

    color: var(--sand);

    font-size: .9rem;

    margin-bottom: 24px;

}

.hero-title {

    position: relative;

    z-index: 2;

    font-size: clamp(3rem, 7vw, 5rem);

    line-height: 1.05;

    margin-bottom: 24px;

    font-weight: 800;

}

.hero-text {

    position: relative;

    z-index: 2;

    font-size: 1.15rem;

    color: var(--text-muted);

    line-height: 1.8;

    margin-bottom: 32px;

}

.hero-search {

    position: relative;

    z-index: 2;

}

.hero-search .form-control {

    height: 68px;

    border-radius: 18px 0 0 18px;

    border: none;

    padding-left: 24px;

    font-size: 1.05rem;

    background: rgba(255,255,255,.92);

}

.btn-search-main {

    width: 80px;

    border: none;

    border-radius: 0 18px 18px 0;

    background: linear-gradient(
    135deg,
    var(--sand),
    var(--skyline-blue)
    );

    color: #fff;

    font-size: 1.2rem;

}

.hero-tags {

    position: relative;

    z-index: 2;

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 24px;

}

.hero-tag {

    padding: 10px 16px;

    border-radius: 100px;

    background: rgba(255,255,255,.06);

    border: 1px solid rgba(255,255,255,.08);

    color: rgba(255,255,255,.85);

    font-size: .92rem;

    transition:
    all .25s ease;

    cursor: pointer;

}

.hero-tag:hover {

    background:
    rgba(95,168,255,.14);

    border-color:
    rgba(95,168,255,.30);

    transform:
    translateY(-2px);

}

/* ======================================================
   GLASS
====================================================== */

.glass-card {

    background: var(--glass-bg);

    border: 1px solid var(--glass-border);

    border-radius: 28px;

    backdrop-filter: blur(14px);

    -webkit-backdrop-filter: blur(14px);

    box-shadow:
    0 10px 40px rgba(0,0,0,.35);

}

/* ======================================================
   NAVIGATION
====================================================== */

.main-header {

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    z-index: 1000;

    transition:
    background .3s ease,
    backdrop-filter .3s ease;

}

.main-header.scrolled {

    background: rgba(5,7,10,.78);

    backdrop-filter: blur(18px);

    -webkit-backdrop-filter: blur(18px);

    border-bottom:
    1px solid rgba(255,255,255,.06);

}

.navbar {

    padding: 24px 0;

}

.logo-circle {

    width: 52px;

    height: 52px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background: rgba(255,255,255,.10);

    border: 1px solid rgba(255,255,255,.10);

    font-size: 1.3rem;

}

.logo-title {

    font-weight: 700;

    font-size: 1rem;

}

.logo-subtitle {

    font-size: .75rem;

    color: rgba(255,255,255,.60);

}

.nav-link {

    color: rgba(255,255,255,.75) !important;

    margin-left: 18px;

    font-weight: 500;

}

.nav-link:hover,
.nav-link.active {

    color: #fff !important;

}

.btn-search {

    border-radius: 14px;

    padding: 12px 22px;

    border: 1px solid rgba(255,255,255,.10);

    background: rgba(255,255,255,.08);

    color: #fff;

}

/* ======================================================
   FOOTER
====================================================== */

.main-footer {

    padding: 100px 0 50px;

    background: #05070a;

}

.footer-title {

    margin-bottom: 20px;

}

.footer-text {

    color: rgba(255,255,255,.65);

    line-height: 1.8;

}

.footer-heading {

    margin-bottom: 20px;

}

.footer-links {

    list-style: none;

    padding: 0;

}

.footer-links li {

    margin-bottom: 12px;

}

.footer-links a {

    color: rgba(255,255,255,.65);

    text-decoration: none;

}

.footer-links a:hover {

    color: #fff;

}

.footer-bottom {

    border-top: 1px solid rgba(255,255,255,.08);

    margin-top: 60px;

    padding-top: 30px;

    color: rgba(255,255,255,.55);

}

/* ======================================================
   MOBILE
====================================================== */

@media (max-width: 768px) {

    .hero-section {

        background-attachment: scroll;

    }

    .hero-card {

        padding: 28px;

        margin-top: 40px;

    }

    .hero-title {

        font-size: 3rem;

    }

}

/* ======================================================
   TENANT / LANDLORD CARDS
====================================================== */

.tenant-landlord-section {

    position: relative;

    margin-top: -140px;

    z-index: 20;

    padding-bottom: 120px;

}

.tl-card {

    display: flex;

    align-items: flex-start;

    gap: 24px;

    padding: 36px;

    height: 100%;

    transition:
    transform .25s ease,
    border-color .25s ease,
    background .25s ease;

}

.tl-card:hover {

    transform:
    translateY(-6px);

    border-color:
    rgba(95,168,255,.25);

    background:
    rgba(24,28,34,.68);

}

.tl-icon {

    width: 78px;

    height: 78px;

    border-radius: 22px;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 2rem;

    flex-shrink: 0;

}

.tenants-icon {

    background:
    rgba(95,168,255,.12);

    color:
    #7bc1ff;

}

.landlords-icon {

    background:
    rgba(214,185,140,.12);

    color:
    var(--sand);

}

.tl-content h3 {

    font-size: 1.7rem;

    margin-bottom: 14px;

}

.tl-content p {

    color:
    rgba(255,255,255,.70);

    line-height: 1.8;

    margin-bottom: 22px;

}

.tl-link {

    color:
    #fff;

    text-decoration: none;

    font-weight: 600;

    display: inline-flex;

    align-items: center;

    gap: 10px;

    transition:
    all .25s ease;

}

.tl-link:hover {

    color:
    var(--skyline-blue);

}

@media (max-width: 768px) {

    .tenant-landlord-section {

        margin-top: -60px;

        padding-bottom: 80px;

    }

    .tl-card {

        flex-direction: column;

    }

}

/* ======================================================
   HERO COLUMN POSITIONING
====================================================== */

.hero-column {

    padding-top: 140px;

    padding-bottom: 80px;

}

/* ======================================================
   FLOATING HERO CARDS
====================================================== */

.hero-floating-cards {

    position: relative;

    margin-top: -85px;

    z-index: 30;

}

/* ======================================================
   TRUST ROW
====================================================== */

.hero-trust-row {

    position: relative;

    margin-top: 22px;

    padding-bottom: 70px;

    z-index: 30;

}

.trust-card {

    text-align: center;

    padding: 20px 18px;

    min-height: 145px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    transition:
    transform .25s ease,
    border-color .25s ease,
    background .25s ease;

}

.trust-card:hover {

    transform:
    translateY(-4px);

    border-color:
    rgba(95,168,255,.22);

    background:
    rgba(24,28,34,.68);

}

.trust-icon {

    font-size: 1.4rem;

    margin-bottom: 14px;

    color:
    rgba(255,255,255,.92);

}

.trust-number {

    font-size: 1.15rem;

    font-weight: 700;

    margin-bottom: 6px;

    line-height: 1.3;

}

.trust-label {

    color:
    rgba(255,255,255,.72);

    font-size: .92rem;

    line-height: 1.5;

}

/* ======================================================
   POPULAR TOPICS
====================================================== */

.popular-topics-section {

    position: relative;

    padding-bottom: 90px;

    z-index: 30;

}

.section-header {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 28px;

}

.section-header h2 {

    font-size: 2rem;

    margin-bottom: 0;

}

.section-link {

    color: #7affb5;

    text-decoration: none;

    font-weight: 600;

    display: inline-flex;

    align-items: center;

    gap: 8px;

    transition: all .25s ease;

}

.section-link:hover {

    color: #a8ffd0;

}

.topic-card {

    padding: 26px 22px;

    height: 100%;

    transition:
    transform .25s ease,
    border-color .25s ease,
    background .25s ease;

}

.topic-card:hover {

    transform:
    translateY(-4px);

    border-color:
    rgba(95,168,255,.20);

    background:
    rgba(24,28,34,.68);

}

.topic-icon {

    font-size: 2.1rem;

    margin-bottom: 18px;

}

.topic-card h3 {

    font-size: 1.15rem;

    margin-bottom: 14px;

    line-height: 1.3;

}

.topic-card p {

    color:
    rgba(255,255,255,.72);

    font-size: .95rem;

    line-height: 1.7;

    min-height: 90px;

    margin-bottom: 20px;

}

.topic-link {

    color: #ffffff;

    text-decoration: none;

    font-weight: 600;

    display: inline-flex;

    align-items: center;

    gap: 8px;

    transition: all .25s ease;

}

.topic-link:hover {

    color: #7affb5;

    text-decoration: none;

}

/* ======================================================
   RECENT QUESTIONS
====================================================== */

.recent-questions-section {

    position: relative;

    padding-bottom: 120px;

    z-index: 30;

}

.recent-card,
.states-card {

    padding: 34px;

    height: 100%;

    min-height: 100%;

}

/* ======================================================
   QUESTION ROWS
====================================================== */

.question-row {

    display: grid;

    grid-template-columns:
    64px
    1fr
    180px;

    gap: 18px;

    align-items: center;

    padding: 18px 0;

    border-bottom:
    1px solid rgba(255,255,255,.06);

}

.question-state {

    width: 52px;

    height: 52px;

    border-radius: 14px;

    display: flex;

    align-items: center;

    justify-content: center;

    font-weight: 700;

    font-size: 1rem;

}

.question-content {

    font-size: 1rem;

    line-height: 1.5;

}

.question-tag {

    border:
    1px solid rgba(255,255,255,.10);

    border-radius: 999px;

    padding: 8px 14px;

    text-align: center;

    font-size: .82rem;

    color:
    rgba(255,255,255,.76);

}

/* ======================================================
   STATES CARD
====================================================== */

.states-map {

    text-align: center;

    margin-bottom: 24px;

}

.states-map img {

    max-width: 100%;

    opacity: .92;

    filter:

    brightness(1.1)

    sepia(.18)

    hue-rotate(145deg)

    saturate(.75)

    drop-shadow(0 0 18px rgba(122,255,181,.12));

}

.states-text {

    text-align: center;

    color:
    rgba(255,255,255,.72);

    margin-bottom: 26px;

}

.btn-state-search {

    width: 100%;

    background:
    linear-gradient(
        135deg,
        #7affb5,
        #5fd8ff
    );

    border: none;

    color: #000;

    font-weight: 700;

    border-radius: 14px;

    padding: 14px 18px;

    transition:
    all .25s ease;

}

.btn-state-search:hover {

    opacity: .92;

    color: #000;

}

/* ======================================================
   SUB FOOTER
====================================================== */

.sub-footer-section {

    position: relative;

    margin-top: -1px;

    padding: 0;

    z-index: 30;

}

.sub-footer-card {

    background:
    rgba(12,16,24,.72);

    border:
    1px solid rgba(255,255,255,.05);

    border-radius: 0;

    border-left: none;

    border-right: none;

    backdrop-filter:
    blur(18px);

    -webkit-backdrop-filter:
    blur(18px);

    padding: 26px 40px;

    box-shadow: none;

}

.sub-footer-item {

    display: flex;

    gap: 18px;

    align-items: flex-start;

}

.sub-footer-icon {

    font-size: 2rem;

    line-height: 1;

    color:
    #7affb5;

}

.sub-footer-item h4 {

    font-size: 1rem;

    font-weight: 700;

    margin-bottom: 8px;

}

.sub-footer-item p {

    color:
    rgba(255,255,255,.70);

    margin: 0;

    line-height: 1.6;

    font-size: .95rem;

}

/* ======================================================
   FOOTER
====================================================== */

.site-footer {

    background:
    #02050a;

    padding:
    70px 0 30px;

    border-top:
    1px solid rgba(255,255,255,.05);

}

.footer-logo-wrap {

    display: flex;

    align-items: center;

    gap: 14px;

    margin-bottom: 24px;

}

.footer-logo-icon {

    width: 52px;

    height: 52px;

    border-radius: 16px;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
    rgba(255,255,255,.05);

    border:
    1px solid rgba(255,255,255,.08);

    font-size: 1.3rem;

}

.footer-logo-text {

    font-weight: 700;

    font-size: 1.15rem;

}

.footer-logo-subtext {

    color:
    rgba(255,255,255,.55);

    font-size: .85rem;

}

.footer-description {

    color:
    rgba(255,255,255,.68);

    line-height: 1.8;

    max-width: 320px;

}

.footer-heading {

    font-size: 1rem;

    font-weight: 700;

    margin-bottom: 22px;

}

.footer-links {

    list-style: none;

    padding: 0;

    margin: 0;

}

.footer-links li {

    margin-bottom: 14px;

}

.footer-links a {

    color:
    rgba(255,255,255,.68);

    text-decoration: none;

    transition:
    color .25s ease;

}

.footer-links a:hover {

    color:
    #7affb5;

}

.footer-bottom {

    border-top:
    1px solid rgba(255,255,255,.06);

    margin-top: 50px;

    padding-top: 24px;

    text-align: center;

    color:
    rgba(255,255,255,.50);

    font-size: .92rem;

}

/* ======================================================
   PAGE LAYOUT
====================================================== */

.page-shell {

    position: relative;

    min-height: 100vh;

    padding-top: 140px;

    padding-bottom: 80px;

    z-index: 20;

}

.page-content {

    position: relative;

    z-index: 20;

}

/* ======================================================
   INTERNAL PAGE BACKGROUND
====================================================== */

.page-background {

    position: fixed;

    inset: 0;

    background-image:
    url('/images/hero-background.png');

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;

    background-attachment: fixed;

    z-index: -1;

}

/* ======================================================
   PAGE LAYOUT
====================================================== */

.page-shell {

    position: relative;

    padding-top: 140px;

    padding-bottom: 80px;

    z-index: 20;

}

.page-content {

    position: relative;

    z-index: 20;

}