/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'DM Sans', 'Segoe UI', Arial, sans-serif;
    background-color: #FBF8F3;
    color: #3A2E2A;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

a {
    color: #6B4F3A;
    text-decoration: none;
    transition: color 0.25s ease;
}

a:hover {
    color: #5A3F2E;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    color: #3A2E2A;
    line-height: 1.3;
}

h1 { font-size: 2.6rem; margin-bottom: 1rem; }
h2 { font-size: 2rem; margin-bottom: 0.85rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.7rem; }

p { margin-bottom: 1rem; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    height: auto;
    min-height: 52px;
    border-radius: 12px;
    background: #6B4F3A;
    color: #FFFFFF;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    line-height: 1.4;
}

.btn:hover {
    background: #5A3F2E;
    color: #FFFFFF;
    box-shadow: 0 4px 16px rgba(107, 79, 58, 0.25);
}

.btn-outline {
    background: transparent;
    color: #6B4F3A;
    border: 2px solid #6B4F3A;
}

.btn-outline:hover {
    background: #6B4F3A;
    color: #FFFFFF;
}

/* ===== HEADER ===== */
.site-header {
    background: #FFFFFF;
    box-shadow: 0 2px 12px rgba(58, 46, 42, 0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    background: #3A2E2A;
    color: #FBF8F3;
    padding: 8px 0;
    font-size: 0.88rem;
}

.header-top .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.header-top a {
    color: #EFE7DC;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.25s;
}

.header-top a:hover {
    color: #FFFFFF;
}

.header-top .icon-sm {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.header-main {
    padding: 14px 0;
}

.header-main .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo a {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.45rem;
    font-weight: 700;
    color: #3A2E2A;
    letter-spacing: -0.02em;
}

.logo span {
    color: #6B4F3A;
}

/* ===== DESKTOP NAV ===== */
.main-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.main-nav > li {
    list-style: none;
    position: relative;
}

.main-nav > li > a {
    display: block;
    padding: 10px 16px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #3A2E2A;
    border-radius: 8px;
    transition: background 0.25s, color 0.25s;
}

.main-nav > li > a:hover,
.main-nav > li > a.active {
    background: #EFE7DC;
    color: #6B4F3A;
}

/* Dropdown arrow */
.has-dropdown > a::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    margin-left: 6px;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

.has-dropdown:hover > a::after {
    transform: rotate(180deg);
}

/* ===== DROPDOWN ===== */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(58, 46, 42, 0.12);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    list-style: none;
    z-index: 100;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    opacity: 0;
    transform: translateX(-10px);
    animation: none;
}

.has-dropdown:hover .dropdown-menu li {
    animation: dropdownItemIn 0.3s ease forwards;
}

.has-dropdown:hover .dropdown-menu li:nth-child(1) { animation-delay: 0.03s; }
.has-dropdown:hover .dropdown-menu li:nth-child(2) { animation-delay: 0.06s; }
.has-dropdown:hover .dropdown-menu li:nth-child(3) { animation-delay: 0.09s; }
.has-dropdown:hover .dropdown-menu li:nth-child(4) { animation-delay: 0.12s; }
.has-dropdown:hover .dropdown-menu li:nth-child(5) { animation-delay: 0.15s; }
.has-dropdown:hover .dropdown-menu li:nth-child(6) { animation-delay: 0.18s; }
.has-dropdown:hover .dropdown-menu li:nth-child(7) { animation-delay: 0.21s; }
.has-dropdown:hover .dropdown-menu li:nth-child(8) { animation-delay: 0.24s; }
.has-dropdown:hover .dropdown-menu li:nth-child(9) { animation-delay: 0.27s; }
.has-dropdown:hover .dropdown-menu li:nth-child(10) { animation-delay: 0.30s; }
.has-dropdown:hover .dropdown-menu li:nth-child(11) { animation-delay: 0.33s; }

@keyframes dropdownItemIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 0.9rem;
    color: #3A2E2A;
    transition: background 0.2s, color 0.2s, padding-left 0.2s;
}

.dropdown-menu a:hover {
    background: #FBF8F3;
    color: #6B4F3A;
    padding-left: 26px;
}

