* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: Arial, Helvetica, sans-serif;
    color: #172033;
    background: #fff;
    line-height: 1.6;
}
a {
    text-decoration: none;
    color: inherit;
}
.container {
    width: min(1160px, 92%);
    margin: auto;
}
.header {
    background: #fff;
    border-bottom: 1px solid #edf0f5;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.nav {
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    font-size: 23px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 9px;
}
.logo span {
    background: #c98b3c;
    color: #fff;
    width: 39px;
    height: 39px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    font-size: 14px;
}
.nav nav {
    display: flex;
    align-items: center;
    gap: 30px;
}
.nav nav a {
    font-size: 15px;
    font-weight: 600;
    color: #586174;
}
.nav nav a:hover,
.nav nav a.active {
    color: #c98b3c;
}
.nav-btn {
    background: #172033 !important;
    color: #fff !important;
    padding: 12px 21px;
    border-radius: 8px;
}
.menu-toggle {
    display: none;
    background: none;
    border: 0;
    font-size: 26px;
}
.hero {
    min-height: 690px;
    background:
        linear-gradient(90deg, rgba(8, 17, 30, 0.88), rgba(8, 17, 30, 0.52)),
        url("https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?auto=format&fit=crop&w=1800&q=85")
            center/cover;
    display: flex;
    align-items: center;
    color: #fff;
}
.hero-content {
    position: relative;
    padding: 75px 0;
}
.hero-text {
    max-width: 690px;
}
.eyebrow {
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 800;
    color: #c98b3c;
    margin-bottom: 13px;
}
.hero h1 {
    font-size: clamp(42px, 6vw, 70px);
    line-height: 1.06;
    margin-bottom: 20px;
}
.hero h1 span {
    color: #e6b36e;
}
.hero-desc {
    font-size: 18px;
    max-width: 600px;
    color: #e5e8ed;
    margin-bottom: 30px;
}
.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.btn {
    display: inline-block;
    padding: 14px 23px;
    border-radius: 8px;
    font-weight: 700;
    border: 2px solid transparent;
    cursor: pointer;
}
.btn-primary {
    background: #c98b3c;
    color: #fff;
}
.btn-primary:hover {
    background: #ad712b;
}
.btn-outline {
    border-color: #fff;
    color: #fff;
}
.btn-light {
    background: #fff;
    color: #172033;
}
.search-card {
    background: #fff;
    color: #172033;
    padding: 24px;
    border-radius: 14px;
    box-shadow: 0 18px 60px #0004;
    margin-top: 45px;
}
.search-card h3 {
    margin-bottom: 18px;
}
.search-grid {
    display: grid;
    grid-template-columns: 1.2fr 1.2fr 1.1fr auto;
    gap: 13px;
    align-items: end;
}
.search-grid label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #687285;
}
.search-grid select {
    width: 100%;
    padding: 13px;
    border: 1px solid #dfe3e9;
    border-radius: 7px;
    background: #fff;
}
.search-btn {
    height: 46px;
}
.stats {
    background: #172033;
    color: #fff;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 28px 0;
}
.stats-grid div {
    text-align: center;
    border-right: 1px solid #ffffff22;
}
.stats-grid div:last-child {
    border: 0;
}
.stats-grid strong,
.stats-grid span {
    display: block;
}
.stats-grid strong {
    font-size: 28px;
    color: #e6b36e;
}
.stats-grid span {
    font-size: 13px;
    color: #cbd0d8;
}
.section {
    padding: 90px 0;
}
.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 30px;
    margin-bottom: 40px;
}
.section-heading h2,
.two-column h2,
.contact-grid h2 {
    font-size: 38px;
    line-height: 1.15;
}
.section-heading > p {
    max-width: 400px;
    color: #697285;
}
.property-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.property-card {
    border: 1px solid #e8ebf0;
    border-radius: 13px;
    overflow: hidden;
    background: #fff;
    transition: 0.25s;
    box-shadow: 0 7px 24px #17203308;
}
.property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px #17203314;
}
.property-image {
    height: 235px;
    position: relative;
}
.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #fff;
    padding: 6px 11px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 700;
}
.favorite {
    position: absolute;
    right: 14px;
    top: 14px;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    font-size: 22px;
    cursor: pointer;
}
.favorite.liked {
    color: #c98b3c;
}
.property-info {
    padding: 20px;
}
.property-type {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #c98b3c;
    font-weight: 800;
}
.property-info h3 {
    font-size: 20px;
    margin: 5px 0;
}
.location {
    font-size: 13px;
    color: #707989;
    margin-bottom: 16px;
}
.property-meta {
    display: flex;
    gap: 13px;
    flex-wrap: wrap;
    font-size: 12px;
    color: #687285;
    border-bottom: 1px solid #edf0f4;
    padding-bottom: 17px;
}
.property-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
}
.property-bottom strong {
    font-size: 19px;
}
.property-bottom a,
.service-card a,
.blog-card a {
    color: #c98b3c;
    font-weight: 700;
    font-size: 13px;
}
.no-results {
    display: none;
    text-align: center;
    padding: 35px;
    color: #777;
}
.cta {
    background: #c98b3c;
    color: #fff;
    padding: 55px 0;
}
.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}
.cta .eyebrow {
    color: #fff;
}
.cta h2 {
    font-size: 36px;
}
.footer {
    background: #101827;
    color: #b9c0cb;
    padding-top: 60px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.4fr;
    gap: 50px;
    padding-bottom: 50px;
}
.footer-logo {
    color: #fff;
    margin-bottom: 15px;
}
.footer h4 {
    color: #fff;
    margin-bottom: 15px;
}
.footer-grid > div > a:not(.logo),
.footer-grid > div p {
    display: block;
    margin: 8px 0;
    font-size: 14px;
}
.copyright {
    text-align: center;
    border-top: 1px solid #ffffff12;
    padding: 20px;
    font-size: 12px;
}
.page-hero {
    background: #172033;
    color: #fff;
    padding: 90px 0;
}
.page-hero h1 {
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 10px;
}
.page-hero p:last-child {
    color: #cbd0d8;
}
.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}
.about-img {
    width: 100%;
    height: 470px;
    object-fit: cover;
    border-radius: 14px;
}
.two-column p:not(.eyebrow) {
    color: #687285;
    margin-bottom: 18px;
}
.light-section {
    background: #f7f8fa;
}
.centered {
    justify-content: center;
    text-align: center;
}
.feature-grid,
.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.feature,
.service-card {
    padding: 30px;
    border: 1px solid #e5e8ed;
    border-radius: 12px;
    background: #fff;
}
.feature-icon {
    font-size: 30px;
    margin-bottom: 15px;
}
.feature h3,
.service-card h3 {
    margin-bottom: 8px;
}
.feature p,
.service-card p {
    color: #687285;
    font-size: 14px;
}
.service-grid {
    grid-template-columns: repeat(3, 1fr);
}
.service-card {
    box-shadow: 0 7px 25px #17203308;
}
.service-card a {
    display: inline-block;
    margin-top: 18px;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.blog-card {
    border: 1px solid #e6e9ee;
    border-radius: 12px;
    overflow: hidden;
}
.blog-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.blog-card div {
    padding: 22px;
}
.blog-card span {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #c98b3c;
}
.blog-card h3 {
    font-size: 21px;
    line-height: 1.3;
    margin: 8px 0;
}
.blog-card p {
    color: #687285;
    font-size: 14px;
    margin-bottom: 15px;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}
.contact-info {
    margin-top: 30px;
}
.contact-info p {
    margin: 15px 0;
    color: #596376;
}
.contact-form {
    display: grid;
    gap: 14px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid #dce1e8;
    border-radius: 7px;
    font: inherit;
    outline: none;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: #c98b3c;
}
.contact-form button {
    width: max-content;
}
.contact-form #formMessage {
    font-size: 14px;
    color: #16804a;
}
.active-btn {
    background: #c98b3c !important;
}
@media (max-width: 900px) {
    .search-grid {
        grid-template-columns: 1fr 1fr;
    }
    .property-grid,
    .blog-grid,
    .service-grid,
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .two-column,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .cta-content {
        display: block;
    }
    .cta .btn {
        margin-top: 20px;
    }
    .nav nav {
        gap: 18px;
    }
}
@media (max-width: 680px) {
    .menu-toggle {
        display: block;
    }
    .nav nav {
        display: none;
        position: absolute;
        top: 76px;
        left: 0;
        right: 0;
        background: #fff;
        padding: 20px;
        box-shadow: 0 10px 20px #0001;
        flex-direction: column;
        align-items: stretch;
    }
    .nav nav.show {
        display: flex;
    }
    .nav nav a {
        padding: 8px;
    }
    .hero {
        min-height: 760px;
    }
    .search-grid {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    .stats-grid div {
        border: 0;
    }
    .property-grid,
    .blog-grid,
    .service-grid,
    .feature-grid {
        grid-template-columns: 1fr;
    }
    .section {
        padding: 65px 0;
    }
    .section-heading {
        display: block;
    }
    .section-heading > p {
        margin-top: 12px;
    }
    .page-hero h1 {
        font-size: 40px;
    }
    .two-column h2,
    .contact-grid h2,
    .section-heading h2 {
        font-size: 32px;
    }
    .about-img {
        height: 330px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .cta h2 {
        font-size: 29px;
    }
}
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:wght@500;600;700&display=swap");
:root {
    --navy: #0d1b2a;
    --gold: #c89b5a;
    --gold2: #e4c48d;
    --cream: #f7f4ee;
    --line: #e8e5df;
}
body {
    font-family: "DM Sans", Arial, sans-serif;
    color: #182331;
}
.logo span {
    background: var(--navy);
    color: var(--gold2);
    width: 42px;
    height: 42px;
    border-radius: 12px;
}
.header {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #edf0f4;
}
.nav {
    height: 82px;
}
.nav nav a {
    font-size: 14px;
}
.nav nav a:not(.nav-btn):after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: 0.25s;
}
.nav nav a:hover:after,
.nav nav a.active:after {
    width: 100%;
}
.nav-btn {
    background: var(--navy) !important;
    border-radius: 7px;
}
.nav-btn:hover {
    background: var(--gold) !important;
}
.hero {
    min-height: 720px;
    background:
        linear-gradient(90deg, rgba(8, 18, 29, 0.93), rgba(8, 18, 29, 0.68) 48%, rgba(8, 18, 29, 0.16)),
        url("https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?auto=format&fit=crop&w=2000&q=90")
            center/cover;
}
.hero h1 {
    font-family: "Playfair Display", serif;
    font-size: clamp(46px, 6vw, 76px);
    line-height: 1.02;
    letter-spacing: -1.5px;
}
.hero h1 span {
    color: var(--gold2);
}
.eyebrow {
    color: var(--gold);
    letter-spacing: 2.4px;
    font-size: 11px;
}
.btn {
    border-radius: 7px;
    transition: 0.25s;
}
.btn-primary {
    background: var(--gold);
}
.btn-primary:hover {
    background: #b7833f;
    transform: translateY(-2px);
}
.search-card {
    border-radius: 12px;
    box-shadow: 0 25px 70px #0003;
}
.search-card h3 {
    font-family: "Playfair Display", serif;
}
.stats {
    background: var(--navy);
}
.stats-grid strong {
    font-family: "Playfair Display", serif;
    color: var(--gold2);
}
.section-heading h2,
.two-column h2,
.contact-grid h2 {
    font-family: "Playfair Display", serif;
    font-size: 42px;
}
.property-card {
    border-radius: 12px;
    border-color: var(--line);
    box-shadow: 0 7px 24px #0d1b2a0b;
}
.property-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 60px #0d1b2a1a;
}
.property-image {
    height: 255px;
}
.property-image img {
    transition: 0.5s;
}
.property-card:hover .property-image img {
    transform: scale(1.045);
}
.property-info h3,
.feature h3,
.service-card h3,
.blog-card h3 {
    font-family: "Playfair Display", serif;
}
.property-type,
.blog-card span {
    color: #a97838;
}
.property-bottom a,
.service-card a,
.blog-card a {
    color: #a97838;
}
.cta {
    background: var(--cream);
    border-top: 1px solid #eee8dc;
    border-bottom: 1px solid #eee8dc;
}
.cta h2 {
    font-family: "Playfair Display", serif;
}
.btn-light {
    background: var(--navy);
}
.btn-light:hover {
    background: var(--gold);
}
.footer {
    background: #0b1724;
}
.footer-grid a:hover {
    color: var(--gold2);
}
.page-hero {
    background: linear-gradient(120deg, var(--navy), #213950);
    padding: 105px 0;
}
.page-hero h1 {
    font-family: "Playfair Display", serif;
    font-size: 58px;
}
.about-img {
    border-radius: 12px;
    box-shadow: 0 20px 60px #0d1b2a1a;
}
.light-section {
    background: #faf9f6;
}
.feature,
.service-card,
.blog-card {
    border-color: var(--line);
}
.service-card,
.blog-card {
    transition: 0.25s;
}
.service-card:hover,
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px #0d1b2a1a;
}
.contact-form {
    background: #faf9f6;
    border: 1px solid var(--line);
    border-radius: 12px;
}
.trust-strip {
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 15px 0;
}
.trust-strip .container {
    display: flex;
    justify-content: center;
    gap: 45px;
    flex-wrap: wrap;
}
.trust-strip span {
    font-size: 9px;
    letter-spacing: 1.7px;
    font-weight: 800;
    color: #89919d;
}
@media (max-width: 680px) {
    .nav {
        height: 74px;
    }
    .hero {
        min-height: 800px;
    }
    .hero h1 {
        font-size: 45px;
    }
    .page-hero {
        padding: 75px 0;
    }
    .page-hero h1 {
        font-size: 43px;
    }
}

