/* =========================
   RESET & GLOBAL
========================= */

html {
    scroll-behavior: smooth;
}

body {

    margin: 0;

    font-family: 'Inter', sans-serif;

    color: #111;

    overflow-x: hidden;

    background: #f7f7f7;
}

a {
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

section {
    position: relative;
}

/* =========================
   NAVBAR
========================= */

.custom-navbar {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    z-index: 1000;

    padding-top: 18px;

    background: transparent;

    pointer-events: none;
}

.nav-shell {

    pointer-events: auto;

    max-width: 1180px;

    background: rgba(255,255,255,.82);

    backdrop-filter: blur(18px);

    -webkit-backdrop-filter: blur(18px);

    border-radius: 999px;

    padding: 14px 24px;

    box-shadow:
        0 10px 30px rgba(0,0,0,.08);
}

.navbar-brand {

    color: #111 !important;

    font-weight: 700;

    font-size: 1.15rem;
}

.nav-link {

    color: #555 !important;

    font-weight: 500;

    transition: .3s;
}

.nav-link:hover {

    color: #111 !important;
}

.contact-btn {

    border-radius: 999px !important;

    border: 1px solid #111 !important;

    background: transparent !important;

    color: #111 !important;

    font-weight: 600 !important;

    padding: 10px 18px !important;

    transition: .3s;
}

.contact-btn:hover {

    background: #111 !important;

    color: #fff !important;
}

/* =========================
   HERO
========================= */

.real-estate-hero {

    position: relative;

    width: 100%;

    height: 100vh;

    min-height: 850px;

    overflow: hidden;
}

.real-estate-hero img {

    width: 100%;

    height: 100%;

    object-fit: cover;
}

.hero-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,.35),
            rgba(0,0,0,.55)
        );

    z-index: 2;
}

.hero-content {

    position: absolute;

    inset: 0;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    z-index: 5;

    padding: 0 30px;
}

.hero-tag {

    display: inline-block;

    padding: 10px 18px;

    border-radius: 999px;

    background: rgba(255,255,255,.12);

    border: 1px solid rgba(255,255,255,.25);

    backdrop-filter: blur(12px);

    color: #fff;

    font-size: .9rem;

    margin-bottom: 24px;
}

.hero-content h1 {

    max-width: 900px;

    margin: 0;

    color: #fff;

    font-weight: 800;

    line-height: .95;

    letter-spacing: -3px;

    font-size: clamp(4rem, 8vw, 7rem);
}

.hero-content p {

    max-width: 750px;

    margin-top: 30px;

    color: rgba(255,255,255,.92);

    font-size: 1.1rem;

    line-height: 1.8;
}

.hero-buttons {

    margin-top: 35px;

    display: flex;

    gap: 15px;

    flex-wrap: wrap;

    justify-content: center;
}

/* =========================
   HERO BUTTONS
========================= */

.hero-btn {

    background: #fff !important;

    color: #111 !important;

    border: none !important;

    border-radius: 999px !important;

    padding: 14px 30px !important;

    font-weight: 600 !important;

    transition: .3s ease;
}

.hero-btn:hover {

    transform: translateY(-2px);

    background: #f0f0f0 !important;
}

.hero-btn-outline {

    background: transparent !important;

    color: #fff !important;

    border: 1px solid rgba(255,255,255,.6) !important;

    border-radius: 999px !important;

    padding: 14px 30px !important;

    font-weight: 600 !important;

    transition: .3s ease;
}

.hero-btn-outline:hover {

    background: rgba(255,255,255,.12) !important;

    color: #fff !important;

    transform: translateY(-2px);
}

/* =========================
   GENERAL SECTIONS
========================= */

.section-space {

    padding: 140px 0;
}

.section-tag {

    display: inline-block;

    padding: 10px 18px;

    border-radius: 999px;

    background: #ffffff;

    color: #555;

    font-size: .85rem;

    font-weight: 600;

    box-shadow:
        0 8px 24px rgba(0,0,0,.04);
}

.section-title {

    font-size: clamp(3rem, 6vw, 5rem);

    font-weight: 800;

    line-height: .95;

    letter-spacing: -2px;

    color: #111;

    max-width: 900px;

    margin-left: auto;

    margin-right: auto;
}

.section-text {

    color: #666;

    font-size: 1.05rem;

    line-height: 1.9;

    max-width: 750px;
}

/* =========================
   SERVICES
========================= */

.services-section {

    background: #f7f7f7;
}

.service-card {

    height: 100%;

    background: white;

    border-radius: 32px;

    padding: 45px 35px;

    transition: .3s ease;

    box-shadow:
        0 15px 40px rgba(0,0,0,.05);
}

.service-card:hover {

    transform: translateY(-8px);
}

.service-card i {

    font-size: 2.2rem;

    color: #111;

    margin-bottom: 25px;

    display: block;
}

.service-card h3 {

    font-size: 1.5rem;

    font-weight: 700;

    margin-bottom: 15px;
}

.service-card p {

    margin: 0;

    color: #666;

    line-height: 1.8;
}

/* =========================
   SHOWCASE PHOTO
========================= */

.showcase-section {
    height: auto;
    min-height: auto;
}

.showcase-section img {
    width: 100%;
    height: auto;
    object-fit: unset;
}