/* ===== MOBILE MENU TOGGLE ===== */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 36px;
    height: 36px;
    position: relative;
    z-index: 1100;
}

.menu-toggle span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: #3A2E2A;
    border-radius: 2px;
    transition: all 0.3s ease;
    position: absolute;
    left: 5px;
}

.menu-toggle span:nth-child(1) { top: 8px; }
.menu-toggle span:nth-child(2) { top: 16px; }
.menu-toggle span:nth-child(3) { top: 24px; }

.menu-toggle.active span:nth-child(1) {
    top: 16px;
    transform: rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    top: 16px;
    transform: rotate(-45deg);
}

/* ===== MOBILE NAV ===== */
@media (max-width: 991px) {
    .menu-toggle {
        display: block;
    }

    .nav-wrapper {
        position: fixed;
        top: 0;
        right: -100%;
        width: 55%;
        max-width: 380px;
        height: 100vh;
        background: #FFFFFF;
        box-shadow: -4px 0 24px rgba(58, 46, 42, 0.15);
        z-index: 1050;
        overflow-y: auto;
        transition: right 0.35s ease;
        padding: 80px 24px 40px;
    }

    .nav-wrapper.open {
        right: 0;
    }

    .mobile-close-btn {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 36px;
        height: 36px;
        background: #FBF8F3;
        border: none;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1100;
        transition: background 0.25s;
    }

    .mobile-close-btn:hover {
        background: #EFE7DC;
    }

    .mobile-close-btn svg {
        width: 18px;
        height: 18px;
        stroke: #3A2E2A;
    }

    .main-nav {
        flex-direction: column;
        gap: 0;
        align-items: stretch;
    }

    .main-nav > li > a {
        padding: 14px 0;
        font-size: 1.05rem;
        border-bottom: 1px solid #EFE7DC;
        border-radius: 0;
        text-align: left;
    }

    .has-dropdown > a::after {
        float: right;
        margin-top: 4px;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        border-radius: 0;
        padding: 0 0 0 16px;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        transform: none;
        transition: max-height 0.4s ease;
    }

    .dropdown-menu.open {
        max-height: 600px;
    }

    .dropdown-menu li {
        opacity: 1;
        transform: none;
        animation: none !important;
    }

    .dropdown-menu a {
        padding: 10px 0;
        border-bottom: 1px solid #f5f0ea;
    }

    .dropdown-menu a:hover {
        padding-left: 8px;
    }

    .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(58, 46, 42, 0.4);
        z-index: 1040;
    }

    .nav-overlay.active {
        display: block;
    }
}

@media (min-width: 992px) {
    .mobile-close-btn {
        display: none;
    }
    .nav-overlay {
        display: none !important;
    }
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(58,46,42,0.72) 0%, rgba(107,79,58,0.45) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    padding: 60px 0;
}

.hero h1 {
    color: #FFFFFF;
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.hero p {
    color: #EFE7DC;
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
}

.hero .btn {
    margin-right: 12px;
    margin-bottom: 8px;
}

/* ===== SECTIONS ===== */
.section {
    padding: 70px 0;
}

.section-alt {
    background: #EFE7DC;
}

.section-white {
    background: #FFFFFF;
}

.section-title {
    text-align: center;
    margin-bottom: 48px;
}

.section-title h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #6B4F3A;
    border-radius: 2px;
}

.section-title p {
    color: #6B5D56;
    max-width: 640px;
    margin: 16px auto 0;
}

/* ===== GRID CARDS ===== */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

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

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