/* Final CTA contrast fix */
.cta {
    background: #f7f4ee !important;
    color: #182331 !important;
    border-top: 1px solid #eee8dc;
    border-bottom: 1px solid #eee8dc;
}
.cta .eyebrow {
    color: #a97838 !important;
}
.cta h2 {
    color: #182331 !important;
}
.cta .btn-light {
    background: #0d1b2a !important;
    color: #ffffff !important;
    border: 1px solid #0d1b2a;
}
.cta .btn-light:hover {
    background: #c89b5a !important;
    border-color: #c89b5a;
    color: #ffffff !important;
}

/* =========================================================
   Professional EstatePro Footer
   ========================================================= */
.professional-footer {
    background: radial-gradient(circle at 12% 10%, rgba(200, 155, 90, 0.1), transparent 28%),
        radial-gradient(circle at 90% 0%, rgba(52, 83, 112, 0.22), transparent 30%), #081521 !important;
    color: #aeb9c7;
    padding: 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.professional-footer .container {
    width: min(1180px, 92%);
}
.footer-main {
    display: grid;
    grid-template-columns: 2.1fr 1fr 1.15fr 1.55fr;
    gap: 55px;
    padding: 72px 0 58px;
}
.footer-brand {
    max-width: 360px;
}
.professional-footer .footer-logo {
    color: #fff;
    margin-bottom: 19px;
    font-size: 24px;
}
.professional-footer .footer-logo span {
    background: linear-gradient(135deg, #172b40, #0c1d2c);
    border: 1px solid rgba(228, 196, 141, 0.25);
    color: #e4c48d;
}
.footer-description {
    color: #9eabba !important;
    font-size: 13px !important;
    line-height: 1.85 !important;
    margin: 0 0 24px !important;
}
.footer-socials {
    display: flex;
    gap: 9px;
}
.footer-socials a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 8px;
    display: grid;
    place-items: center;
    color: #d7dee7;
    font-size: 13px;
    font-weight: 700;
    transition: 0.25s;
}
.footer-socials a:hover {
    background: #c89b5a;
    border-color: #c89b5a;
    color: #fff;
    transform: translateY(-2px);
}
.professional-footer .footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.professional-footer .footer-column h4 {
    color: #fff;
    font-size: 14px;
    letter-spacing: 0.2px;
    margin: 3px 0 20px;
    position: relative;
}
.professional-footer .footer-column h4:after {
    content: "";
    display: block;
    width: 25px;
    height: 2px;
    background: #c89b5a;
    margin-top: 9px;
}
.professional-footer .footer-column a {
    color: #aeb9c7;
    font-size: 13px;
    margin: 0 0 12px;
    transition: 0.2s;
}
.professional-footer .footer-column a:hover {
    color: #e4c48d;
    padding-left: 3px;
}
.footer-contact p {
    display: flex !important;
    gap: 10px;
    align-items: flex-start;
    color: #aeb9c7 !important;
    font-size: 13px !important;
    margin: 0 0 13px !important;
    line-height: 1.5 !important;
}
.footer-contact p span {
    color: #c89b5a;
    min-width: 16px;
    text-align: center;
}
.footer-contact-btn {
    margin-top: 9px;
    display: inline-flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    background: #c89b5a;
    color: #fff !important;
    border-radius: 7px;
    padding: 11px 14px !important;
    font-size: 12px !important;
    font-weight: 700;
    transition: 0.25s;
}
.footer-contact-btn:hover {
    background: #e0b875 !important;
    transform: translateY(-2px);
    padding-left: 14px !important;
}
.footer-contact-btn b {
    font-size: 17px;
}
.footer-newsletter {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 29px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 35px;
}
.newsletter-label {
    color: #c89b5a;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2px;
}
.footer-newsletter h3 {
    color: #fff;
    font-family: "Playfair Display", serif;
    font-size: 24px;
    margin: 4px 0 3px;
}
.footer-newsletter p {
    color: #8f9baa;
    font-size: 12px;
    margin: 0;
}
.newsletter-form {
    display: flex;
    width: min(420px, 100%);
    gap: 8px;
}
.newsletter-form input {
    min-width: 0;
    flex: 1;
    background: #102333;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 6px;
    color: #fff;
    padding: 12px 14px;
    outline: none;
    font: inherit;
}
.newsletter-form input::placeholder {
    color: #778595;
}
.newsletter-form input:focus {
    border-color: #c89b5a;
}
.newsletter-form button {
    background: #c89b5a;
    color: #fff;
    border: 0;
    border-radius: 6px;
    padding: 0 18px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s;
}
.newsletter-form button:hover {
    background: #e0b875;
}
.footer-bottom {
    min-height: 67px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
    font-size: 10px;
    color: #758393;
}
.footer-bottom p {
    margin: 0 !important;
    font-size: 10px !important;
}
.footer-bottom p:last-child {
    text-align: right;
}
.footer-bottom div {
    display: flex;
    gap: 19px;
}
.footer-bottom a {
    color: #8793a1;
    transition: 0.2s;
}
.footer-bottom a:hover {
    color: #e4c48d;
}
@media (max-width: 1000px) {
    .footer-main {
        grid-template-columns: 1.7fr 1fr 1fr;
    }
    .footer-contact {
        grid-column: 1 / -1;
    }
    .footer-contact-btn {
        width: max-content;
    }
}
@media (max-width: 700px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 35px 25px;
        padding: 55px 0 40px;
    }
    .footer-brand {
        grid-column: 1 / -1;
        max-width: none;
    }
    .footer-newsletter {
        display: block;
    }
    .newsletter-form {
        margin-top: 18px;
    }
    .footer-bottom {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 20px 0;
        gap: 12px;
    }
    .footer-bottom p:last-child {
        text-align: center;
    }
    .footer-bottom div {
        justify-content: center;
        flex-wrap: wrap;
    }
}
@media (max-width: 480px) {
    .footer-main {
        grid-template-columns: 1fr;
    }
    .footer-contact {
        grid-column: auto;
    }
    .newsletter-form {
        flex-direction: column;
    }
    .newsletter-form button {
        min-height: 44px;
    }
}

