/* ===== Aurora Wallpaper Installer - Main Stylesheet ===== */
/* Color Palette:
   Primary BG: #0B0B0C (matte black)
   Secondary BG: #1A1A1D (dark graphite)
   Light sections: #F4F4F2 (soft alabaster)
   Text on dark: #FFFFFF
   Text on light: #121212
   Accent: #3B82F6 (electric blue)
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;600;700&display=swap');

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

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #0B0B0C;
    color: #FFFFFF;
    line-height: 1.7;
    overflow-x: hidden;
}

a { color: #3B82F6; text-decoration: none; transition: color 0.3s ease; }
a:hover { color: #60A5FA; }

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

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

h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.3; }
h1 { font-size: 2.8rem; margin-bottom: 1rem; }
h2 { font-size: 2rem; margin-bottom: 0.8rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.6rem; }

/* ===== HEADER ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(11, 11, 12, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(59, 130, 246, 0.15);
    transition: background 0.3s ease;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 20px;
    background: #1A1A1D;
    font-size: 0.85rem;
}

.header-top a { color: #F4F4F2; }
.header-top a:hover { color: #3B82F6; }

.header-top-left,
.header-top-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-top-left svg,
.header-top-right svg {
    width: 16px;
    height: 16px;
    fill: #3B82F6;
    flex-shrink: 0;
    vertical-align: middle;
    margin-right: 5px;
}

.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo a {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo span.accent { color: #3B82F6; }

/* ===== NAVIGATION ===== */
.main-nav { display: flex; align-items: center; gap: 0; }

.main-nav > ul {
    display: flex;
    list-style: none;
    gap: 0;
    align-items: center;
}

.main-nav > ul > li { position: relative; }

.main-nav > ul > li > a {
    display: block;
    padding: 10px 18px;
    color: #F4F4F2;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.main-nav > ul > li > a:hover,
.main-nav > ul > li > a.active { color: #3B82F6; }

/* ===== DROPDOWN ===== */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #1A1A1D;
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 8px;
    min-width: 240px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    z-index: 100;
    list-style: none;
}

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

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

.main-nav > ul > li:hover > .dropdown-menu li {
    opacity: 1;
    transform: translateX(0);
}

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

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: #E0E0E0;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.dropdown-menu li a:hover {
    background: rgba(59, 130, 246, 0.1);
    color: #3B82F6;
    padding-left: 26px;
}

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

.mobile-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: #FFFFFF;
    margin: 5px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 50%;
    height: 100vh;
    background: #0B0B0C;
    z-index: 1050;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 1px solid rgba(59, 130, 246, 0.2);
}

.mobile-nav-overlay.open {
    transform: translateX(0);
}

.mobile-nav-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.6);
    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;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1060;
}

.mobile-nav-close svg {
    width: 24px;
    height: 24px;
    stroke: #FFFFFF;
    stroke-width: 2;
}

.mobile-nav-content {
    padding: 70px 24px 40px;
    display: flex;
    flex-direction: column;
}

.mobile-nav-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.mobile-nav-content > ul > li > a {
    display: block;
    padding: 14px 0;
    color: #FFFFFF;
    font-size: 1.1rem;
    font-weight: 500;
    text-align: left;
}

.mobile-nav-content .mobile-dropdown-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    color: #FFFFFF;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
    width: 100%;
    background: none;
    border: none;
}

.mobile-nav-content .mobile-dropdown-title svg {
    width: 18px;
    height: 18px;
    stroke: #3B82F6;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.mobile-nav-content .mobile-dropdown-title.open svg {
    transform: rotate(180deg);
}

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

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

.mobile-dropdown-items li a {
    display: block;
    padding: 8px 0;
    color: #B0B0B0;
    font-size: 0.95rem;
    text-align: left;
}

.mobile-dropdown-items li a:hover { color: #3B82F6; }

.mobile-nav-contact {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(59, 130, 246, 0.2);
}

.mobile-nav-contact a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    color: #F4F4F2;
    font-size: 0.95rem;
    text-align: left;
}

.mobile-nav-contact svg {
    width: 18px;
    height: 18px;
    fill: #3B82F6;
    flex-shrink: 0;
}

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

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

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(11,11,12,0.85) 0%, rgba(11,11,12,0.5) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-text h1 {
    font-size: 3.2rem;
    line-height: 1.15;
    margin-bottom: 1.2rem;
}

