/* ============================================
   Loop Wallpaper Installation — Main Stylesheet
   Executive Luxury Dark Theme
   ============================================ */

/* --- CSS Variables --- */
:root {
    --bg-primary: #101010;
    --bg-secondary: #1F1F1F;
    --bg-light: #F1EEE8;
    --text-light: #FFFFFF;
    --text-dark: #1A1A1A;
    --accent: #B08A5A;
    --accent-hover: #9B774A;
    --font-heading: 'Manrope', sans-serif;
    --font-body: 'Inter', sans-serif;
    --btn-height: 56px;
    --btn-radius: 8px;
    --max-width: 1280px;
    --section-padding: 100px 0;
    --transition: all 0.3s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-light);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

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

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-light);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); margin-bottom: 24px; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); margin-bottom: 20px; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); margin-bottom: 16px; }

p {
    margin-bottom: 16px;
    color: rgba(255,255,255,0.85);
}

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

/* --- Header --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(16, 16, 16, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(176, 138, 90, 0.15);
    transition: var(--transition);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 16px 24px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-light);
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--accent);
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 0.9rem;
}

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

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

/* --- Navigation --- */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-list li {
    position: relative;
}

.nav-list li > a {
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

.nav-list li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-list li > a:hover::after {
    width: 100%;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown > a::before {
    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;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: var(--bg-secondary);
    border: 1px solid rgba(176, 138, 90, 0.2);
    border-radius: 8px;
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

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

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    transition: var(--transition);
}

.dropdown-menu a:hover {
    background: rgba(176, 138, 90, 0.1);
    color: var(--accent);
    padding-left: 24px;
}

/* --- Mobile Menu --- */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1100;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--text-light);
    margin: 6px 0;
    transition: var(--transition);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: -50%;
    width: 50%;
    height: 100vh;
    background: var(--bg-secondary);
    z-index: 1050;
    padding: 80px 30px 40px;
    overflow-y: auto;
    transition: right 0.4s ease;
    border-left: 1px solid rgba(176, 138, 90, 0.2);
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.mobile-nav-close:hover {
    background: rgba(176, 138, 90, 0.2);
    color: var(--accent);
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

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

.mobile-nav-list li a {
    display: block;
    padding: 14px 0;
    color: var(--text-light);
    font-size: 1.05rem;
    font-weight: 500;
}

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

.mobile-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.mobile-dropdown-menu {
    display: none;
    padding-left: 16px;
    padding-bottom: 8px;
}

.mobile-dropdown-menu.active {
    display: block;
}

.mobile-dropdown-menu a {
    padding: 10px 0;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}

.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 1040;
}

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

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(16,16,16,0.88) 0%, rgba(16,16,16,0.65) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 60px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-text h1 span {
    color: var(--accent);
}

.hero-text p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 30px;
    max-width: 540px;
}

.trust-badges {
    display: flex;
    gap: 24px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}

.trust-badge svg {
    width: 20px;
    height: 20px;
    fill: var(--accent);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: var(--btn-height);
    padding: 0 32px;
    border-radius: var(--btn-radius);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-decoration: none;
    gap: 8px;
}

.btn-primary {
    background: var(--accent);
    color: var(--bg-primary);
}

.btn-primary:hover {
    background: var(--accent-hover);
    color: var(--bg-primary);
    box-shadow: 0 8px 30px rgba(176, 138, 90, 0.3);
}

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

.btn-outline:hover {
    background: var(--accent);
    color: var(--bg-primary);
}

.btn-white {
    background: var(--text-light);
    color: var(--bg-primary);
}

.btn-white:hover {
    background: var(--bg-light);
    color: var(--bg-primary);
}

/* --- Sections --- */
.section {
    padding: var(--section-padding);
}

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

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

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

.section-light h2,
.section-light h3 {
    color: var(--text-dark);
}

.section-light p {
    color: rgba(26, 26, 26, 0.8);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header .accent-line {
    width: 60px;
    height: 3px;
    background: var(--accent);
    margin: 0 auto 20px;
}

.section-header p {
    font-size: 1.1rem;
}

/* --- Service Cards --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-secondary);
    border: 1px solid rgba(176, 138, 90, 0.15);
    border-radius: 12px;
    padding: 40px 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(176, 138, 90, 0.4);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card-icon {
    width: 56px;
    height: 56px;
    background: rgba(176, 138, 90, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-card-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--accent);
    fill: none;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 20px;
}

.service-card .card-link {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.service-card .card-link:hover {
    gap: 10px;
}

/* --- Portfolio / Gallery --- */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.portfolio-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.portfolio-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(16,16,16,0.8), transparent);
    pointer-events: none;
}

/* --- Contact Form --- */
.feedback-form-container {
    background: var(--bg-secondary);
    border: 1px solid rgba(176, 138, 90, 0.2);
    border-radius: 16px;
    padding: 40px;
    max-width: 560px;
}

.feedback-form-container h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
    color: var(--text-light);
}

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

.contact-form .form-group {
    position: relative;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
    outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--accent);
    background: rgba(176, 138, 90, 0.05);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255,255,255,0.4);
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
    margin-bottom: 16px;
}

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

.submit-btn {
    width: 100%;
    height: var(--btn-height);
    background: var(--accent);
    color: var(--bg-primary);
    border: none;
    border-radius: var(--btn-radius);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: var(--transition);
}

.submit-btn:hover {
    background: var(--accent-hover);
    box-shadow: 0 8px 30px rgba(176, 138, 90, 0.3);
}

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

#form-success p {
    color: var(--accent);
    font-size: 1.1rem;
    font-weight: 500;
}

/* --- Map --- */
.map-container {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(176, 138, 90, 0.2);
}

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

