/* ============================================
   Wallpaper Install Washington Collective
   Main Stylesheet
   ============================================ */

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

:root {
    --primary-bg: #0A2540;
    --secondary-bg: #FFFFFF;
    --light-bg: #F2F4F7;
    --text-light: #FFFFFF;
    --text-dark: #1A2B3C;
    --accent: #2E6CF6;
    --accent-hover: #4A85FF;
    --shadow: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --radius: 10px;
    --radius-sm: 6px;
    --transition: 0.3s ease;
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --max-width: 1200px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    background: var(--secondary-bg);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--accent-hover);
}

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

h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    font-weight: 700;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; margin-bottom: 1rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* === HEADER === */
.site-header {
    background: var(--primary-bg);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
}

.header-top a {
    color: var(--text-light);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.header-top a:hover {
    color: var(--accent);
}

.header-top .contact-info {
    display: flex;
    gap: 24px;
    align-items: center;
}

.header-top .contact-info svg {
    width: 16px;
    height: 16px;
    fill: var(--accent);
    flex-shrink: 0;
}

.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}

.logo a {
    color: var(--text-light);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 40px;
    width: auto;
}

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

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

.main-nav > li > a {
    color: var(--text-light);
    padding: 10px 16px;
    font-size: 15px;
    font-weight: 500;
    display: block;
    border-radius: var(--radius-sm);
    transition: background var(--transition), color var(--transition);
}

.main-nav > li > a:hover,
.main-nav > li:hover > a {
    background: rgba(255,255,255,0.1);
    color: var(--accent);
}

/* === DROPDOWN === */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--secondary-bg);
    min-width: 260px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    padding: 8px 0;
    z-index: 100;
}

.main-nav > li:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
    opacity: 0;
    transform: translateX(-10px);
    animation: dropdownItemIn 0.3s ease forwards;
}

.dropdown-menu li:nth-child(1) { animation-delay: 0.05s; }
.dropdown-menu li:nth-child(2) { animation-delay: 0.1s; }
.dropdown-menu li:nth-child(3) { animation-delay: 0.15s; }
.dropdown-menu li:nth-child(4) { animation-delay: 0.2s; }
.dropdown-menu li:nth-child(5) { animation-delay: 0.25s; }
.dropdown-menu li:nth-child(6) { animation-delay: 0.3s; }
.dropdown-menu li:nth-child(7) { animation-delay: 0.35s; }
.dropdown-menu li:nth-child(8) { animation-delay: 0.4s; }
.dropdown-menu li:nth-child(9) { animation-delay: 0.45s; }
.dropdown-menu li:nth-child(10) { animation-delay: 0.5s; }
.dropdown-menu li:nth-child(11) { animation-delay: 0.55s; }

.main-nav > li:not(:hover) > .dropdown-menu li {
    opacity: 0;
    transform: translateX(-10px);
    animation: none;
}

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

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 500;
    transition: background var(--transition), color var(--transition);
}

.dropdown-menu a:hover {
    background: var(--light-bg);
    color: var(--accent);
}

/* === MOBILE HAMBURGER === */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1100;
}

.mobile-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--text-light);
    margin: 5px 0;
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

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

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* === MOBILE NAV OVERLAY === */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 50%;
    min-width: 280px;
    max-width: 400px;
    height: 100vh;
    height: 100dvh;
    background: var(--primary-bg);
    z-index: 1050;
    transition: right 0.35s ease;
    overflow-y: auto;
    padding: 70px 0 30px;
    box-shadow: -4px 0 20px rgba(0,0,0,0.3);
}

.mobile-nav-overlay.open {
    right: 0;
}

.mobile-nav-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    z-index: 1040;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-nav-backdrop.open {
    opacity: 1;
}

.mobile-nav-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1060;
}

.mobile-nav-close svg {
    width: 28px;
    height: 28px;
    stroke: var(--text-light);
    stroke-width: 2;
    fill: none;
}

