:root {
    --primary-bg: #23211e;
    --secondary-bg: #393733;
    --accent: #5a4632;
    --accent-light: #8bbabb;
    --text-main: #f5f3f0;
    --text-muted: #b8b3ad;
    --border: #4e4a45;
    --card-bg: #2e2b28;
    --shadow: 0 4px 24px rgba(44, 62, 80, 0.08);
    --font-main: 'Montserrat', sans-serif;
    --font-heading: 'Playfair Display', serif;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: var(--font-main);
    color: var(--text-main);
    background: var(--primary-bg);
    margin: 0;
    padding: 0;
}

.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    background: #3a2f23;
    box-shadow: 0 2px 8px rgba(44,62,80,0.07);
    z-index: 1000;
    transition: background 0.3s;
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 1.2rem 1.2rem;
}
.nav-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: bold;
    color: #e6e2d8;
    letter-spacing: 1px;
    text-decoration: none;
}
.nav-menu {
    display: flex;
    align-items: center;
}
.nav-item {
    margin: 0 1.2rem;
    font-weight: 500;
    color: #e6e2d8;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.2s;
    text-decoration: none;
}
.nav-item::after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #8bbabb;
    transition: width 0.3s;
}
.nav-item:hover::after {
    width: 100%;
}
.cta-button {
    margin-top: 6rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(90deg, #6b4f27, #8bbabb);
    border: none;
    box-shadow: 0 2px 8px rgba(44,62,80,0.12);
    padding: 0.8rem 2rem;
    border-radius: 6px;
    font-size: 1.1rem;
    transition: background 0.2s, transform 0.2s;
    cursor: pointer;
    letter-spacing: 0.5px;
}
.cta-button:hover {
    background: linear-gradient(90deg, #8bbabb, #6b4f27);
    color: #fff;
    transform: translateY(-2px) scale(1.04);
}
.hamburger {
    display: none;
    cursor: pointer;
}
.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--accent);
    transition: all 0.3s;
}
.full-page-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    width: 100%;
    margin-top: 0;
    padding-top: 0;
}
.section-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 10px 0;
}
.home-section {
    position: relative;
    background: none;
    color: #fff;
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 0;
    overflow: hidden;
}
.home-bg-video {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.home-bg-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 62, 80, 0.7);
    z-index: 1;
}
.home-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 25vh;
}
.home-content h1 {
    font-size: 3.5rem;
    margin-bottom: 0.7rem;
    font-family: var(--font-heading);
    color: #fff;
    text-shadow: 0 2px 12px rgba(44,62,80,0.18);
}
.home-content p {
    font-size: 1.5rem;
    color: #f8f9fa;
    text-shadow: 0 1px 6px rgba(44,62,80,0.12);
    margin-bottom: 1.5rem;
}
.about-section {
    background: var(--card-bg);
}
.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}
.about-text {
    flex: 2;
}
.about-text h2,
.services-section h2,
.section-heading {
    font-size: 2.2rem !important;
    color: #fff !important;
    display: block !important;
    visibility: visible !important;
}
.about-text p {
    margin-bottom: 1.2rem;
    color: var(--text-muted);
    font-size: 1.1rem;
}
.about-text ul {
    margin-left: 1.2rem;
    color: #e6e2d8;
    font-size: 1.08rem;
    margin-bottom: 1.5rem;
}
.about-text ul li {
    color: #fff;
    margin-bottom: 0.5rem;
}
.about-photo-container {
    height: 780px;
    width: 100%;
    max-width: 630px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 18px;
    background: transparent;
    margin: 0 auto;
    box-shadow: 0 4px 18px rgba(44,62,80,0.13);
}
.about-photo-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
    background: transparent;
    border: 2px solid #8bbabb;
    box-shadow: 0 4px 18px rgba(44,62,80,0.18);
}
.owner-bio, .mission-statement {
    margin-top: 1.5rem;
    background: #393733;
    padding: 1.2rem 1rem;
    border-radius: 12px;
    color: #e6e2d8;
    box-shadow: 0 2px 8px rgba(44,62,80,0.08);
}
.owner-bio h4, .mission-statement h4 {
    margin-bottom: 0.5rem;
    color: #8bbabb;
    font-size: 1.15rem;
    font-family: var(--font-heading);
}
.about-image {
    flex: 1;
    text-align: center;
}
.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    border: 4px solid var(--card-bg);
    box-shadow: var(--shadow);
}
.services-section {
    background: var(--secondary-bg);
}
.services-section h2 {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 2.5rem;
    color: #fff;
    text-shadow: 0 2px 8px rgba(44,62,80,0.18);
}
.services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}
.service-card {
    background: #393733;
    border: 2px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(44,62,80,0.07);
    padding: 2.2rem 2rem 1.5rem 2rem;
    width: 270px;
    text-align: center;
    transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
    position: relative;
    color: #f5f3f0;
}
.service-card i {
    font-size: 2.2rem;
    color: var(--accent-light);
    margin-bottom: 1.1rem;
}
.service-card h3 {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 0.7rem;
    font-family: var(--font-heading);
}
.service-card p {
    color: #e6e2d8;
    font-size: 1.05rem;
}
.service-card:hover {
    box-shadow: 0 8px 32px rgba(44,62,80,0.13);
    transform: translateY(-2px) scale(1.025);
    border-color: var(--accent-light);
}
.portfolio-section {
    background: var(--secondary-bg);
    padding-top: 0px;

}
.portfolio-section .section-container {
    max-width: 1400px;
    width: 98%;
    margin: 0 auto;
}
.portfolio-row {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}
.portfolio-book {
    position: relative;
    width: 420px;
    max-width: 98vw;
    height: 520px;
    background: #23211e;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(44,62,80,0.18);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 2rem;
}
.portfolio-book-title {
    text-align: center;
    color: #8bbabb;
    font-size: 1.35rem;
    font-family: var(--font-heading);
    margin: 1.2rem 0 0.7rem 0;
    letter-spacing: 0.5px;
}
.portfolio-page {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    transform: scale(0.98) rotateY(10deg);
    transition: opacity 0.7s, transform 0.7s cubic-bezier(0.4,0,0.2,1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 2.2rem 2rem 1.5rem 2rem;
    z-index: 1;
}
.portfolio-page.active {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1) rotateY(0deg);
    z-index: 2;
}
.portfolio-page img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 1.2rem;
    box-shadow: 0 2px 8px rgba(44,62,80,0.13);
}
.portfolio-caption {
    color: #e6e2d8;
    background: rgba(44,62,80,0.85);
    font-size: 1.1rem;
    border-radius: 0 0 16px 16px;
    padding: 1.2rem 1rem 1rem 1rem;
    width: 100%;
    text-align: center;
    min-height: 180px;
    height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}