.showcase-large {
    height: auto;
    min-height: auto;
}

/* =========================
   PRICING
========================= */

.pricing-section {

    background: #f3f3f3;
}

.price-card {

    height: 100%;

    background: #fff;

    border-radius: 36px;

    padding: 50px 40px;

    box-shadow:
        0 15px 50px rgba(0,0,0,.05);

    transition: .3s ease;
}

.price-card:hover {

    transform: translateY(-8px);
}

.featured-card {

    position: relative;

    transform: scale(1.03);

    box-shadow:
        0 20px 70px rgba(0,0,0,.08);
}


.price-icon {

    font-size: 2.2rem;

    margin-bottom: 20px;
}

.price-card h3 {

    font-size: 1.8rem;

    font-weight: 800;

    margin-bottom: 10px;
}

.price-subtitle {

    color: #777;

    margin-bottom: 30px;
}

.price-card ul {

    list-style: none;

    padding: 0;

    margin: 0;
}

.price-card ul li {

    padding: 14px 0;

    border-bottom: 1px solid rgba(0,0,0,.06);

    color: #444;
}

.price-card ul li:last-child {

    border-bottom: none;
}

.price-note {

    margin-top: 30px;

    padding-top: 25px;

    border-top: 1px solid rgba(0,0,0,.08);

    font-weight: 700;

    color: #111;
}

/* =========================
   CONTACT
========================= */

.contact-section {

    background: #f7f7f7;
}

.contact-box {

    background: white;

    border-radius: 40px;

    padding: 70px 60px;

    box-shadow:
        0 15px 50px rgba(0,0,0,.05);
}

.contact-links {

    display: flex;

    flex-direction: column;

    gap: 16px;
}

.contact-item {

    display: flex;

    align-items: center;

    gap: 18px;

    padding: 20px 24px;

    border-radius: 22px;

    background: #f8f8f8;

    color: #111;

    transition: .3s ease;
}

.contact-item:hover {

    background: #efefef;

    color: #111;

    transform: translateX(5px);
}

.contact-item i {

    font-size: 1.2rem;

    width: 24px;
}

/* =========================
   CONTACT TEXT
========================= */

.contact-section .section-title {

    margin-left: 0;

    margin-right: 0;
}

.contact-section .section-text {

    max-width: 550px;
}

/* =========================
   PRICING
========================= */

.pricing-section {

    background: #f3f3f3;
}

.price-card {

    height: 100%;

    background: #fff;

    border-radius: 36px;

    padding: 50px 40px;

    box-shadow:
        0 15px 50px rgba(0,0,0,.05);

    transition: .3s ease;
}

.price-card:hover {

    transform: translateY(-8px);
}

.featured-card {

    position: relative;

    transform: scale(1.03);

    box-shadow:
        0 20px 70px rgba(0,0,0,.08);
}


.price-icon {

    font-size: 2.2rem;

    margin-bottom: 20px;
}

.price-card h3 {

    font-size: 1.8rem;

    font-weight: 800;

    margin-bottom: 10px;
}

.price-subtitle {

    color: #777;

    margin-bottom: 30px;
}

.price-card ul {

    list-style: none;

    padding: 0;

    margin: 0;
}

.price-card ul li {

    padding: 14px 0;

    border-bottom: 1px solid rgba(0,0,0,.06);

    color: #444;
}

.price-card ul li:last-child {

    border-bottom: none;
}

.price-note {

    margin-top: 30px;

    padding-top: 25px;

    border-top: 1px solid rgba(0,0,0,.08);

    font-weight: 700;

    color: #111;
}

/* =========================
   CONTACT
========================= */

.contact-section {

    background: #f7f7f7;
}

.contact-box {

    background: white;

    border-radius: 40px;

    padding: 70px 60px;

    box-shadow:
        0 15px 50px rgba(0,0,0,.05);
}

.contact-links {

    display: flex;

    flex-direction: column;

    gap: 16px;
}

.contact-item {

    display: flex;

    align-items: center;

    gap: 18px;

    padding: 20px 24px;

    border-radius: 22px;

    background: #f8f8f8;

    color: #111;

    transition: .3s ease;
}

.contact-item:hover {

    background: #efefef;

    color: #111;

    transform: translateX(5px);
}

.contact-item i {

    font-size: 1.2rem;

    width: 24px;
}

/* =========================
   CONTACT TEXT
========================= */

.contact-section .section-title {

    margin-left: 0;

    margin-right: 0;
}

.contact-section .section-text {

    max-width: 550px;
}

.signature-logo img {

    height: 45px;

    width: auto;

    display: block;
}

@media (max-width: 768px) {

    .showcase-section img {

        height: auto;

        object-fit: contain;
    }

}

@media (max-width: 768px) {

    .showcase-large img {

        height: auto;

        object-fit: contain;
    }

}

@media (max-width: 768px) {

    .showcase-section,
    .showcase-large {

        height: auto;

        min-height: auto;
    }

    .showcase-section img,
    .showcase-large img {

        width: 100%;

        height: auto;

        object-fit: contain;
    }

}

@media (max-width: 768px) {

    .section-space {

        padding: 70px 0;
    }

}

@media (max-width: 768px) {

    .contact-box {

        padding: 35px 25px;
    }

}