.mobile-nav-list {
    list-style: none;
    padding: 0 24px;
}

.mobile-nav-list li {
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mobile-nav-list > li > a,
.mobile-nav-list > li > .mobile-dropdown-toggle {
    text-align: left;
}

.mobile-nav-list > li > a {
    display: block;
    padding: 14px 0;
    color: var(--text-light);
    font-size: 16px;
    font-weight: 600;
    text-align: left;
}

.mobile-nav-list > li > a:hover {
    color: var(--accent);
}

.mobile-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 0;
    color: var(--text-light);
    font-size: 16px;
    font-weight: 600;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.mobile-dropdown-toggle svg {
    width: 18px;
    height: 18px;
    stroke: var(--text-light);
    fill: none;
    transition: transform var(--transition);
}

.mobile-dropdown-toggle.active svg {
    transform: rotate(180deg);
}

.mobile-dropdown-submenu {
    display: none;
    padding: 0 0 10px 16px;
}

.mobile-dropdown-submenu.open {
    display: block;
}

.mobile-dropdown-submenu a {
    display: block;
    padding: 8px 0;
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    font-weight: 500;
    text-align: left;
}

.mobile-nav-list .mobile-cta-btn {
    display: block;
    margin: 16px 0;
    padding: 14px 24px;
    background: var(--accent);
    color: var(--text-light);
    border-radius: var(--radius);
    text-align: center;
    font-weight: 700;
    font-size: 15px;
}

.mobile-dropdown-submenu a:hover {
    color: var(--accent);
}

/* === HERO === */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--text-light);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,37,64,0.88) 0%, rgba(10,37,64,0.65) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 60px 20px;
    width: 100%;
}

.hero-content {
    flex: 1;
    max-width: 550px;
}

.hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.15;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 28px;
    opacity: 0.9;
    line-height: 1.7;
}

.hero-form {
    flex: 0 0 420px;
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
    text-decoration: none;
    min-height: 56px;
}

.btn:hover {
    transform: scale(1.03);
    filter: brightness(1.1);
}

.btn-primary {
    background: var(--accent);
    color: var(--text-light);
    box-shadow: 0 4px 16px rgba(46,108,246,0.35);
}

.btn-primary:hover {
    color: var(--text-light);
    box-shadow: 0 6px 24px rgba(46,108,246,0.45);
}

.btn-outline {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}

.btn-outline:hover {
    background: var(--accent);
    color: var(--text-light);
}

.btn-white {
    background: var(--secondary-bg);
    color: var(--primary-bg);
    box-shadow: var(--shadow-sm);
}

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

.section-dark {
    background: var(--primary-bg);
    color: var(--text-light);
}

.section-light {
    background: var(--light-bg);
}

.section-white {
    background: var(--secondary-bg);
}

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

.section-title h2 {
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.section-title p {
    font-size: 1.1rem;
    opacity: 0.8;
    max-width: 650px;
    margin: 0 auto;
}

/* === GRID LAYOUTS === */
.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;
}

/* === CARDS === */
.card {
    background: var(--secondary-bg);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.card-body {
    padding: 24px;
}

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

.card-body p {
    color: #5a6a7a;
    font-size: 15px;
    margin-bottom: 16px;
}

.card-link {
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.card-link::after {
    content: '\2192';
}

/* === FORM STYLES === */
.feedback-form-container {
    background: var(--secondary-bg);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
    color: var(--text-dark);
}

.feedback-form-container h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    text-align: center;
    color: var(--primary-bg);
}

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

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

.form-row .form-group {
    margin-bottom: 0;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e4ea;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-family: var(--font-main);
    transition: border-color var(--transition), box-shadow var(--transition);
    background: #f8f9fb;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(46,108,246,0.15);
    background: var(--secondary-bg);
}

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

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

.submit-btn {
    width: 100%;
    padding: 16px 36px;
    background: var(--accent);
    color: var(--text-light);
    border: none;
    border-radius: var(--radius);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
    min-height: 56px;
    box-shadow: 0 4px 16px rgba(46,108,246,0.35);
}

.submit-btn:hover {
    transform: scale(1.02);
    filter: brightness(1.1);
    box-shadow: 0 6px 24px rgba(46,108,246,0.45);
}

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

#form-success p {
    font-size: 1.1rem;
    color: #2ecc71;
    font-weight: 600;
}