.portfolio-caption h4 {
    margin-bottom: 0.7rem;
    margin-top: 0;
    text-align: center;
    color: #8bbabb;
    font-size: 1.25rem;
    font-family: var(--font-heading);
}
.portfolio-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    background: #393733;
    color: #8bbabb;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(44,62,80,0.10);
    font-size: 2.2rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    opacity: 0.92;
    user-select: none;
    border: none;
}
.portfolio-arrow.left {
    left: 18px;
}
.portfolio-arrow.right {
    right: 18px;
}
.portfolio-arrow:hover {
    background: #8bbabb;
    color: #23211e;
    box-shadow: 0 4px 16px rgba(44,62,80,0.18);
    opacity: 1;
}
.realestate-section {
    position: relative;
    overflow: hidden;
    align-items: flex-start;
    margin-top: 0;
    padding-top: 1.2rem;
    background: transparent;
}
.realestate-section h2 {
    display: block;
    text-align: center;
    padding-top: 3rem;
    padding-bottom: 1.2rem;
    font-size: 2.5rem;
    color: #fff;
    text-shadow: 0 2px 8px rgba(44,62,80,0.18);
}
.realestate-columns {
    display: flex;
    gap: 48px;
    justify-content: center;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}
.realestate-content, .realestate-contact {
    flex: 1 1 0;
    max-width: 540px;
    min-width: 320px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    height: 100%;
}
.realestate-content {
    background: #393733;
    padding: 2.5rem 2rem;
    border-radius: 14px;
    box-shadow: 0 2px 16px rgba(44,62,80,0.07);
    border: 2px solid var(--border);
    color: #f5f3f0;
    font-size: 1.15rem;
    line-height: 1.7;
    max-width: 800px;
    width: 100%;
    box-sizing: border-box;
}
.realestate-contact {
    background: #393733;
    border-radius: 14px;
    box-shadow: 0 2px 16px rgba(44,62,80,0.10);
    border: 2px solid var(--border);
    padding: 2rem 1.2rem 1.2rem 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 0.5rem;
}
.realestate-contact-info {
    color: #e6e2d8;
    font-size: 1.08rem;
    margin-bottom: 1.2rem;
    text-align: center;
    line-height: 1.6;
}
.realestate-brokerage-img {
    width: 240px;
    max-width: 100%;
    margin-top: 0.5rem;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(44,62,80,0.10);
}
.contact-section {
    position: relative;
    background: var(--card-bg);
    overflow: hidden;
    min-height: 480px;
}
.contact-bg-dots {
    position: absolute;
    left: 0; top: 0; width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
    background: repeating-linear-gradient(135deg, rgba(139,186,187,0.10) 0 8px, transparent 8px 32px);
}
.contact-bg-dots::before {
    content: none;
}
.contact-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    padding: 48px 0;
}
.contact-left {
    flex: 1.2;
    min-width: 260px;
    padding-right: 24px;
}
.contact-left h2 {
    font-size: 2.3rem;
    color: #f5f3f0;
    font-family: var(--font-heading);
    margin-bottom: 1.2rem;
    font-weight: 700;
}
.contact-desc {
    color: #f5f3f0;
    font-size: 1.13rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}