/* PROFESSIONAL ESTATEPRO NAVBAR */
.header {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(13, 27, 42, 0.08);
    box-shadow: 0 3px 18px rgba(13, 27, 42, 0.04);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.nav {
    height: 82px;
    position: relative;
}
.logo {
    font-size: 23px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #0d1b2a;
}
.logo span {
    background: linear-gradient(135deg, #132a40, #0d1b2a);
    color: #e4c48d;
    width: 43px;
    height: 43px;
    border-radius: 12px;
    border: 1px solid rgba(200, 155, 90, 0.25);
    box-shadow: 0 5px 15px rgba(13, 27, 42, 0.1);
}
.nav nav {
    display: flex;
    align-items: center;
    gap: 6px;
}
.nav nav a {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 700;
    color: #596575;
    transition: 0.22s;
}
.nav nav a:not(.nav-btn):hover {
    color: #0d1b2a;
    background: #f6f4ef;
}
.nav nav a:not(.nav-btn):after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 5px;
    height: 2px;
    background: #c89b5a;
    transform: scaleX(0);
    transition: 0.22s;
}
.nav nav a:not(.nav-btn):hover:after,
.nav nav a.active:not(.nav-btn):after {
    transform: scaleX(1);
}
.nav nav a.active:not(.nav-btn) {
    color: #0d1b2a;
    background: #faf8f3;
}
.nav .nav-btn {
    margin-left: 10px;
    padding: 0 20px;
    min-height: 43px;
    color: #fff !important;
    background: #0d1b2a !important;
    border: 1px solid #0d1b2a;
    box-shadow: 0 7px 18px rgba(13, 27, 42, 0.14);
}
.nav .nav-btn:hover {
    background: #c89b5a !important;
    border-color: #c89b5a;
    transform: translateY(-1px);
}
.nav .nav-btn.active-btn {
    background: #c89b5a !important;
    border-color: #c89b5a;
}
.menu-toggle {
    width: 43px;
    height: 43px;
    border: 1px solid #e2e5e9;
    border-radius: 8px;
    background: #fff;
    color: #0d1b2a;
    cursor: pointer;
    transition: 0.2s;
}
.menu-toggle:hover {
    border-color: #c89b5a;
    color: #a97838;
}
@media (max-width: 900px) {
    .nav {
        height: 76px;
    }
    .nav nav {
        gap: 3px;
    }
    .nav nav a {
        padding: 0 10px;
        font-size: 12px;
    }
    .nav .nav-btn {
        margin-left: 4px;
        padding: 0 15px;
    }
}
@media (max-width: 680px) {
    .header {
        box-shadow: 0 5px 20px rgba(13, 27, 42, 0.07);
    }
    .nav {
        height: 74px;
    }
    .menu-toggle {
        display: grid;
        place-items: center;
    }
    .nav nav {
        display: none;
        position: absolute;
        top: 74px;
        left: -4%;
        right: -4%;
        width: 108%;
        padding: 14px;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(18px);
        border-top: 1px solid #edf0f4;
        border-bottom: 1px solid #e5e8ed;
        box-shadow: 0 18px 35px rgba(13, 27, 42, 0.12);
        flex-direction: column;
        align-items: stretch;
        gap: 3px;
    }
    .nav nav.show {
        display: flex;
    }
    .nav nav a,
    .nav .nav-btn {
        width: 100%;
        min-height: 46px;
        justify-content: flex-start;
        padding: 0 15px;
        margin: 0;
        border-radius: 7px;
    }
    .nav nav a:not(.nav-btn):after {
        display: none;
    }
    .nav nav a.active:not(.nav-btn) {
        background: #f7f4ee;
        color: #a97838;
    }
    .nav .nav-btn {
        justify-content: center;
        margin-top: 7px;
    }
}

/* =========================================================
   FINAL PREMIUM ESTATEPRO NAVIGATION
   ========================================================= */
.premium-header {
    background: rgba(255, 255, 255, 0.97) !important;
    border-bottom: 1px solid rgba(13, 27, 42, 0.08) !important;
    box-shadow: 0 6px 28px rgba(13, 27, 42, 0.055) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}
.nav-topline {
    height: 30px;
    background: #0a1724;
    color: #aeb9c7;
    font-size: 9px;
    letter-spacing: 0.65px;
}
.nav-topline-inner {
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-topline-inner > span:first-child {
    color: #d7dee6;
    font-weight: 600;
}
.nav-top-contact {
    display: flex;
    align-items: center;
    gap: 10px;
}
.nav-top-contact span:first-child {
    color: #e4c48d;
    font-weight: 700;
}
.premium-header .nav {
    height: 78px !important;
    position: relative;
}
.premium-logo {
    display: flex !important;
    align-items: center;
    gap: 11px;
    min-width: 180px;
}
.premium-logo .logo-mark {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: linear-gradient(145deg, #172e44, #091722);
    border: 1px solid rgba(200, 155, 90, 0.32);
    box-shadow: 0 8px 20px rgba(13, 27, 42, 0.14);
}
.premium-logo .logo-mark b {
    color: #e4c48d;
    font-size: 13px;
    letter-spacing: 0.5px;
}
.premium-logo .logo-name {
    color: #102030;
    font-size: 23px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.7px;
}
.premium-logo .logo-name span {
    background: none !important;
    border: 0 !important;
    box-shadow: none !important;
    width: auto !important;
    height: auto !important;
    color: #b07e3c;
    display: inline !important;
    font-size: inherit;
    border-radius: 0 !important;
}
.premium-nav {
    display: flex !important;
    align-items: center;
    gap: 4px !important;
}
.premium-nav > a {
    height: 42px;
    padding: 0 15px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 8px !important;
    color: #5d6877 !important;
    font-size: 12.5px !important;
    font-weight: 700 !important;
    letter-spacing: 0.05px;
    transition: all 0.22s ease !important;
}
.premium-nav > a:not(.premium-nav-cta):hover {
    color: #0d1b2a !important;
    background: #f5f3ee !important;
    transform: translateY(-1px);
}
.premium-nav > a.active:not(.premium-nav-cta) {
    color: #a97838 !important;
    background: #faf7f0 !important;
}
.premium-nav > a:not(.premium-nav-cta):after {
    left: 15px !important;
    right: 15px !important;
    bottom: 3px !important;
    height: 2px !important;
    background: #c89b5a !important;
    border-radius: 3px;
}
.premium-nav-cta {
    margin-left: 12px !important;
    min-width: 155px;
    padding: 0 15px 0 18px !important;
    justify-content: space-between !important;
    gap: 15px;
    color: #fff !important;
    background: #0d1b2a !important;
    border: 1px solid #0d1b2a !important;
    box-shadow: 0 8px 20px rgba(13, 27, 42, 0.16);
}
.premium-nav-cta b {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.12);
    font-size: 13px;
    font-weight: 500;
    transition: 0.2s;
}
.premium-nav-cta:hover {
    background: #c89b5a !important;
    border-color: #c89b5a !important;
    transform: translateY(-2px);
    box-shadow: 0 11px 24px rgba(200, 155, 90, 0.24);
}
.premium-nav-cta:hover b {
    background: rgba(255, 255, 255, 0.2);
    transform: translate(2px, -2px);
}
.premium-nav-cta.active-btn {
    background: #c89b5a !important;
    border-color: #c89b5a !important;
}
.premium-header .menu-toggle {
    width: 42px !important;
    height: 42px !important;
    padding: 10px !important;
    display: none;
    place-items: center;
    gap: 4px;
    border: 1px solid #e1e5e9 !important;
    border-radius: 9px !important;
    background: #fff !important;
}
.premium-header .menu-toggle i {
    display: block;
    width: 19px;
    height: 2px;
    border-radius: 4px;
    background: #0d1b2a;
    transition: 0.2s;
}
@media (max-width: 1050px) {
    .premium-nav > a {
        padding: 0 10px !important;
        font-size: 11.5px !important;
    }
    .premium-nav-cta {
        min-width: 137px;
        margin-left: 5px !important;
    }
}
@media (max-width: 820px) {
    .nav-topline {
        display: none;
    }
    .premium-header .nav {
        height: 76px !important;
    }
    .premium-header .menu-toggle {
        display: grid !important;
    }
    .premium-nav {
        display: none !important;
        position: absolute !important;
        top: 76px;
        left: 0;
        right: 0;
        width: 100%;
        padding: 13px !important;
        background: rgba(255, 255, 255, 0.99);
        border: 1px solid #e7e9ed;
        border-top: 0;
        border-radius: 0 0 14px 14px;
        box-shadow: 0 20px 38px rgba(13, 27, 42, 0.13);
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 3px !important;
        animation: premiumNavOpen 0.22s ease-out;
    }
    .premium-nav.show {
        display: flex !important;
    }
    .premium-nav > a {
        width: 100%;
        min-height: 46px;
        justify-content: flex-start !important;
        padding: 0 15px !important;
        margin: 0 !important;
        border-radius: 7px !important;
    }
    .premium-nav > a:not(.premium-nav-cta):after {
        display: none !important;
    }
    .premium-nav > a.active:not(.premium-nav-cta) {
        background: #f7f4ee !important;
    }
    .premium-nav-cta {
        justify-content: space-between !important;
        margin-top: 7px !important;
        min-width: 0;
    }
}
@keyframes premiumNavOpen {
    from {
        opacity: 0;
        transform: translateY(-7px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@media (max-width: 480px) {
    .premium-logo .logo-name {
        font-size: 21px;
    }
    .premium-logo .logo-mark {
        width: 41px;
        height: 41px;
    }
}

@media (max-width: 820px) {
    .premium-header .menu-toggle.is-open i:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    .premium-header .menu-toggle.is-open i:nth-child(2) {
        opacity: 0;
    }
    .premium-header .menu-toggle.is-open i:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
}

/* =========================================================
   FINAL NAVBAR LOGO FIX
   Prevents the old .logo span rules from affecting the
   EstatePro wordmark and causing the overlap seen in the
   screenshot.
   ========================================================= */
.premium-header .premium-logo {
    display: flex !important;
    align-items: center !important;
    gap: 11px !important;
    min-width: 205px !important;
    width: auto !important;
    height: auto !important;
    color: #102030 !important;
    text-decoration: none !important;
    line-height: 1 !important;
}
.premium-header .premium-logo-mark {
    flex: 0 0 44px !important;
    width: 44px !important;
    height: 44px !important;
    display: grid !important;
    place-items: center !important;
    border-radius: 12px !important;
    background: linear-gradient(145deg, #172e44, #091722) !important;
    border: 1px solid rgba(200, 155, 90, 0.34) !important;
    color: #e4c48d !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    letter-spacing: 0.4px !important;
    box-shadow: 0 8px 20px rgba(13, 27, 42, 0.14) !important;
    padding: 0 !important;
    margin: 0 !important;
}
.premium-header .premium-wordmark {
    display: flex !important;
    align-items: baseline !important;
    gap: 0 !important;
    width: auto !important;
    height: auto !important;
    min-width: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    color: #102030 !important;
    white-space: nowrap !important;
    line-height: 1 !important;
}
.premium-header .premium-wordmark strong {
    display: inline !important;
    color: #102030 !important;
    background: transparent !important;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    font-size: 23px !important;
    line-height: 1 !important;
    font-weight: 800 !important;
    letter-spacing: -0.8px !important;
}
.premium-header .premium-wordmark em {
    display: inline !important;
    color: #b07e3c !important;
    background: transparent !important;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    font-size: 23px !important;
    line-height: 1 !important;
    font-style: normal !important;
    font-weight: 800 !important;
    letter-spacing: -0.8px !important;
}
@media (max-width: 480px) {
    .premium-header .premium-logo {
        min-width: 0 !important;
        gap: 9px !important;
    }
    .premium-header .premium-logo-mark {
        flex-basis: 41px !important;
        width: 41px !important;
        height: 41px !important;
    }
    .premium-header .premium-wordmark strong,
    .premium-header .premium-wordmark em {
        font-size: 21px !important;
    }
}

.legal-page {
    background: #fff;
}
.legal-wrap {
    width: min(900px, 92%);
    margin: auto;
}
.legal-intro {
    color: #687382;
    font-size: 15px;
    line-height: 1.85;
    margin: 18px 0 40px;
}
.legal-content {
    font-size: 15px;
    color: #566273;
    line-height: 1.9;
}
.legal-content h2 {
    font-family: "Playfair Display", serif;
    color: #182331;
    font-size: 29px;
    margin: 42px 0 12px;
}
.legal-content h3 {
    font-family: "Playfair Display", serif;
    color: #182331;
    font-size: 22px;
    margin: 28px 0 9px;
}
.legal-content p {
    margin: 0 0 18px;
}
.legal-content ul {
    padding-left: 23px;
    margin: 10px 0 22px;
}
.legal-content li {
    margin: 7px 0;
}
.legal-note {
    background: #f7f4ee;
    border-left: 4px solid #c89b5a;
    border-radius: 5px;
    padding: 18px 20px;
    margin: 28px 0;
    color: #475465;
}
.legal-updated {
    display: inline-block;
    background: #faf8f3;
    color: #a97838;
    border: 1px solid #eee5d4;
    border-radius: 5px;
    padding: 7px 11px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
}
.legal-content a {
    color: #a97838;
    font-weight: 700;
}
.legal-back {
    margin-top: 42px;
    padding-top: 25px;
    border-top: 1px solid #e8e5df;
}
@media (max-width: 680px) {
    .legal-content {
        font-size: 14px;
    }
    .legal-content h2 {
        font-size: 26px;
    }
}

/* =========================================================
   Animated Statistics Counters
   ========================================================= */
.stats .stat-item {
    position: relative;
    padding: 2px 20px;
}
.stats .counter {
    display: block;
    min-width: 105px;
    font-variant-numeric: tabular-nums;
    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
}
.stats .counter.is-counting {
    transform: translateY(-2px);
}
.stats .stat-item span {
    margin-top: 3px;
}
@media (max-width: 680px) {
    .stats .stat-item {
        padding: 0 8px;
    }
    .stats .counter {
        min-width: 0;
    }
}

.stats .counter {
    display: block !important;
}

/* =========================================================
   Expanded Home + About Content
   ========================================================= */
.section-subtitle {
    max-width: 620px;
    margin: 10px auto 0;
    color: #6d7785;
    font-size: 14px;
    line-height: 1.8;
}
.center-heading {
    text-align: center;
    margin-bottom: 45px;
}
.home-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.home-feature {
    padding: 28px 24px;
    border: 1px solid #e8e5df;
    border-radius: 11px;
    background: #fff;
    transition: 0.25s;
}
.home-feature:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(13, 27, 42, 0.09);
}
.home-feature .icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: #f7f4ee;
    color: #a97838;
    font-size: 21px;
    margin-bottom: 18px;
}
.home-feature h3 {
    font-family: "Playfair Display", serif;
    font-size: 21px;
    margin-bottom: 8px;
    color: #182331;
}
.home-feature p {
    color: #6d7785;
    font-size: 13px;
    line-height: 1.75;
}
.neighborhoods {
    display: grid;
    grid-template-columns: 1.45fr 1fr 1fr;
    grid-template-rows: 250px 250px;
    gap: 18px;
}
.neighborhood {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    min-height: 200px;
}
.neighborhood:first-child {
    grid-row: 1/3;
}
.neighborhood img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}
.neighborhood:hover img {
    transform: scale(1.06);
}
.neighborhood:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(5, 14, 24, 0.85));
}
.neighborhood-info {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 20px;
    z-index: 2;
    color: #fff;
}
.neighborhood-info span {
    color: #e4c48d;
    font-size: 10px;
    letter-spacing: 1.5px;
    font-weight: 800;
}
.neighborhood-info h3 {
    font-family: "Playfair Display", serif;
    font-size: 24px;
    margin-top: 3px;
}
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.process-step {
    position: relative;
    padding: 10px 28px 15px;
    border-right: 1px solid #e5e1da;
}
.process-step:last-child {
    border-right: 0;
}
.process-number {
    font-family: "Playfair Display", serif;
    color: #c89b5a;
    font-size: 31px;
    margin-bottom: 14px;
}
.process-step h3 {
    font-family: "Playfair Display", serif;
    font-size: 21px;
    margin-bottom: 8px;
}
.process-step p {
    color: #6d7785;
    font-size: 13px;
    line-height: 1.75;
}
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.testimonial {
    padding: 28px;
    border: 1px solid #e8e5df;
    border-radius: 11px;
    background: #fff;
}
.stars {
    color: #c89b5a;
    letter-spacing: 3px;
    margin-bottom: 15px;
}
.testimonial p {
    color: #586474;
    font-size: 14px;
    line-height: 1.85;
    margin-bottom: 21px;
}
.testimonial strong {
    color: #182331;
    display: block;
    font-size: 13px;
}
.testimonial span {
    color: #89919d;
    font-size: 11px;
}
.about-story {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 70px;
    align-items: center;
}
.about-story-image {
    position: relative;
}
.about-story-image img {
    width: 100%;
    height: 510px;
    object-fit: cover;
    border-radius: 13px;
    box-shadow: 0 22px 60px rgba(13, 27, 42, 0.14);
}
.about-badge {
    position: absolute;
    right: -25px;
    bottom: 28px;
    background: #0d1b2a;
    color: #fff;
    padding: 20px 22px;
    border-radius: 9px;
    box-shadow: 0 15px 35px rgba(13, 27, 42, 0.22);
}
.about-badge strong {
    display: block;
    color: #e4c48d;
    font-family: "Playfair Display", serif;
    font-size: 28px;
}
.about-badge span {
    font-size: 10px;
    color: #c5ced8;
}
.about-copy p {
    color: #6d7785;
    font-size: 14px;
    line-height: 1.85;
    margin-bottom: 17px;
}
.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 25px;
}
.about-highlight {
    padding: 17px;
    background: #faf9f6;
    border: 1px solid #ebe7df;
    border-radius: 8px;
}
.about-highlight strong {
    display: block;
    color: #182331;
    font-size: 13px;
    margin-bottom: 4px;
}
.about-highlight span {
    color: #7b8490;
    font-size: 11px;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.value-card {
    padding: 30px;
    border-radius: 11px;
    background: #fff;
    border: 1px solid #e8e5df;
}
.value-card .value-icon {
    font-size: 26px;
    margin-bottom: 16px;
}
.value-card h3 {
    font-family: "Playfair Display", serif;
    font-size: 22px;
    margin-bottom: 9px;
}
.value-card p {
    color: #6d7785;
    font-size: 13px;
    line-height: 1.75;
}

/* Team Cards */

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.team-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}
.team-card img {
    width: 100%;
    height: 380px;
    display: block;
    object-fit: cover;
    object-position: center top;
}