.card {
    background: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(58, 46, 42, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(58, 46, 42, 0.12);
}

.card-img {
    height: 220px;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.card:hover .card-img img {
    transform: scale(1.05);
}

.card-body {
    padding: 24px;
}

.card-body h3 {
    margin-bottom: 10px;
}

.card-body p {
    color: #6B5D56;
    font-size: 0.95rem;
}

/* ===== CTA BLOCK ===== */
.cta-block {
    text-align: center;
    padding: 48px 32px;
    background: linear-gradient(135deg, #6B4F3A 0%, #5A3F2E 100%);
    border-radius: 16px;
    margin: 40px 0;
}

.cta-block h2, .cta-block h3 {
    color: #FFFFFF;
}

.cta-block p {
    color: #EFE7DC;
    max-width: 600px;
    margin: 0 auto 24px;
}

.cta-block .btn {
    background: #FFFFFF;
    color: #6B4F3A;
}

.cta-block .btn:hover {
    background: #FBF8F3;
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.3);
}

/* ===== FORM STYLES ===== */
.feedback-form-container {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 36px;
    box-shadow: 0 8px 32px rgba(58, 46, 42, 0.08);
    max-width: 600px;
}

.feedback-form-container h3 {
    text-align: center;
    margin-bottom: 24px;
    color: #3A2E2A;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid #E0D6CC;
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: 'DM Sans', sans-serif;
    color: #3A2E2A;
    background: #FBF8F3;
    transition: border-color 0.25s, box-shadow 0.25s;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #6B4F3A;
    box-shadow: 0 0 0 3px rgba(107, 79, 58, 0.1);
}

.form-group textarea {
    min-height: 110px;
    resize: vertical;
}

.form-submit {
    text-align: center;
    margin-top: 8px;
}

.submit-btn {
    display: inline-block;
    padding: 14px 40px;
    min-height: 52px;
    border-radius: 12px;
    background: #6B4F3A;
    color: #FFFFFF;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background: #5A3F2E;
    box-shadow: 0 4px 16px rgba(107, 79, 58, 0.25);
}

#form-success {
    text-align: center;
    padding: 30px;
}

#form-success p {
    font-size: 1.1rem;
    color: #6B4F3A;
    font-weight: 500;
}

.error-message {
    color: #ff6b6b;
    margin-top: 5px;
    font-size: 14px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== MAP ===== */
.map-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(58, 46, 42, 0.08);
    margin-top: 30px;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: 0;
    display: block;
}

/* ===== FOOTER ===== */
.site-footer {
    background: #3A2E2A;
    color: #D4C8BC;
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-col h4 {
    color: #FFFFFF;
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: #B8A99E;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #B8A99E;
    font-size: 0.9rem;
    transition: color 0.25s, padding-left 0.25s;
}

.footer-col ul li a:hover {
    color: #FFFFFF;
    padding-left: 4px;
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
    font-size: 0.85rem;
    color: #8A7B72;
}

/* ===== STICKY QUOTE BUTTON ===== */
.sticky-quote-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 900;
    padding: 14px 28px;
    background: #6B4F3A;
    color: #FFFFFF;
    border: none;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    box-shadow: 0 6px 24px rgba(107, 79, 58, 0.35);
    transition: background 0.3s, box-shadow 0.3s, transform 0.3s;
}

.sticky-quote-btn:hover {
    background: #5A3F2E;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(107, 79, 58, 0.45);
}

/* ===== MODAL ===== */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(58, 46, 42, 0.55);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 40px;
    max-width: 560px;
    width: 100%;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalIn 0.35s ease;
}

