/* ---------- Basic Reset ---------- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #1f2933;
    background: #ffffff;
    line-height: 1.6;
}

img {
    display: block;
    width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

.container {
    width: min(1120px, 92%);
    margin-inline: auto;
}

/* ---------- Header ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid #e6e8eb;
}

.navbar {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo span {
    color: #0f766e;
}

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

.nav-links a {
    font-size: 0.95rem;
    font-weight: 600;
}

.nav-links a:hover {
    color: #0f766e;
}

.menu-button {
    display: none;
    border: 0;
    background: transparent;
    font-size: 1.6rem;
    cursor: pointer;
}

/* ---------- Reusable ---------- */
.section {
    padding: 88px 0;
}

.eyebrow {
    margin-bottom: 10px;
    color: #0f766e;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    line-height: 1.15;
    color: #14213d;
}

h1 {
    max-width: 760px;
    font-size: clamp(2.5rem, 6vw, 4.8rem);
    letter-spacing: -2px;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -1px;
}

.btn {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 20px;
    border: 1px solid transparent;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s ease;
}

.btn-primary {
    color: #ffffff;
    background: #0f766e;
}

.btn-primary:hover {
    background: #0b5f59;
}

.btn-outline {
    width: 100%;
    margin-top: 22px;
    color: #0f766e;
    border-color: #0f766e;
    background: transparent;
}

.btn-outline:hover {
    color: #ffffff;
    background: #0f766e;
}

/* ---------- Hero ---------- */
.hero {
    min-height: 680px;
    position: relative;
    display: grid;
    place-items: center;
    color: #ffffff;
    background:
        url("images/property-home.png")
        center / cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(8, 25, 35, 0.86), rgba(8, 25, 35, 0.32));
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 90px 0;
}

.hero h1 {
    color: #ffffff;
}

.hero-content > p:not(.eyebrow) {
    max-width: 660px;
    margin-top: 24px;
    font-size: 1.08rem;
    color: #e6eef0;
}

.property-search {
    max-width: 900px;
    margin-top: 34px;
    padding: 12px;
    display: grid;
    grid-template-columns: 1.4fr 1fr auto;
    gap: 10px;
    background: #ffffff;
    border-radius: 8px;
}

.property-search input,
.property-search select {
    width: 100%;
    min-height: 48px;
    padding: 0 14px;
    border: 1px solid #d9dee3;
    border-radius: 5px;
    color: #24313d;
    background: #ffffff;
}

/* ---------- Properties ---------- */
.section-heading {
    margin-bottom: 38px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
}

.text-link {
    color: #0f766e;
    font-weight: 700;
}

.property-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.property-card {
    overflow: hidden;
    border: 1px solid #e2e6e9;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 14px 35px rgba(20, 33, 61, 0.07);
}

.property-image {
    height: 230px;
    position: relative;
    overflow: hidden;
}

.property-image img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.property-card:hover .property-image img {
    transform: scale(1.04);
}

.property-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 10px;
    border-radius: 4px;
    color: #ffffff;
    background: #0f766e;
    font-size: 0.78rem;
    font-weight: 700;
}

.property-content {
    padding: 22px;
}

.property-price {
    color: #0f766e;
    font-size: 1.25rem;
    font-weight: 800;
}

.property-content h3 {
    margin-top: 5px;
    font-size: 1.25rem;
}

.property-location {
    margin-top: 8px;
    color: #687582;
    font-size: 0.92rem;
}

.property-info {
    margin-top: 20px;
    padding-top: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    border-top: 1px solid #edf0f2;
    color: #4d5b67;
    font-size: 0.88rem;
}

/* ---------- About ---------- */
.about-section {
    background: #f4f7f6;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.about-image img {
    min-height: 520px;
    object-fit: cover;
    border-radius: 10px;
}

.about-content > p:not(.eyebrow) {
    margin-top: 22px;
    color: #5d6974;
}