.team-card > div {
    padding: 28px 24px;
    min-height: 120px;
}

.team-card h3 {
    margin: 0 0 10px;
    font-size: 24px;
    line-height: 1.25;
}
.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 45px rgba(13, 27, 42, 0.09);
}
.team-card p {
    margin: 0;
    font-size: 15px;
    color: #b66a28;
}
.about-cta {
    background: #0d1b2a;
    color: #fff;
    border-radius: 14px;
    padding: 55px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}
.about-cta h2 {
    font-family: "Playfair Display", serif;
    font-size: 38px;
    margin-top: 5px;
}
.about-cta p {
    color: #b9c4cf;
    max-width: 600px;
    font-size: 13px;
    margin-top: 10px;
}
@media (max-width: 950px) {
    .home-features {
        grid-template-columns: repeat(2, 1fr);
    }
    .neighborhoods {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 230px 230px;
    }
    .neighborhood:first-child {
        grid-row: auto;
    }
    .process-grid {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }
    .process-step {
        border-right: 0;
        border-bottom: 1px solid #e5e1da;
        padding: 20px;
    }
    .testimonial-grid,
    .values-grid {
        grid-template-columns: 1fr 1fr;
    }
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-story {
        grid-template-columns: 1fr;
        gap: 45px;
    }
}
@media (max-width: 680px) {
    .home-features,
    .testimonial-grid,
    .values-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
    .neighborhoods {
        display: block;
    }
    .neighborhood {
        height: 230px;
        margin-bottom: 15px;
    }
    .process-grid {
        grid-template-columns: 1fr;
    }
    .process-step {
        padding: 20px 0;
    }
    .about-story-image img {
        height: 350px;
    }
    .about-badge {
        right: 15px;
    }
    .about-highlights {
        grid-template-columns: 1fr;
    }
    .about-cta {
        display: block;
        padding: 35px 25px;
    }
    .about-cta h2 {
        font-size: 31px;
    }
    .about-cta .btn {
        margin-top: 22px;
    }
}