/* --- Footer --- */
.site-footer {
    background: var(--bg-secondary);
    border-top: 1px solid rgba(176, 138, 90, 0.15);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.footer-brand .logo {
    font-size: 1.6rem;
    margin-bottom: 16px;
    display: block;
}

.footer-brand p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    max-width: 300px;
}

.footer-col h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--accent);
}

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

.footer-col ul li a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

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

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

.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.08);
    margin-top: 50px;
    padding-top: 24px;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
    max-width: var(--max-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

/* --- Sticky Quote Button --- */
.sticky-quote-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 900;
    background: var(--accent);
    color: var(--bg-primary);
    height: var(--btn-height);
    padding: 0 28px;
    border-radius: var(--btn-radius);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(176, 138, 90, 0.4);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.sticky-quote-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(176, 138, 90, 0.5);
}

/* --- Modal --- */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.75);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

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

.modal-content {
    position: relative;
    max-width: 580px;
    width: 100%;
    animation: modalFadeIn 0.3s ease;
}

.modal-close {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 36px;
    height: 36px;
    background: var(--bg-primary);
    border: 1px solid rgba(176, 138, 90, 0.3);
    border-radius: 50%;
    color: var(--text-light);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
}

.modal-close:hover {
    background: var(--accent);
    color: var(--bg-primary);
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

/* --- About Page --- */
.about-hero {
    padding: 160px 0 80px;
    background: var(--bg-secondary);
}

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

.about-image {
    border-radius: 12px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Stats --- */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item .stat-number {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--accent);
    display: block;
    margin-bottom: 8px;
}

.stat-item .stat-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

/* --- FAQ --- */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0;
}

.faq-question {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.faq-question::after {
    content: '+';
    font-size: 1.4rem;
    color: var(--accent);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-top: 16px;
}

.faq-answer p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* --- CTA Sections --- */
.cta-section {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    border: 1px solid rgba(176, 138, 90, 0.2);
    border-radius: 16px;
    padding: 60px;
    text-align: center;
    margin: 40px 0;
}

.cta-section h2 {
    margin-bottom: 16px;
}

.cta-section p {
    max-width: 600px;
    margin: 0 auto 30px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- Breadcrumb --- */
.breadcrumb {
    padding: 120px 0 20px;
    font-size: 0.85rem;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb-list li a {
    color: rgba(255,255,255,0.6);
}

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

.breadcrumb-list li::after {
    content: '/';
    color: rgba(255,255,255,0.3);
}

.breadcrumb-list li:last-child::after {
    display: none;
}

.breadcrumb-list li:last-child a,
.breadcrumb-list li:last-child span {
    color: var(--accent);
}

/* --- Content Pages --- */
.page-hero {
    padding: 140px 0 60px;
    background: var(--bg-secondary);
    text-align: center;
}

.page-hero h1 {
    margin-bottom: 16px;
}

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

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

.content-section h2 {
    margin-top: 40px;
    margin-bottom: 16px;
}

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

.content-section ul li,
.content-section ol li {
    margin-bottom: 10px;
    color: rgba(255,255,255,0.8);
    position: relative;
    padding-left: 20px;
}

.content-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
}

.content-section ol {
    counter-reset: step-counter;
}

.content-section ol li {
    counter-increment: step-counter;
}

.content-section ol li::before {
    content: counter(step-counter) '.';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

/* --- Areas Grid --- */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.area-card {
    background: var(--bg-secondary);
    border: 1px solid rgba(176, 138, 90, 0.15);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
}

.area-card:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
}

.area-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.area-card p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

/* --- Contact Page --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-info-item .icon {
    width: 48px;
    height: 48px;
    background: rgba(176, 138, 90, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.contact-info-item h3 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.contact-info-item p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 0;
}

/* --- Image with text sections --- */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.split-section.reverse {
    direction: rtl;
}

.split-section.reverse > * {
    direction: ltr;
}

.split-image {
    border-radius: 12px;
    overflow: hidden;
}

.split-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

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

.neighborhood-tag {
    background: rgba(176, 138, 90, 0.08);
    border: 1px solid rgba(176, 138, 90, 0.15);
    border-radius: 8px;
    padding: 12px 16px;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
}

/* --- Light Section Overrides --- */
.section-light .feedback-form-container {
    background: #FFFFFF;
    border-color: rgba(26, 26, 26, 0.1);
}

.section-light .contact-form input,
.section-light .contact-form textarea {
    background: rgba(0,0,0,0.03);
    border-color: rgba(26, 26, 26, 0.15);
    color: var(--text-dark);
}

.section-light .contact-form input::placeholder,
.section-light .contact-form textarea::placeholder {
    color: rgba(26, 26, 26, 0.4);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

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

    .split-section {
        grid-template-columns: 1fr;
    }

    .split-section.reverse {
        direction: ltr;
    }

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

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

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }

    .nav-list {
        display: none;
    }

    .header-contact {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .mobile-nav {
        display: block;
    }

    .hero {
        min-height: auto;
        padding: 120px 0 60px;
    }

    .hero-content {
        padding: 40px 24px;
    }

    .feedback-form-container {
        padding: 30px 20px;
    }

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

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

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

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .cta-section {
        padding: 40px 24px;
    }

    .sticky-quote-btn {
        bottom: 20px;
        right: 50%;
        transform: translateX(50%);
    }

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

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

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

@media (max-width: 480px) {
    .areas-grid {
        grid-template-columns: 1fr;
    }

    .trust-badges {
        flex-direction: column;
        gap: 12px;
    }
}

/* --- Animations --- */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

.slide-up {
    animation: slideUp 0.6s ease forwards;
}