/* === CTA BLOCKS === */
.cta-block {
    text-align: center;
    padding: 40px 30px;
    margin: 40px 0;
    background: var(--primary-bg);
    border-radius: var(--radius);
    color: var(--text-light);
}

.cta-block h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.cta-block p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.cta-inline {
    margin: 30px 0;
    padding: 24px;
    background: var(--light-bg);
    border-radius: var(--radius);
    text-align: center;
    border-left: 4px solid var(--accent);
}

.cta-inline p {
    margin-bottom: 16px;
    font-weight: 500;
}

/* === MAP === */
.map-container {
    width: 100%;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

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

/* === SERVICE ICON CARDS === */
.service-icon-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--secondary-bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}

.service-icon-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.service-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: rgba(46,108,246,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--accent);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* === FEATURES LIST === */
.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    border-bottom: 1px solid #eee;
}

.features-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 16px;
    width: 18px;
    height: 18px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0.2;
}

.features-list li::after {
    content: '\2713';
    position: absolute;
    left: 3px;
    top: 13px;
    font-size: 12px;
    color: var(--accent);
    font-weight: 700;
}

/* === IMAGE WITH TEXT === */
.img-text-row {
    display: flex;
    align-items: center;
    gap: 50px;
}

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

.img-text-row .img-col {
    flex: 0 0 45%;
}

.img-text-row .img-col img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.img-text-row .text-col {
    flex: 1;
}

/* === AREAS GRID === */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}

.area-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    background: var(--secondary-bg);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    font-weight: 600;
    color: var(--text-dark);
    transition: transform var(--transition), box-shadow var(--transition);
}

.area-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    color: var(--accent);
}

.area-card svg {
    width: 20px;
    height: 20px;
    stroke: var(--accent);
    fill: none;
    flex-shrink: 0;
}

/* === FAQ === */
.faq-item {
    background: var(--secondary-bg);
    border-radius: var(--radius);
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    padding: 20px 24px;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background var(--transition);
}

.faq-question:hover {
    background: var(--light-bg);
}

.faq-question svg {
    width: 20px;
    height: 20px;
    stroke: var(--accent);
    fill: none;
    transition: transform var(--transition);
    flex-shrink: 0;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

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

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

.faq-answer p {
    color: #5a6a7a;
    line-height: 1.7;
}

/* === TESTIMONIALS === */
.testimonial-card {
    background: var(--secondary-bg);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    font-size: 4rem;
    color: var(--accent);
    opacity: 0.2;
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 16px;
    color: #5a6a7a;
}

.testimonial-author {
    font-weight: 700;
    color: var(--text-dark);
}

.stars {
    color: #f5a623;
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

/* === FOOTER === */
.site-footer {
    background: var(--primary-bg);
    color: var(--text-light);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-light);
}

.footer-col p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    line-height: 1.8;
}

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

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

.footer-col ul a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    transition: color var(--transition);
}

.footer-col ul a:hover {
    color: var(--accent);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

.footer-contact-item svg {
    width: 18px;
    height: 18px;
    stroke: var(--accent);
    fill: none;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

/* === STICKY QUOTE BUTTON === */
.sticky-quote-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 900;
    padding: 16px 28px;
    background: var(--accent);
    color: var(--text-light);
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 6px 24px rgba(46,108,246,0.45);
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.sticky-quote-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 32px rgba(46,108,246,0.55);
}

.sticky-quote-btn svg {
    width: 20px;
    height: 20px;
    fill: var(--text-light);
}

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

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

.modal-content {
    background: var(--secondary-bg);
    border-radius: var(--radius);
    padding: 0;
    max-width: 520px;
    width: 100%;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalIn 0.3s ease;
}

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

.modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 10;
}