/* =========================================================
   Expanded Services Page
   ========================================================= */
.services-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 65px;
    align-items: center;
}
.services-hero-image {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 22px 60px rgba(13, 27, 42, 0.14);
}
.services-intro h2 {
    font-family: "Playfair Display", serif;
    font-size: 43px;
    line-height: 1.15;
    margin-bottom: 18px;
}
.services-intro p:not(.eyebrow) {
    color: #6d7785;
    font-size: 14px;
    line-height: 1.85;
    margin-bottom: 17px;
}
.service-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 23px;
}
.service-detail {
    position: relative;
    padding: 31px 27px;
    background: #fff;
    border: 1px solid #e8e5df;
    border-radius: 12px;
    transition: 0.28s;
}
.service-detail:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 50px rgba(13, 27, 42, 0.09);
    border-color: #ded5c7;
}
.service-detail-number {
    position: absolute;
    top: 20px;
    right: 22px;
    font-family: "Playfair Display", serif;
    font-size: 24px;
    color: #e6ded0;
}
.service-detail-icon {
    width: 52px;
    height: 52px;
    border-radius: 11px;
    display: grid;
    place-items: center;
    background: #f7f4ee;
    color: #a97838;
    font-size: 23px;
    margin-bottom: 20px;
}
.service-detail h3 {
    font-family: "Playfair Display", serif;
    font-size: 23px;
    margin-bottom: 9px;
}
.service-detail p {
    color: #6d7785;
    font-size: 13px;
    line-height: 1.8;
}
.service-detail ul {
    margin: 15px 0 0;
    padding-left: 18px;
    color: #687382;
    font-size: 12px;
    line-height: 1.8;
}
.service-detail a {
    display: inline-block;
    margin-top: 17px;
    color: #a97838;
    font-size: 12px;
    font-weight: 800;
}
.service-banner {
    background: #0d1b2a;
    color: #fff;
    border-radius: 14px;
    padding: 55px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 35px;
}
.service-banner h2 {
    font-family: "Playfair Display", serif;
    font-size: 39px;
    line-height: 1.15;
    margin-top: 5px;
}
.service-banner p {
    max-width: 650px;
    color: #b9c4cf;
    font-size: 13px;
    line-height: 1.8;
    margin-top: 10px;
}
.service-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.service-benefit {
    text-align: center;
    padding: 28px 20px;
    border: 1px solid #e8e5df;
    border-radius: 11px;
    background: #fff;
}
.service-benefit strong {
    display: block;
    font-family: "Playfair Display", serif;
    color: #c89b5a;
    font-size: 31px;
    margin-bottom: 3px;
}
.service-benefit span {
    color: #687382;
    font-size: 12px;
}
.service-faq {
    max-width: 850px;
    margin: auto;
}
.service-faq details {
    border-bottom: 1px solid #e5e1da;
    padding: 19px 0;
}
.service-faq summary {
    cursor: pointer;
    list-style: none;
    color: #182331;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
}
.service-faq summary::-webkit-details-marker {
    display: none;
}
.service-faq summary:after {
    content: "+";
    color: #c89b5a;
    font-size: 19px;
}
.service-faq details[open] summary:after {
    content: "−";
}
.service-faq details p {
    color: #6d7785;
    font-size: 13px;
    line-height: 1.8;
    padding: 13px 25px 0 0;
}
@media (max-width: 950px) {
    .services-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .service-detail-grid {
        grid-template-columns: 1fr 1fr;
    }
    .service-benefits {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 680px) {
    .services-hero-image {
        height: 330px;
    }
    .services-intro h2 {
        font-size: 34px;
    }
    .service-detail-grid {
        grid-template-columns: 1fr;
    }
    .service-banner {
        display: block;
        padding: 35px 25px;
    }
    .service-banner h2 {
        font-size: 31px;
    }
    .service-banner .btn {
        margin-top: 22px;
    }
    .service-benefits {
        grid-template-columns: 1fr 1fr;
    }
}

/* Property detail */
.property-detail-hero {
    padding: 42px 0 28px;
    background: #faf9f6;
    border-bottom: 1px solid #ebe7df;
}
.property-breadcrumb {
    display: flex;
    gap: 8px;
    color: #8a929d;
    font-size: 11px;
    margin-bottom: 20px;
}
.property-breadcrumb a {
    color: #a97838;
    font-weight: 700;
}
.property-detail-top {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: end;
}
.property-detail-top h1 {
    font-family: "Playfair Display", serif;
    font-size: 44px;
    color: #182331;
    margin: 7px 0;
}
.property-location {
    color: #687382;
    font-size: 13px;
}
.property-price {
    text-align: right;
}
.property-price span {
    display: block;
    color: #89919d;
    font-size: 11px;
}
.property-price strong {
    color: #a97838;
    font-family: "Playfair Display", serif;
    font-size: 30px;
}
.property-detail-layout {
    display: grid;
    grid-template-columns: 1.65fr 0.75fr;
    gap: 30px;
}
.property-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 250px 250px;
    gap: 10px;
}
.property-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 9px;
}
.property-gallery img:first-child {
    grid-row: 1/3;
}
.property-info-card {
    position: sticky;
    top: 105px;
    background: #fff;
    border: 1px solid #e7e3dc;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 14px 35px rgba(13, 27, 42, 0.07);
}
.property-info-card h3,
.property-content h2 {
    font-family: "Playfair Display", serif;
    color: #182331;
}
.property-info-card h3 {
    font-size: 23px;
}
.property-info-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 18px 0;
    border-bottom: 1px solid #ebe7df;
}
.property-info-list div {
    background: #faf9f6;
    border-radius: 7px;
    padding: 11px;
}
.property-info-list span {
    display: block;
    color: #89919d;
    font-size: 9px;
    text-transform: uppercase;
}
.property-info-list strong {
    color: #182331;
    font-size: 12px;
}
.property-action {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-top: 20px;
}
.property-action .btn,
.property-action .phone-btn {
    width: 100%;
    text-align: center;
}
.phone-btn {
    border: 1px solid #dfe2e6;
    color: #182331;
    border-radius: 6px;
    padding: 11px;
    font-size: 12px;
    font-weight: 700;
}
.property-content {
    max-width: 820px;
}
.property-content h2 {
    font-size: 30px;
    margin: 35px 0 12px;
}
.property-content p {
    color: #687382;
    font-size: 14px;
    line-height: 1.9;
    margin-bottom: 18px;
}
.property-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 22px 0;
}
.property-feature {
    border: 1px solid #e8e5df;
    border-radius: 8px;
    padding: 15px;
}
.property-feature span {
    display: block;
    color: #89919d;
    font-size: 10px;
}
.property-feature strong {
    color: #182331;
    font-size: 13px;
}
.property-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.property-highlight {
    background: #faf9f6;
    padding: 18px;
    border-radius: 8px;
}
.property-highlight h4 {
    color: #182331;
}
.property-highlight p {
    font-size: 12px;
    margin: 5px 0;
}
.property-enquiry {
    background: #0d1b2a;
    border-radius: 12px;
    padding: 34px;
    color: #fff;
    margin-top: 35px;
}
.property-enquiry h2 {
    color: #fff;
}
.property-enquiry p {
    color: #b9c4cf;
}
.property-enquiry-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 20px;
}
.property-enquiry-form input,
.property-enquiry-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #314456;
    border-radius: 6px;
    background: #132536;
    color: #fff;
}
.property-enquiry-form textarea {
    grid-column: 1/-1;
    min-height: 95px;
}
.property-related {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.related-property {
    border: 1px solid #e8e5df;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}
.related-property img {
    width: 100%;
    height: 190px;
    object-fit: cover;
}
.related-property div {
    padding: 17px;
}
.related-property h3 {
    font-family: "Playfair Display", serif;
    color: #182331;
}
.related-property p {
    font-size: 11px;
    color: #7b8490;
}
.related-property strong {
    color: #a97838;
}
@media (max-width: 950px) {
    .property-detail-layout {
        grid-template-columns: 1fr;
    }
    .property-info-card {
        position: relative;
        top: auto;
    }
}
@media (max-width: 680px) {
    .property-detail-top {
        display: block;
    }
    .property-detail-top h1 {
        font-size: 34px;
    }
    .property-price {
        text-align: left;
        margin-top: 15px;
    }
    .property-gallery {
        display: block;
    }
    .property-gallery img {
        height: 230px;
        margin-bottom: 10px;
    }
    .property-features,
    .property-highlights,
    .property-related {
        grid-template-columns: 1fr;
    }
    .property-enquiry-form {
        grid-template-columns: 1fr;
    }
    .property-enquiry-form textarea {
        grid-column: auto;
    }
}

/* =========================================================
   Careers Page
   ========================================================= */
.careers-intro {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}
.careers-intro h2 {
    font-family: "Playfair Display", serif;
    font-size: 43px;
    line-height: 1.15;
    color: #182331;
    margin: 7px 0 18px;
}
.careers-intro p:not(.eyebrow) {
    color: #687382;
    font-size: 14px;
    line-height: 1.85;
    margin-bottom: 18px;
}
.careers-image {
    width: 100%;
    height: 430px;
    object-fit: cover;
    border-radius: 13px;
    box-shadow: 0 22px 60px rgba(13, 27, 42, 0.13);
}
.career-perks {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.career-perk {
    padding: 27px 22px;
    border: 1px solid #e8e5df;
    border-radius: 11px;
    background: #fff;
}
.career-perk-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    background: #f7f4ee;
    color: #a97838;
    font-size: 20px;
    margin-bottom: 16px;
}
.career-perk h3 {
    font-family: "Playfair Display", serif;
    color: #182331;
    font-size: 20px;
    margin-bottom: 7px;
}
.career-perk p {
    color: #6d7785;
    font-size: 12px;
    line-height: 1.75;
}
.jobs-list {
    max-width: 930px;
    margin: auto;
}
.job-card {
    background: #fff;
    border: 1px solid #e7e3dc;
    border-radius: 11px;
    padding: 25px 27px;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    transition: 0.25s;
}
.job-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(13, 27, 42, 0.08);
}
.job-card h3 {
    font-family: "Playfair Display", serif;
    color: #182331;
    font-size: 22px;
    margin-bottom: 7px;
}
.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}
.job-meta span {
    background: #faf8f3;
    border: 1px solid #eee7da;
    color: #7a8490;
    border-radius: 4px;
    padding: 5px 8px;
    font-size: 10px;
}
.job-card p {
    color: #687382;
    font-size: 12px;
    line-height: 1.7;
    margin-top: 9px;
    max-width: 650px;
}
.job-apply {
    flex-shrink: 0;
    white-space: nowrap;
}
.career-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.career-value {
    padding: 30px;
    background: #fff;
    border: 1px solid #e8e5df;
    border-radius: 11px;
}
.career-value strong {
    display: block;
    color: #c89b5a;
    font-family: "Playfair Display", serif;
    font-size: 27px;
    margin-bottom: 10px;
}
.career-value h3 {
    font-family: "Playfair Display", serif;
    color: #182331;
    font-size: 21px;
    margin-bottom: 8px;
}
.career-value p {
    color: #6d7785;
    font-size: 13px;
    line-height: 1.8;
}
.career-application {
    max-width: 850px;
    margin: auto;
    background: #0d1b2a;
    color: #fff;
    border-radius: 14px;
    padding: 42px;
}
.career-application h2 {
    font-family: "Playfair Display", serif;
    font-size: 34px;
    margin: 6px 0 9px;
}
.career-application > p {
    color: #b9c4cf;
    font-size: 13px;
    line-height: 1.8;
}
.career-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 23px;
}
.career-form input,
.career-form select,
.career-form textarea {
    width: 100%;
    padding: 12px 13px;
    border: 1px solid #314456;
    border-radius: 6px;
    background: #132536;
    color: #fff;
    outline: none;
    font: inherit;
}
.career-form textarea {
    grid-column: 1/-1;
    min-height: 120px;
    resize: vertical;
}
.career-form input::placeholder,
.career-form textarea::placeholder {
    color: #8b99a8;
}
.career-form .full {
    grid-column: 1/-1;
}
.career-form small {
    grid-column: 1/-1;
    color: #8291a1;
    font-size: 10px;
    line-height: 1.6;
}
@media (max-width: 950px) {
    .careers-intro {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .career-perks {
        grid-template-columns: 1fr 1fr;
    }
    .career-values {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 680px) {
    .careers-intro h2 {
        font-size: 34px;
    }
    .careers-image {
        height: 320px;
    }
    .career-perks,
    .career-values {
        grid-template-columns: 1fr;
    }
    .job-card {
        display: block;
    }
    .job-apply {
        margin-top: 18px;
    }
    .career-application {
        padding: 30px 22px;
    }
    .career-form {
        grid-template-columns: 1fr;
    }
    .career-form textarea,
    .career-form .full,
    .career-form small {
        grid-column: auto;
    }
}

/* =========================================================
   FINAL GLOBAL NAVBAR + MOBILE MENU
   ========================================================= */
.premium-header .nav {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 76px;
}
.premium-header .premium-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 28px;
}
.premium-header .premium-nav > a {
    display: inline-flex;
    align-items: center;
    color: #243344;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15px;
    position: relative;
    padding: 28px 0;
    transition: color 0.2s ease;
}
.premium-header .premium-nav > a:not(.premium-nav-cta):after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 19px;
    height: 2px;
    border-radius: 2px;
    background: #c89b5a;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.2s ease;
}
.premium-header .premium-nav > a:hover,
.premium-header .premium-nav > a.active {
    color: #a97838;
}
.premium-header .premium-nav > a:hover:after,
.premium-header .premium-nav > a.active:after {
    transform: scaleX(1);
}
.premium-header .premium-nav > a.premium-nav-cta {
    padding: 12px 16px !important;
    color: #fff !important;
    background: #0d1b2a;
    border-radius: 5px;
    gap: 12px;
    box-shadow: 0 7px 18px rgba(13, 27, 42, 0.13);
}
.premium-header .premium-nav > a.premium-nav-cta:after {
    display: none;
}
.premium-header .premium-nav > a.premium-nav-cta b {
    color: #e4c48d;
    font-size: 15px;
}
.premium-header .menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    width: 44px;
    height: 44px;
    padding: 9px;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    z-index: 1002;
}
.premium-header .menu-toggle i {
    display: block;
    width: 25px;
    height: 2px;
    background: #182331;
    border-radius: 2px;
    transition:
        transform 0.25s ease,
        opacity 0.2s ease;
}
.premium-header .menu-toggle.is-open i:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.premium-header .menu-toggle.is-open i:nth-child(2) {
    opacity: 0;
}
.premium-header .menu-toggle.is-open i:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}
@media (max-width: 950px) {
    .premium-header .nav {
        min-height: 70px;
    }
    .premium-header .menu-toggle {
        display: flex;
    }
    .premium-header .premium-nav {
        position: absolute;
        z-index: 1001;
        top: calc(100% - 1px);
        left: 0;
        right: 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 10px 18px 18px;
        background: #fff;
        border-top: 1px solid #eee9e0;
        box-shadow: 0 18px 30px rgba(13, 27, 42, 0.12);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        pointer-events: none;
        transition:
            opacity 0.22s ease,
            transform 0.22s ease,
            visibility 0.22s ease;
    }
    .premium-header .premium-nav.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }
    .premium-header .premium-nav > a,
    .premium-header .premium-nav > a.premium-nav-cta {
        width: 100%;
        padding: 14px 5px !important;
        border-radius: 5px;
        justify-content: flex-start;
        background: transparent;
        color: #243344 !important;
        box-shadow: none;
    }
    .premium-header .premium-nav > a:not(.premium-nav-cta):after {
        display: none;
    }
    .premium-header .premium-nav > a.active {
        background: #faf7f0;
        color: #a97838 !important;
    }
    .premium-header .premium-nav > a.premium-nav-cta {
        margin-top: 6px;
        padding: 13px 15px !important;
        justify-content: space-between;
        background: #0d1b2a;
        color: #fff !important;
    }
}
@media (max-width: 600px) {
    .premium-header .nav {
        padding-left: 15px;
        padding-right: 15px;
    }
    .premium-header .premium-logo {
        min-width: 0;
    }
    .premium-header .premium-wordmark strong,
    .premium-header .premium-wordmark em {
        font-size: 20px !important;
    }
}