.hero-text h1 span { color: #3B82F6; }

.hero-text p {
    font-size: 1.15rem;
    color: #C0C0C0;
    margin-bottom: 2rem;
    max-width: 520px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 16px 36px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: #3B82F6;
    color: #FFFFFF;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
    background: #2563EB;
    box-shadow: 0 6px 30px rgba(59, 130, 246, 0.5);
    transform: translateY(-2px);
    color: #FFFFFF;
}

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

.btn-outline:hover {
    background: #3B82F6;
    color: #FFFFFF;
}

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

.section-dark { background: #0B0B0C; color: #FFFFFF; }
.section-graphite { background: #1A1A1D; color: #FFFFFF; }
.section-light { background: #F4F4F2; color: #121212; }

.section-light h2,
.section-light h3 { color: #121212; }

.section-light a { color: #2563EB; }

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

.section-header p {
    color: #A0A0A0;
    max-width: 600px;
    margin: 0.5rem auto 0;
    font-size: 1.05rem;
}

.section-light .section-header p { color: #555; }

/* ===== FORM STYLES ===== */
.feedback-form-container {
    background: #1A1A1D;
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 16px;
    padding: 36px;
    max-width: 500px;
}

.feedback-form-container h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #FFFFFF;
    text-align: center;
}

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

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

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #777; }

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #3B82F6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

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

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

.submit-btn {
    width: 100%;
    padding: 16px;
    background: #3B82F6;
    color: #FFFFFF;
    border: none;
    border-radius: 10px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.submit-btn:hover {
    background: #2563EB;
    box-shadow: 0 6px 30px rgba(59, 130, 246, 0.5);
    transform: translateY(-1px);
}

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

#form-success p {
    color: #4ADE80;
    font-size: 1.05rem;
}

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

.card {
    background: #1A1A1D;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.card:hover {
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-body { padding: 24px; }

.card-body h3 { font-size: 1.25rem; margin-bottom: 10px; }
.card-body p { color: #A0A0A0; font-size: 0.95rem; margin-bottom: 16px; }

.section-light .card {
    background: #FFFFFF;
    border-color: #E0E0E0;
}

.section-light .card-body p { color: #555; }

/* ===== SERVICE LIST ===== */
.service-list { list-style: none; padding: 0; }
.service-list li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    color: #C0C0C0;
}
.service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 18px;
    width: 10px;
    height: 10px;
    background: #3B82F6;
    border-radius: 50%;
}

.section-light .service-list li { color: #333; }

/* ===== PROCESS STEPS ===== */
.process-steps { counter-reset: step; list-style: none; padding: 0; }
.process-steps li {
    counter-increment: step;
    padding: 16px 0 16px 60px;
    position: relative;
    border-left: 2px solid rgba(59, 130, 246, 0.3);
    margin-left: 20px;
}
.process-steps li::before {
    content: counter(step);
    position: absolute;
    left: -18px;
    top: 14px;
    width: 34px;
    height: 34px;
    background: #3B82F6;
    color: #FFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

/* ===== CTA BLOCK ===== */
.cta-block {
    text-align: center;
    padding: 40px 20px;
    margin: 40px 0;
    background: linear-gradient(135deg, rgba(59,130,246,0.08) 0%, rgba(59,130,246,0.02) 100%);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: 16px;
}

.cta-block p {
    margin-bottom: 16px;
    font-size: 1.1rem;
    color: #C0C0C0;
}

.section-light .cta-block {
    background: linear-gradient(135deg, rgba(59,130,246,0.06) 0%, rgba(59,130,246,0.01) 100%);
    border-color: rgba(59, 130, 246, 0.2);
}

.section-light .cta-block p { color: #555; }

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

.faq-item {
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item:hover { border-color: rgba(59, 130, 246, 0.3); }

.faq-question {
    width: 100%;
    text-align: left;
    padding: 18px 24px;
    background: rgba(255,255,255,0.03);
    border: none;
    color: #FFFFFF;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Inter', sans-serif;
}

.faq-question svg {
    width: 20px;
    height: 20px;
    stroke: #3B82F6;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 12px;
}

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

.faq-answer {
    display: none;
    padding: 0 24px 18px;
    color: #A0A0A0;
    line-height: 1.7;
}

.faq-answer.open { display: block; }

.section-light .faq-item { border-color: #E0E0E0; }
.section-light .faq-question { color: #121212; background: rgba(0,0,0,0.02); }
.section-light .faq-answer { color: #555; }

/* ===== MAP ===== */
.map-container {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(59, 130, 246, 0.2);
    margin: 30px 0;
}

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

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

.area-link {
    display: block;
    padding: 16px 20px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    color: #F4F4F2;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
}

.area-link:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: #3B82F6;
    color: #3B82F6;
    transform: translateY(-2px);
}

.section-light .area-link {
    background: #FFFFFF;
    border-color: #E0E0E0;
    color: #121212;
}

.section-light .area-link:hover {
    border-color: #3B82F6;
    color: #3B82F6;
}

/* ===== NEIGHBORHOODS ===== */
.neighborhoods-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    padding: 0;
}

.neighborhoods-list li {
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.15);
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #D0D0D0;
}

.section-light .neighborhoods-list li {
    background: rgba(59, 130, 246, 0.06);
    border-color: rgba(59, 130, 246, 0.2);
    color: #333;
}

/* ===== CONTENT BLOCKS ===== */
.content-block { margin-bottom: 50px; }
.content-block p { margin-bottom: 1rem; }

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.content-image {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
}

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

/* ===== FOOTER ===== */
.site-footer {
    background: #0B0B0C;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 60px 0 30px;
}

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

.footer-brand p { color: #888; margin-top: 12px; font-size: 0.9rem; }

.footer-col h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #FFFFFF;
}

.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: #888; font-size: 0.9rem; }
.footer-col ul li a:hover { color: #3B82F6; }

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.06);
    color: #555;
    font-size: 0.85rem;
}

/* ===== STICKY QUOTE BUTTON ===== */
.sticky-quote-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 900;
    padding: 16px 32px;
    background: #3B82F6;
    color: #FFFFFF;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 6px 30px rgba(59, 130, 246, 0.4);
    transition: all 0.3s ease;
    animation: pulse-glow 2s infinite;
}

.sticky-quote-btn:hover {
    background: #2563EB;
    box-shadow: 0 8px 40px rgba(59, 130, 246, 0.6);
    transform: translateY(-2px);
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 6px 30px rgba(59, 130, 246, 0.4); }
    50% { box-shadow: 0 6px 40px rgba(59, 130, 246, 0.6); }
}

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

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

.modal-content {
    position: relative;
    max-width: 520px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255,255,255,0.1);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background 0.3s ease;
}

.modal-close:hover { background: rgba(255,255,255,0.2); }

.modal-close svg {
    width: 18px;
    height: 18px;
    stroke: #FFFFFF;
    stroke-width: 2;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
    padding: 140px 0 60px;
    background: #1A1A1D;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(59,130,246,0.08) 0%, transparent 60%);
}

.page-hero h1 { position: relative; z-index: 1; }

.page-hero .breadcrumb {
    position: relative;
    z-index: 1;
    color: #888;
    font-size: 0.9rem;
    margin-top: 12px;
}

.page-hero .breadcrumb a { color: #3B82F6; }

/* ===== IMAGE GALLERY ROW ===== */
.image-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.image-row img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.06);
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

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

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 22px;
    height: 22px;
    fill: #3B82F6;
}

.contact-info-text h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-info-text p { color: #A0A0A0; font-size: 0.95rem; }
.contact-info-text a { color: #3B82F6; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; gap: 40px; }
    .hero-text h1 { font-size: 2.6rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .two-col { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .header-top { display: none; }
    .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: auto; }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }
    .hero { min-height: auto; padding: 120px 0 60px; }
    .hero-text h1 { font-size: 2.2rem; }
    .hero-content { gap: 30px; }
    .feedback-form-container { padding: 24px; }
    .contact-form .form-row { grid-template-columns: 1fr; }
    .section { padding: 50px 0; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .image-row { grid-template-columns: 1fr; }
    .cards-grid { grid-template-columns: 1fr; }

    .sticky-quote-btn {
        bottom: 20px;
        right: 50%;
        transform: translateX(50%);
        padding: 14px 28px;
        font-size: 0.95rem;
    }

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

@media (max-width: 480px) {
    .hero-text h1 { font-size: 1.8rem; }
    .container { padding: 0 16px; }
    .areas-grid { grid-template-columns: 1fr 1fr; }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

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

/* Error message animation */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