.modal-close svg {
    width: 24px;
    height: 24px;
    stroke: #999;
    stroke-width: 2;
    fill: none;
}

.modal-close:hover svg {
    stroke: var(--text-dark);
}

.modal-content .feedback-form-container {
    box-shadow: none;
}

/* === BREADCRUMB === */
.breadcrumb {
    padding: 16px 0;
    font-size: 14px;
    color: #8a95a5;
}

.breadcrumb a {
    color: var(--accent);
}

.breadcrumb span {
    margin: 0 8px;
    color: #ccc;
}

/* === CONTENT PAGE === */
.page-hero {
    background: var(--primary-bg);
    color: var(--text-light);
    padding: 60px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.4rem;
    margin-bottom: 12px;
}

.page-hero p {
    font-size: 1.1rem;
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto;
}

.content-section {
    padding: 60px 0;
}

.content-section h2 {
    color: var(--primary-bg);
    margin-bottom: 16px;
}

.content-section p {
    margin-bottom: 16px;
    color: #4a5568;
    line-height: 1.8;
}

.content-section ul,
.content-section ol {
    margin: 16px 0;
    padding-left: 24px;
    color: #4a5568;
}

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

/* === CONTACT PAGE === */
.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--accent);
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-detail-item h3 {
    margin: 0 0 4px;
    font-size: 16px;
    color: var(--text-dark);
}

.contact-detail-item a,
.contact-detail-item p {
    color: #5a6a7a;
    font-size: 15px;
    margin: 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-info-block {
    margin-bottom: 24px;
}

.contact-info-block h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    color: var(--primary-bg);
}

.contact-info-block h3 svg {
    width: 22px;
    height: 22px;
    stroke: var(--accent);
    fill: none;
}

.contact-info-block p,
.contact-info-block a {
    color: #5a6a7a;
    font-size: 15px;
}

/* === GALLERY === */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: var(--radius);
    transition: transform var(--transition);
}

.gallery-grid img:hover {
    transform: scale(1.03);
}

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

.neighborhood-tag {
    padding: 10px 16px;
    background: var(--light-bg);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    text-align: center;
    border: 1px solid #e0e4ea;
}

/* === ANIMATION === */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* === RESPONSIVE === */
@media (max-width: 992px) {
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .hero .container { flex-direction: column; text-align: center; }
    .hero-form { flex: none; width: 100%; max-width: 480px; }
    .hero-content { max-width: 100%; }
    .img-text-row { flex-direction: column; }
    .img-text-row.reverse { flex-direction: column; }
    .img-text-row .img-col { flex: none; width: 100%; }
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }
    .section { padding: 50px 0; }
    .hero { min-height: auto; }
    .hero-content h1 { font-size: 2rem; }
    .grid-2 { grid-template-columns: 1fr; }
    .grid-3 { grid-template-columns: 1fr; }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .form-row { grid-template-columns: 1fr; }

    /* Mobile nav */
    .main-nav { display: none; }
    .mobile-toggle { display: block; }
    .mobile-nav-overlay { display: block; }
    .mobile-nav-backdrop { display: block; pointer-events: none; }
    .mobile-nav-backdrop.open { pointer-events: all; }

    .header-top .contact-info { gap: 12px; font-size: 12px; }

    /* Sticky button mobile */
    .sticky-quote-btn {
        bottom: 16px;
        right: 50%;
        transform: translateX(50%);
        font-size: 14px;
        padding: 14px 24px;
    }
    .sticky-quote-btn:hover {
        transform: translateX(50%) scale(1.05);
    }

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

@media (max-width: 480px) {
    .hero-content h1 { font-size: 1.7rem; }
    .grid-4 { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .areas-grid { grid-template-columns: 1fr; }
}