/* =========================================================
   MOBILE POLISH — FINAL RESPONSIVE PASS
   ========================================================= */
html {
    overflow-x: hidden;
}
body {
    overflow-x: hidden;
}
img {
    max-width: 100%;
}
@media (max-width: 680px) {
    .container {
        width: 100%;
        max-width: 100%;
        padding-left: 18px;
        padding-right: 18px;
    }

    /* Mobile header */
    .premium-header {
        position: relative;
        z-index: 1100;
    }
    .premium-header .nav {
        min-height: 72px;
        padding: 0 18px;
    }
    .premium-header .premium-logo {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .premium-header .premium-logo-mark {
        width: 38px;
        height: 38px;
        min-width: 38px;
        font-size: 13px;
        border-radius: 10px;
    }
    .premium-header .premium-wordmark {
        font-size: 20px;
        line-height: 1;
    }
    .premium-header .premium-wordmark strong {
        font-size: 20px !important;
    }
    .premium-header .premium-wordmark em {
        font-size: 20px !important;
    }
    .premium-header .menu-toggle {
        width: 42px;
        height: 42px;
        border: 1px solid #e0e4e8;
        border-radius: 9px;
        background: #fff;
        padding: 8px;
        align-items: center;
        justify-content: center;
        gap: 5px;
        box-shadow: 0 4px 12px rgba(13, 27, 42, 0.05);
    }
    .premium-header .menu-toggle i {
        width: 23px;
        height: 2px;
    }

    /* Full-width mobile navigation drawer */
    .premium-header .premium-nav {
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        padding: 10px 18px 18px;
        border-top: 1px solid #ece8e1;
        box-shadow: 0 18px 35px rgba(13, 27, 42, 0.14);
    }
    .premium-header .premium-nav > a {
        min-height: 48px;
        font-size: 13px;
        padding: 13px 14px !important;
    }
    .premium-header .premium-nav > a.active {
        border-left: 3px solid #c89b5a;
        padding-left: 11px !important;
    }
    .premium-header .premium-nav > a.premium-nav-cta {
        min-height: 48px;
        margin-top: 8px;
        padding: 13px 15px !important;
    }

    /* Page hero */
    .page-hero {
        padding: 58px 0 60px;
    }
    .page-hero .eyebrow {
        font-size: 10px;
        letter-spacing: 2px;
    }
    .page-hero h1 {
        font-size: 40px;
        line-height: 1.08;
        margin-top: 9px;
    }
    .page-hero p:not(.eyebrow) {
        font-size: 13px;
        line-height: 1.75;
        max-width: 100%;
    }

    /* Careers page specifically */
    .careers-intro {
        gap: 30px;
    }
    .careers-intro h2 {
        font-size: 32px;
        line-height: 1.18;
    }
    .careers-intro p:not(.eyebrow) {
        font-size: 13px;
        line-height: 1.8;
    }
    .careers-image {
        height: 280px;
    }
    .career-perk {
        padding: 24px 20px;
    }
    .job-card {
        padding: 22px 20px;
    }
    .job-card h3 {
        font-size: 20px;
    }
    .career-application {
        padding: 28px 20px;
    }
    .career-application h2 {
        font-size: 30px;
        line-height: 1.2;
    }
    .career-form input,
    .career-form select,
    .career-form textarea {
        font-size: 13px;
    }

    /* Footer mobile */
    .professional-footer .footer-main {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    .professional-footer .footer-newsletter {
        display: block !important;
    }
    .professional-footer .newsletter-form {
        margin-top: 16px;
        display: flex;
        width: 100%;
    }
    .professional-footer .newsletter-form input {
        min-width: 0;
        width: 100%;
    }
    .professional-footer .footer-bottom {
        display: flex !important;
        flex-direction: column;
        align-items: flex-start !important;
        gap: 12px !important;
    }
    .professional-footer .footer-bottom div {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
    }
}

/* =========================================================
   DEFINITIVE NAV FIX — MOBILE + DESKTOP
   ========================================================= */
.premium-header .nav {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    min-height: 76px !important;
}
.premium-header .premium-nav {
    display: flex !important;
    align-items: center !important;
    gap: 26px !important;
}
.premium-header .premium-nav > a {
    display: inline-flex !important;
    align-items: center !important;
    white-space: nowrap !important;
}
.premium-header .menu-toggle {
    display: none !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 5px !important;
    width: 42px !important;
    height: 42px !important;
    padding: 8px !important;
    margin: 0 !important;
    background: #fff !important;
    border: 1px solid #dfe4e9 !important;
    border-radius: 9px !important;
    cursor: pointer !important;
    z-index: 1200 !important;
}
.premium-header .menu-toggle i {
    display: block !important;
    width: 23px !important;
    height: 2px !important;
    margin: 0 !important;
    background: #162433 !important;
    border-radius: 2px !important;
    transition:
        transform 0.22s ease,
        opacity 0.18s ease !important;
}
.premium-header .menu-toggle.is-open i:nth-child(1) {
    transform: translateY(7px) rotate(45deg) !important;
}
.premium-header .menu-toggle.is-open i:nth-child(2) {
    opacity: 0 !important;
}
.premium-header .menu-toggle.is-open i:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg) !important;
}