@keyframes modalIn {
    from { opacity: 0; transform: scale(0.92) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    background: #FBF8F3;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s;
}

.modal-close:hover {
    background: #EFE7DC;
}

.modal-close svg {
    width: 18px;
    height: 18px;
    stroke: #3A2E2A;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
    background: linear-gradient(135deg, #3A2E2A 0%, #6B4F3A 100%);
    padding: 60px 0;
    text-align: center;
}

.page-hero h1 {
    color: #FFFFFF;
    margin-bottom: 12px;
}

.page-hero p {
    color: #D4C8BC;
    max-width: 640px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* ===== BREADCRUMBS ===== */
.breadcrumbs {
    padding: 16px 0;
    font-size: 0.88rem;
}

.breadcrumbs a {
    color: #6B5D56;
}

.breadcrumbs span {
    color: #B8A99E;
    margin: 0 6px;
}

/* ===== CONTENT BLOCKS ===== */
.content-block {
    margin-bottom: 40px;
}

.content-block h2 {
    margin-bottom: 16px;
}

.content-block ul, .content-block ol {
    padding-left: 24px;
    margin-bottom: 16px;
}

.content-block li {
    margin-bottom: 8px;
    line-height: 1.7;
}

/* ===== TWO-COL LAYOUT ===== */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.two-col img {
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(58, 46, 42, 0.08);
}

/* ===== FAQ ===== */
.faq-item {
    background: #FFFFFF;
    border-radius: 12px;
    margin-bottom: 12px;
    box-shadow: 0 2px 10px rgba(58, 46, 42, 0.04);
    overflow: hidden;
}

.faq-question {
    padding: 20px 24px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.25s;
    font-size: 1rem;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    color: #3A2E2A;
    font-family: 'DM Sans', sans-serif;
}

.faq-question:hover {
    background: #FBF8F3;
}

.faq-question::after {
    content: '+';
    font-size: 1.4rem;
    color: #6B4F3A;
    flex-shrink: 0;
    margin-left: 16px;
    transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
    content: '−';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 24px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 24px 20px;
}

.faq-answer p, .faq-answer ul {
    color: #6B5D56;
}

/* ===== ICON LIST ===== */
.icon-list {
    list-style: none;
    padding: 0;
}

.icon-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    line-height: 1.6;
}

.icon-list .icon-check {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    margin-top: 2px;
    color: #6B4F3A;
}

/* ===== CONTACT INFO ===== */
.contact-info-list {
    list-style: none;
    padding: 0;
}

.contact-info-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
    font-size: 1rem;
}

.contact-info-list .contact-icon {
    width: 44px;
    height: 44px;
    background: #EFE7DC;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-list .contact-icon svg {
    width: 20px;
    height: 20px;
    stroke: #6B4F3A;
}

/* ===== SERVICE AREA TAGS ===== */
.area-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 16px 0;
}

.area-tag {
    display: inline-block;
    padding: 8px 18px;
    background: #EFE7DC;
    border-radius: 50px;
    font-size: 0.9rem;
    color: #3A2E2A;
    transition: background 0.25s, color 0.25s;
}

.area-tag:hover {
    background: #6B4F3A;
    color: #FFFFFF;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .sticky-quote-btn {
        bottom: 16px;
        right: 50%;
        transform: translateX(50%);
    }

    .sticky-quote-btn:hover {
        transform: translateX(50%) translateY(-2px);
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }

    .hero { min-height: 480px; }
    .hero h1 { font-size: 2.2rem; }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .grid-3, .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .header-top .container {
        justify-content: center;
        font-size: 0.82rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero { min-height: 420px; }
    .hero h1 { font-size: 1.8rem; }
    .hero-content { padding: 40px 0; }

    .section { padding: 50px 0; }

    .feedback-form-container {
        padding: 24px 18px;
    }

    .modal-content {
        padding: 28px 20px;
    }
}

/* ===== PROCESS STEPS ===== */
.process-steps {
    counter-reset: step;
    list-style: none;
    padding: 0;
}

.process-steps li {
    counter-increment: step;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
    padding: 20px;
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(58, 46, 42, 0.04);
}

.process-steps li::before {
    content: counter(step);
    min-width: 40px;
    height: 40px;
    background: #6B4F3A;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

/* ===== IMAGE WITH TEXT ===== */
.img-text-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin: 40px 0;
}

.img-text-row img {
    border-radius: 16px;
    width: 100%;
    height: 320px;
    object-fit: cover;
    box-shadow: 0 4px 20px rgba(58, 46, 42, 0.08);
}

.img-text-row.reverse {
    direction: rtl;
}

.img-text-row.reverse > * {
    direction: ltr;
}

@media (max-width: 767px) {
    .img-text-row {
        grid-template-columns: 1fr;
    }
    .img-text-row.reverse {
        direction: ltr;
    }
}

/* ===== NEIGHBORHOODS GRID ===== */
.neighborhoods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 10px;
    margin: 16px 0;
}

.neighborhoods-grid span {
    padding: 10px 16px;
    background: #FFFFFF;
    border-radius: 8px;
    font-size: 0.9rem;
    text-align: center;
    box-shadow: 0 1px 6px rgba(58, 46, 42, 0.05);
}