.contact-card {
    flex: 1.1;
    min-width: 320px;
    background: var(--secondary-bg);
    border-radius: 14px;
    box-shadow: 0 4px 24px rgba(44,62,80,0.10);
    padding: 2.2rem 2rem 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}
.contact-form {
    width: 100%;
}
.contact-form .form-group {
    margin-bottom: 1.2rem;
}
.contact-form label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 600;
    color: #f5f3f0;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1.5px solid #8bbabb;
    border-radius: 6px;
    font-family: var(--font-main);
    font-size: 1rem;
    background: var(--card-bg);
    color: #f5f3f0;
    transition: border 0.2s, box-shadow 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #8bbabb;
    box-shadow: 0 0 0 2px rgba(139,186,187,0.18);
}
.contact-submit-btn {
    background: #8bbabb;
    color: #23211e;
    font-weight: 700;
    border: none;
    border-radius: 6px;
    padding: 0.7rem 2.2rem;
    font-size: 1.08rem;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    box-shadow: 0 2px 8px rgba(44,62,80,0.10);
    margin-top: 0.5rem;
}
.contact-submit-btn:hover {
    background: #5a4632;
    color: #fff;
    transform: translateY(-2px) scale(1.04);
}
.contact-email {
    color: #8bbabb;
    text-decoration: underline;
}
@media (max-width: 900px) {
    .contact-flex {
        flex-direction: column;
        gap: 32px;
        padding: 32px 0;
    }
    .contact-card {
        min-width: 0;
        width: 100%;
        margin: 0 auto;
    }
    .contact-left {
        padding-right: 0;
        text-align: left;
    }
}
.footer {
    background: var(--accent);
    color: #fff;
    text-align: center;
    padding: 1.5rem 1rem;
    font-size: 1rem;
    letter-spacing: 0.5px;
}
.portfolio-header {
    margin-top: 10px;
    text-align: center;
    font-size: 2.8rem;
    color: #fff;
    font-family: var(--font-heading);
    margin-bottom: 10px;
    letter-spacing: 1px;
}
.portfolio-intro {
    text-align: center;
    color: #e6e2d8;
    font-size: 1.18rem;
    max-width: 700px;
    margin: 0 auto 2.2rem auto;
    line-height: 1.6;
}
.portfolio-map-section {
    margin-top: 3.5rem;
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1.5rem;
}
.portfolio-map-title {
    text-align: center;
    color: #8bbabb;
    font-size: 1.5rem;
    font-family: var(--font-heading);
    margin-bottom: 1.2rem;
    letter-spacing: 0.5px;
}
#map {
    width: 100%;
    height: 500px;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(44,62,80,0.13);
    margin: 0 auto 2.5rem auto;
}
.gm-style .gm-style-iw-c, .gm-style-iw-c, .gm-style-iw {
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
    border: none !important;
    border-radius: 0 !important;
    overflow: visible !important;
    max-width: unset !important;
}
.gm-style .gm-style-iw-d, .gm-style-iw-d {
    overflow: visible !important;
    background: transparent !important;
    padding: 0 !important;
}
.gm-style .gm-ui-hover-effect, .gm-ui-hover-effect {
    position: relative !important;
    top: 8px !important;
    right: 8px !important;
    width: 28px !important;
    height: 28px !important;
    background: #23211e !important;
    border-radius: 50% !important;
    box-shadow: 0 2px 8px rgba(44,62,80,0.13) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 1000 !important;
    border: 2px solid #8bbabb !important;
}
.gm-style .gm-ui-hover-effect::after, .gm-ui-hover-effect::after {
    content: '✕';
    color: #fff;
    font-size: 1.3rem;
    font-weight: 900;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    text-shadow: 0 1px 4px #23211e, 0 0 2px #8bbabb;
    z-index: 1001;
}
.gm-style .gm-ui-hover-effect span, .gm-ui-hover-effect span {
    filter: none !important;
    color: #fff !important;
    font-size: 1.5rem !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    opacity: 1 !important;
    text-shadow: 0 1px 4px #23211e, 0 0 2px #8bbabb;
}
.gm-style .gm-ui-hover-effect svg, .gm-ui-hover-effect svg {
    filter: none !important;
    color: #fff !important;
    stroke: #fff !important;
    fill: #fff !important;
    width: 20px !important;
    height: 20px !important;
    display: block !important;
}
.gm-style .gm-ui-hover-effect svg path, .gm-ui-hover-effect svg path {
    stroke: #fff !important;
    fill: #fff !important;
}
.map-infowindow {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 260px;
    max-width: 320px;
    padding: 0.7rem 0.7rem 0.9rem 0.7rem;
    background: #23211e;
    color: #fff;
    border-radius: 12px;
}
.map-infowindow img {
    width: 100%;
    max-width: 260px;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 0.7rem;
    box-shadow: 0 2px 8px rgba(44,62,80,0.10);
}
.map-infowindow-title {
    font-family: var(--font-heading);
    color: #8bbabb;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    text-align: center;
}
.map-infowindow-address {
    color: #b8b3ad;
    font-size: 0.98rem;
    margin-bottom: 0.5rem;
    text-align: center;
}
.map-infowindow-desc {
    text-align: center;
    margin-bottom: 1.2rem;
    color: #e6e2d8;
    font-size: 1.08rem;
}
.portfolio-map-desc {
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #e6e2d8;
    font-size: 1.08rem;
}
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
        text-align: center;
    }
    .about-image {
        margin-top: 30px;
        max-width: 80%;
    }
    .services-list, .testimonials-list {
        flex-direction: column;
        align-items: center;
    }
}
@media (max-width: 1100px) and (min-width: 769px) {
    .nav-logo {
        font-size: 1.5rem;
        padding: 0.7rem 0;
    }
    .nav-item {
        font-size: 1rem;
        margin: 0 0.7rem;
        padding: 0.4rem 0;
    }
    .nav-container {
        padding: 0.7rem 0.7rem;
    }
    .about-text ul {
        text-align: center;
        margin-left: 0;
        padding-left: 0;
        list-style-position: inside;
        display: inline-block;
    }
    .about-text ul li {
        text-align: center;
        width: 100%;
        display: list-item;
    }
    .full-page-section {
        padding-top: 4.5rem;
    }
    .about-section {
        padding-top: 4.5rem;
    }
    .services-section {
        padding-top: 4.5rem;
    }
    .about-text h2,
    .services-section h2 {
        margin-top: 0;
        padding-top: 0.5rem;
    }
}
@media (max-width: 768px) {
    .nav-container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 0 1rem;
    }
    .nav-logo {
        font-size: 1.3rem;
        padding: 0.7rem 0;
    }
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: #23211e;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(44,62,80,0.18);
        z-index: 1001;
    }
    .nav-menu.active {
        left: 0;
    }
    .nav-item {
        margin: 0;
        width: 100%;
        color: #f5f3f0;
        font-size: 1.15rem;
        padding: 1.2rem 0;
        border-bottom: 1px solid #393733;
        background: transparent;
        transition: background 0.2s, color 0.2s;
    }
    .nav-item:last-child {
        border-bottom: none;
    }
    .nav-item:hover {
        background: #393733;
        color: #8bbabb;
    }
    .hamburger {
        display: block;
        align-self: center;
        margin: 0.7rem 0.2rem 0.7rem 0;
        z-index: 1002;
    }
    .bar {
        margin: 4px auto;
    }
    .services-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 18px;
        align-items: stretch;
    }
    .service-card {
        width: 100%;
        min-width: 0;
        box-sizing: border-box;
        margin: 0;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }
    .service-card i {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    .about-text ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        margin-left: 0;
        padding-left: 0;
    }
    .about-text ul li {
        text-align: center;
        width: 100%;
        list-style-position: inside;
    }
    .full-page-section {
        min-height: auto;
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .section-container {
        width: 95%;
    }
    .portfolio-row {
        flex-direction: column;
        align-items: center;
        gap: 2.5rem;
    }
    .portfolio-book {
        width: 98vw;
        max-width: 520px;
        height: 340px;
    }
    .portfolio-page img {
        height: 120px;
    }
    .home-content {
        padding-top: 7vh;
    }
    #map {
        height: 320px;
    }
    .portfolio-map-section {
        max-width: 100vw;
        padding: 0 0.5rem;
    }
}
@media (max-width: 480px) {
    .nav-logo {
        font-size: 1.1rem;
        padding: 0.7rem 0;
    }
    .services-list {
        grid-template-columns: 1fr;
    }
    .cta-button {
        padding: 0.6rem 1.2rem;
        font-size: 1rem;
    }
    .service-card, .testimonial-card {
        width: 100%;
        padding: 1.2rem 0.7rem 1rem 0.7rem;
    }
    .portfolio-page img {
        height: 140px;
    }
}
@media (max-width: 900px) {
    .realestate-columns {
        flex-direction: column;
        align-items: stretch;
        gap: 32px;
    }
    .realestate-contact {
        margin-top: 0;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}
#realestate {
    scroll-margin-top: 200px;
}
.realestate-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0 2rem 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.1rem;
}
.realestate-list li {
    display: flex;
    align-items: flex-start;
    font-size: 1.13rem;
    color: #e6e2d8;
    font-weight: bold;
    letter-spacing: 0.2px;
    justify-content: flex-start;
}
.realestate-list i {
    color: #8bbabb;
    font-size: 1.3rem;
    margin-right: 0.7rem;
}
.view-listings-btn {
    display: inline-block;
    margin-top: 1.2rem;
    padding: 0.8rem 2.2rem;
    background: linear-gradient(90deg, #6b4f27, #8bbabb);
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(44,62,80,0.12);
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: background 0.2s, transform 0.2s;
    cursor: pointer;
    text-align: center;
}
.view-listings-btn:hover {
    background: linear-gradient(90deg, #8bbabb, #6b4f27);
    color: #fff;
    transform: translateY(-2px) scale(1.04);
}
#realestate-anchor {
    display: none;
}
.section-heading {
    text-align: center;
    margin: 0 0 0.5rem 0;
    font-size: 2.5rem;
    font-family: var(--font-heading);
    color: #fff;
    font-weight: bold;
    background: transparent;
    border: none;
    padding: 0;
}
#portfolio {
    scroll-margin-top: 140px;
}
@media (max-width: 964px) and (min-width: 769px) {
    .nav-logo {
        font-size: 1.1rem;
        padding: 0.5rem 0;
    }
    .nav-item {
        font-size: 0.95rem;
        margin: 0 0.4rem;
        padding: 0.3rem 0;
    }
    .nav-container {
        padding: 0.5rem 0.5rem;
    }
}