@media (max-width: 680px) {
    .premium-header .nav {
        min-height: 72px !important;
        height: 72px !important;
        width: 100% !important;
        padding: 0 18px !important;
    }

    .premium-header .premium-logo {
        display: flex !important;
        align-items: center !important;
        flex-shrink: 0 !important;
    }

    .premium-header .menu-toggle {
        display: flex !important;
        flex-shrink: 0 !important;
    }

    .premium-header .premium-nav {
        display: flex !important;
        position: absolute !important;
        top: 72px !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        height: auto !important;
        max-height: calc(100vh - 72px) !important;
        overflow-y: auto !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 3px !important;
        padding: 12px 18px 18px !important;
        background: #fff !important;
        border-top: 1px solid #e9e5de !important;
        box-shadow: 0 18px 35px rgba(13, 27, 42, 0.16) !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transform: translateY(-8px) !important;
        pointer-events: none !important;
        transition:
            opacity 0.2s ease,
            transform 0.2s ease,
            visibility 0.2s ease !important;
        z-index: 1199 !important;
    }

    .premium-header .premium-nav.show {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
        pointer-events: auto !important;
    }

    .premium-header .premium-nav > a,
    .premium-header .premium-nav > a.premium-nav-cta {
        display: flex !important;
        width: 100% !important;
        min-height: 48px !important;
        height: auto !important;
        margin: 0 !important;
        padding: 13px 14px !important;
        justify-content: flex-start !important;
        align-items: center !important;
        border-radius: 7px !important;
        font-size: 13px !important;
        color: #243344 !important;
        background: transparent !important;
        box-shadow: none !important;
    }

    .premium-header .premium-nav > a:hover {
        background: #faf8f3 !important;
        color: #a97838 !important;
    }

    .premium-header .premium-nav > a.active {
        background: #f7f3eb !important;
        color: #a97838 !important;
    }

    .premium-header .premium-nav > a:not(.premium-nav-cta):after {
        display: none !important;
    }

    .premium-header .premium-nav > a.premium-nav-cta {
        margin-top: 7px !important;
        justify-content: space-between !important;
        background: #0d1b2a !important;
        color: #fff !important;
    }

    .premium-header .premium-nav > a.premium-nav-cta b {
        color: #e3c080 !important;
    }

    body.nav-open {
        overflow: hidden;
    }

    .premium-header .nav-topline {
        display: none !important;
    }
}