.stats {
    margin: 34px 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.stats div {
    padding: 18px;
    border-left: 3px solid #0f766e;
    background: #ffffff;
}

.stats strong,
.stats span {
    display: block;
}

.stats strong {
    color: #14213d;
    font-size: 1.55rem;
}

.stats span {
    margin-top: 4px;
    color: #697580;
    font-size: 0.82rem;
}

/* ---------- Contact ---------- */
.contact-section {
    background: #14213d;
    color: #dfe7ee;
}

.contact-section h2 {
    color: #ffffff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 70px;
}

.contact-grid > div > p:not(.eyebrow) {
    margin-top: 20px;
}

.contact-details {
    margin-top: 30px;
}

.contact-details p {
    margin-bottom: 9px;
}

.contact-form {
    padding: 30px;
    display: grid;
    gap: 17px;
    border-radius: 10px;
    background: #ffffff;
    color: #24313d;
}

.contact-form label {
    display: grid;
    gap: 7px;
    font-size: 0.9rem;
    font-weight: 700;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 13px;
    border: 1px solid #d8dde2;
    border-radius: 5px;
    outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #0f766e;
}

.contact-form textarea {
    resize: vertical;
}

.form-message {
    padding: 12px 14px;
    border-radius: 5px;
    color: #0f5f56;
    background: #dff4ef;
}

/* ---------- Footer ---------- */
.site-footer {
    padding: 24px 0;
    background: #0d1729;
    color: #aeb9c5;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-logo {
    color: #ffffff;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
    .property-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .about-image img {
        min-height: 400px;
    }
}

@media (max-width: 700px) {
    .menu-button {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        padding: 20px 4%;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        border-bottom: 1px solid #e6e8eb;
        background: #ffffff;
    }

    .nav-links.show {
        display: flex;
    }

    .hero {
        min-height: 640px;
    }

    .property-search {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 68px 0;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .property-grid,
    .stats {
        grid-template-columns: 1fr;
    }

    .footer-content {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    h1 {
        letter-spacing: -1px;
    }

    .contact-form {
        padding: 22px;
    }
}


/* ---------- Buy/Sell Lead Form ---------- */
.lead-form-section {
    background: #f4f7fb;
}

.lead-form-wrapper {
    max-width: 760px;
}

.lead-form-intro {
    margin-bottom: 28px;
    text-align: center;
}

.lead-form-intro p:not(.eyebrow) {
    max-width: 610px;
    margin: 16px auto 0;
    color: #647180;
}

.buy-sell-form {
    padding: 34px;
    display: grid;
    gap: 18px;
    border: 1px solid #e1e6ed;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(20, 33, 61, 0.08);
}

.buy-sell-form label {
    display: grid;
    gap: 7px;
    color: #273444;
    font-size: 0.9rem;
    font-weight: 700;
}

.buy-sell-form input[type="text"],
.buy-sell-form input[type="email"],
.buy-sell-form input[type="tel"] {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid #ced5de;
    border-radius: 5px;
    outline: none;
    background: #ffffff;
}

.buy-sell-form input:focus {
    border-color: #0f766e;
    box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.12);
}

.two-column-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-choice {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 28px;
    padding: 0;
    border: 0;
}

.form-choice legend {
    width: 100%;
    margin-bottom: 4px;
    color: #273444;
    font-weight: 800;
}

.form-choice label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.form-choice input {
    width: 17px;
    height: 17px;
}

.consent-label {
    grid-template-columns: auto 1fr !important;
    align-items: start;
    gap: 10px !important;
    color: #4b5663 !important;
    font-size: 0.76rem !important;
    font-weight: 400 !important;
    line-height: 1.6;
}

.consent-label input {
    width: 17px;
    height: 17px;
    margin-top: 3px;
}

.form-submit {
    width: 100%;
    margin-top: 4px;
}

@media (max-width: 600px) {
    .buy-sell-form {
        padding: 22px 18px;
    }

    .two-column-fields {
        grid-template-columns: 1fr;
    }
}


/* ---------- Company Information ---------- */
.company-info-card {
    margin-bottom: 26px;
    padding: 24px;
    border: 1px solid #dfe5eb;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(20, 33, 61, 0.06);
}

.company-info-card h3 {
    margin-bottom: 18px;
    font-size: 1.35rem;
}

.company-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 24px;
}

.company-info-grid p {
    color: #4f5d69;
    font-size: 0.92rem;
}

.company-info-grid a {
    color: #0f766e;
    font-weight: 700;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 42px;
    padding: 38px 0 28px;
}

.footer-grid h4 {
    margin-bottom: 12px;
    color: #ffffff;
}

.footer-grid p {
    margin-bottom: 7px;
    font-size: 0.9rem;
}

.footer-grid a:hover {
    color: #ffffff;
}

.footer-description {
    max-width: 300px;
    margin-top: 12px;
}

.footer-bottom {
    padding: 18px 0;
    border-top: 1px solid rgba(255,255,255,0.12);
    font-size: 0.88rem;
}

@media (max-width: 760px) {
    .company-info-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        gap: 24px;
    }
}


/* ---------- Contact Information Only ---------- */
.contact-info-section {
    background: #ffffff;
}

.contact-info-heading {
    max-width: 680px;
    margin-bottom: 30px;
}

.contact-info-heading > p:not(.eyebrow) {
    margin-top: 14px;
    color: #647180;
}

.contact-info-card {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    overflow: hidden;
    border: 1px solid #dfe5eb;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 16px 38px rgba(20, 33, 61, 0.07);
}

.contact-info-item {
    min-height: 118px;
    padding: 24px;
    border-right: 1px solid #e6eaee;
    border-bottom: 1px solid #e6eaee;
}

.contact-info-item:nth-child(2n) {
    border-right: 0;
}

.contact-label {
    display: block;
    margin-bottom: 7px;
    color: #0f766e;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact-info-item p,
.contact-info-item a,
.contact-info-item strong {
    color: #273444;
}

.contact-info-item a {
    font-weight: 700;
}

.contact-info-item a:hover {
    color: #0f766e;
}

@media (max-width: 700px) {
    .contact-info-card {
        grid-template-columns: 1fr;
    }

    .contact-info-item,
    .contact-info-item:nth-child(2n) {
        border-right: 0;
    }
}