@media (min-width: 681px) {
    .premium-header .premium-nav {
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        pointer-events: auto !important;
    }
}

/* =========================================================
   CLEAN MOBILE MENU CLOSE ICON
   ========================================================= */
@media (max-width: 680px) {
    .premium-header .menu-toggle {
        position: relative !important;
        display: block !important;
        width: 42px !important;
        height: 42px !important;
        min-width: 42px !important;
        padding: 0 !important;
        border: 1px solid #cfd6dd !important;
        border-radius: 9px !important;
        background: #fff !important;
        box-shadow: none !important;
        overflow: hidden !important;
    }

    .premium-header .menu-toggle i {
        display: none !important;
    }

    .premium-header .menu-toggle::before,
    .premium-header .menu-toggle::after {
        content: "" !important;
        position: absolute !important;
        left: 50% !important;
        top: 50% !important;
        width: 20px !important;
        height: 2px !important;
        margin: 0 !important;
        border-radius: 2px !important;
        background: #162433 !important;
        transform-origin: center !important;
        transition: transform 0.2s ease !important;
    }

    .premium-header .menu-toggle::before {
        transform: translate(-50%, -50%) rotate(45deg) !important;
    }

    .premium-header .menu-toggle::after {
        transform: translate(-50%, -50%) rotate(-45deg) !important;
    }

    /* Closed menu: show a clean hamburger. */
    .premium-header .menu-toggle:not(.is-open)::before {
        width: 21px !important;
        box-shadow:
            0 -6px 0 #162433,
            0 6px 0 #162433 !important;
        transform: translate(-50%, -50%) rotate(0) !important;
    }

    .premium-header .menu-toggle:not(.is-open)::after {
        display: none !important;
    }

    /* Open menu: perfectly centered X. */
    .premium-header .menu-toggle.is-open::before {
        box-shadow: none !important;
        transform: translate(-50%, -50%) rotate(45deg) !important;
    }

    .premium-header .menu-toggle.is-open::after {
        display: block !important;
        transform: translate(-50%, -50%) rotate(-45deg) !important;
    }
}