/* ===========================
   WATER DAMAGE RESTORATION 365
   Light / Clean Design
   =========================== */

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --blue: #1a6fc4;
    --blue-dark: #145aa0;
    --blue-light: #dbeafe;
    --teal: #0ea5e9;
    --dark: #1e2a3a;
    --charcoal: #374151;
    --white: #ffffff;
    --off-white: #f8fafc;
    --light-gray: #f1f5f9;
    --text-gray: #6b7280;
    --border: #e5e7eb;
    --radius: 10px;
    --shadow: 0 2px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 6px 32px rgba(0,0,0,0.12);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    color: var(--charcoal);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ---- HEADER ---- */
.site-header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    gap: 16px;
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-icon { font-size: 26px; }
.logo-text { font-size: 20px; font-weight: 800; color: var(--dark); letter-spacing: -0.5px; }
.logo-accent { color: var(--blue); }
.header-contact { display: flex; flex-direction: column; align-items: flex-end; gap: 2px; }
.header-tagline { color: var(--text-gray); font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }
.header-phone {
    color: var(--blue);
    font-size: 22px;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: -0.5px;
    transition: color 0.2s;
}
.header-phone:hover { color: var(--blue-dark); }

/* ---- HERO ---- */
.hero {
    position: relative;
    background: linear-gradient(135deg, #0f2a52 0%, #1a4a8a 60%, #1d6fc4 100%);
    min-height: 540px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('hero.png') center/cover no-repeat;
    opacity: 0.18;
    z-index: 0;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(10,30,70,0.6) 0%, rgba(10,30,70,0.2) 100%);
    z-index: 1;
}
.hero-content { position: relative; z-index: 2; padding: 80px 20px; text-align: center; }
.hero-location {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 5px 16px;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.hero-title {
    font-size: clamp(34px, 6vw, 60px);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 18px;
    letter-spacing: -1px;
}
.hero-title .highlight { color: #7dd3fc; }
.hero-subtitle {
    font-size: clamp(16px, 2.2vw, 19px);
    color: rgba(255,255,255,0.85);
    margin-bottom: 32px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}
.hero-note { color: rgba(255,255,255,0.6); font-size: 13px; margin-top: 14px; }

/* ---- CTA BUTTONS ---- */
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--blue);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    border-radius: 6px;
    transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
    cursor: pointer;
    border: none;
}
.cta-btn--large { font-size: clamp(18px, 2.8vw, 24px); padding: 16px 40px; box-shadow: 0 4px 24px rgba(26,111,196,0.4); }
.cta-btn--blue { font-size: 17px; padding: 13px 28px; box-shadow: 0 3px 14px rgba(26,111,196,0.3); }
.cta-btn--white { background: var(--white); color: var(--blue); border: 2px solid var(--white); }
.cta-btn--outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.7); }
.cta-btn:hover { transform: translateY(-2px); background: var(--blue-dark); box-shadow: 0 8px 28px rgba(26,111,196,0.45); }
.cta-btn--white:hover { background: var(--blue-light); color: var(--blue-dark); border-color: var(--blue-light); transform: translateY(-2px); }
.cta-icon { font-size: 1em; }

@keyframes pulse-ring {
    0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.5); }
    70% { box-shadow: 0 0 0 18px rgba(255,255,255,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}
.pulse-btn { animation: pulse-ring 2.5s infinite; }

/* ---- TRUST BAR ---- */
.trust-section {
    background: var(--white);
    padding: 28px 0;
    border-bottom: 1px solid var(--border);
}
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.trust-item { display: flex; align-items: center; gap: 12px; }
.trust-icon { font-size: 26px; flex-shrink: 0; }
.trust-label { font-size: 14px; color: var(--text-gray); line-height: 1.3; }
.trust-label strong { display: block; color: var(--dark); font-size: 14px; font-weight: 700; }

/* ---- SERVICES SECTION ---- */
.services-section { padding: 72px 0; background: var(--off-white); }
.services-inner { display: grid; grid-template-columns: 1fr 360px; gap: 56px; align-items: start; }
.section-eyebrow { color: var(--blue); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
.section-eyebrow--red { color: #dc2626; }
.section-eyebrow--white { color: rgba(255,255,255,0.7); }
.section-title { font-size: clamp(24px, 3.5vw, 36px); font-weight: 800; color: var(--dark); line-height: 1.2; margin-bottom: 14px; letter-spacing: -0.3px; }
.section-title--white { color: var(--white); }
.section-desc { color: var(--text-gray); font-size: 15px; margin-bottom: 28px; line-height: 1.7; }
.service-type-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 9px 14px; }
.service-type-item { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--charcoal); font-weight: 500; }
.check { color: var(--blue); font-weight: 700; font-size: 15px; flex-shrink: 0; }
.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    margin-bottom: 18px;
}
.service-card h3 { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 16px; }
.service-card ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.service-card ul li { display: flex; align-items: center; gap: 9px; font-size: 14px; color: var(--charcoal); }
.service-card ul li::before { content: '✓'; color: var(--blue); font-weight: 700; flex-shrink: 0; }

/* ---- SERVICE TILES ---- */
.service-tiles-section { padding: 72px 0; background: var(--white); }
.service-tiles-section .section-title,.service-tiles-section .section-eyebrow { text-align: center; }
.service-tiles-section .section-desc { text-align: center; max-width: 600px; margin: 0 auto 44px; }
.tiles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.tile-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 24px;
    border: 1px solid var(--border);
    border-top: 3px solid var(--blue);
    text-align: center;
    transition: transform 0.25s, box-shadow 0.25s;
}
.tile-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.tile-icon { font-size: 44px; margin-bottom: 16px; }
.tile-card h3 { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.tile-card p { font-size: 14px; color: var(--text-gray); line-height: 1.7; }

/* ---- WHY SECTION ---- */
.why-section { background: var(--off-white); padding: 72px 0; text-align: center; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 44px; }
.why-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 20px;
    transition: transform 0.25s, box-shadow 0.25s;
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.why-icon { font-size: 36px; margin-bottom: 14px; }
.why-card h3 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.why-card p { font-size: 14px; color: var(--text-gray); line-height: 1.7; }

/* ---- HOW IT WORKS ---- */
.how-section { padding: 72px 0; background: var(--white); text-align: center; }
.steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    margin: 44px auto 36px;
    max-width: 860px;
}
.step { flex: 1; display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 16px; }
.step-number {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--blue);
    color: var(--white);
    font-size: 24px;
    font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
    box-shadow: 0 3px 14px rgba(26,111,196,0.3);
    flex-shrink: 0;
}
.step-connector { width: 80px; height: 2px; background: var(--border); margin-top: 28px; flex-shrink: 0; }
.step-content h3 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.step-content p { font-size: 14px; color: var(--text-gray); line-height: 1.7; }
.how-cta { margin-top: 8px; }

/* ---- URGENCY SECTION ---- */
.urgency-section { padding: 72px 0; background: var(--off-white); }
.urgency-section .section-title,.urgency-section .section-eyebrow { text-align: center; }
.urgency-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 44px; }
.urgency-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 24px;
    border: 1px solid var(--border);
    border-top: 3px solid #dc2626;
    text-align: center;
    transition: transform 0.25s, box-shadow 0.25s;
}
.urgency-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.urgency-icon { font-size: 40px; margin-bottom: 14px; }
.urgency-card h3 { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.urgency-card p { font-size: 14px; color: var(--text-gray); line-height: 1.7; }

/* ---- STATS SECTION ---- */
.stats-section { background: var(--blue); padding: 48px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-number { font-size: clamp(28px, 4.5vw, 46px); font-weight: 900; color: var(--white); line-height: 1; margin-bottom: 6px; }
.stat-label { font-size: 13px; color: rgba(255,255,255,0.8); font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }

/* ---- TESTIMONIALS ---- */
.testimonials-section { padding: 72px 0; background: var(--white); text-align: center; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 44px; }
.testimonial-card {
    background: var(--off-white);
    border-radius: var(--radius);
    padding: 28px;
    border: 1px solid var(--border);
    text-align: left;
    transition: transform 0.25s, box-shadow 0.25s;
}
.testimonial-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.stars { color: #f59e0b; font-size: 18px; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-card p { color: var(--charcoal); font-size: 14px; line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.reviewer { color: var(--text-gray); font-size: 13px; font-weight: 600; }

/* ---- LOCATION SECTION ---- */
.location-section {
    background: var(--blue);
    padding: 72px 0;
    text-align: center;
}
.location-desc { color: rgba(255,255,255,0.8); font-size: 16px; max-width: 600px; margin: 0 auto 44px; line-height: 1.7; }
.location-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 44px; }
.location-card {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius);
    padding: 32px 24px;
    transition: background 0.25s;
}
.location-card:hover { background: rgba(255,255,255,0.18); }
.location-icon { font-size: 40px; margin-bottom: 14px; }
.location-card h3 { font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.location-card p { font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.7; }
.location-cta { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.location-note { color: rgba(255,255,255,0.75); font-size: 13px; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }

/* ---- FOOTER CTA ---- */
.footer-cta-section { background: var(--off-white); padding: 64px 0; text-align: center; border-top: 1px solid var(--border); }
.footer-cta-location { color: var(--blue); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 12px; }
.footer-cta-title { font-size: clamp(28px, 4vw, 44px); font-weight: 800; color: var(--dark); line-height: 1.15; margin-bottom: 14px; }
.footer-cta-sub { color: var(--text-gray); font-size: 16px; margin-bottom: 32px; max-width: 480px; margin-left: auto; margin-right: auto; }

/* ---- SITE FOOTER ---- */
.site-footer { background: var(--dark); padding: 36px 0; }
.footer-inner { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 18px; }
.footer-logo { display: flex; align-items: center; gap: 8px; }
.footer-logo .logo-text { color: var(--white); }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; justify-content: center; }
.footer-links a { color: #9ca3af; text-decoration: none; font-size: 13px; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-disclaimer { color: #6b7280; font-size: 12px; max-width: 680px; line-height: 1.7; text-align: center; }
.footer-disclaimer a { color: #9ca3af; text-decoration: underline; }
.footer-copy { color: #4b5563; font-size: 12px; }

/* ---- MODALS ---- */
.modal { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.55); z-index: 9999; align-items: center; justify-content: center; padding: 20px; }
.modal:target { display: flex; }
.modal-box {
    background: var(--white);
    border-radius: 12px;
    padding: 36px;
    max-width: 620px;
    width: 100%;
    position: relative;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 16px 60px rgba(0,0,0,0.3);
}
.modal-box h2 { font-size: 22px; font-weight: 800; color: var(--dark); margin-bottom: 6px; }
.modal-box > p:first-of-type { color: #9ca3af; font-size: 12px; margin-bottom: 14px; }
.modal-box h3 { font-size: 15px; font-weight: 700; color: var(--dark); margin: 18px 0 7px; }
.modal-box p { color: var(--text-gray); font-size: 14px; line-height: 1.7; margin-bottom: 10px; }
.modal-box a { color: var(--blue); }
.modal-close { position: absolute; top: 14px; right: 18px; font-size: 18px; color: #9ca3af; text-decoration: none; width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: background 0.2s, color 0.2s; }
.modal-close:hover { background: var(--off-white); color: var(--dark); }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
    .services-inner { grid-template-columns: 1fr; gap: 36px; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .location-grid { grid-template-columns: repeat(2, 1fr); }
    .urgency-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .tiles-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: 1fr; }
    .location-grid { grid-template-columns: 1fr; }
    .steps { flex-direction: column; align-items: center; gap: 20px; }
    .step-connector { width: 2px; height: 36px; margin-top: 0; }
    .service-type-grid { grid-template-columns: repeat(2, 1fr); }
    .header-phone { font-size: 18px; }
    .logo-text { font-size: 17px; }
    .modal-box { padding: 24px 18px; }
    .cta-btn--large { font-size: 17px; padding: 14px 26px; }
    .tiles-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .trust-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =============================================
   ENHANCED MOBILE STYLES (500px and below)
   ============================================= */

/* ---- HEADER MOBILE ---- */
@media (max-width: 560px) {
    .header-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
        padding: 12px 16px;
    }
    .header-contact {
        align-items: center;
    }
    .header-phone {
        font-size: 20px;
    }
    .logo-text { font-size: 16px; }
    .logo-icon { font-size: 22px; }

    /* ---- HERO MOBILE ---- */
    .hero { min-height: auto; }
    .hero-content { padding: 52px 16px 44px; }
    .hero-title { font-size: 28px; letter-spacing: -0.5px; }
    .hero-subtitle { font-size: 15px; margin-bottom: 24px; }
    .hero-note { font-size: 12px; }
    .hero-location { font-size: 11px; padding: 4px 14px; margin-bottom: 14px; }
    .cta-btn--large { font-size: 17px; padding: 14px 24px; width: 100%; justify-content: center; }

    /* ---- TRUST BAR MOBILE ---- */
    .trust-section { padding: 20px 0; }
    .trust-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }
    .trust-item { gap: 10px; }
    .trust-icon { font-size: 22px; }
    .trust-label { font-size: 13px; }
    .trust-label strong { font-size: 13px; }

    /* ---- SECTIONS GENERAL ---- */
    .services-section,
    .service-tiles-section,
    .why-section,
    .how-section,
    .urgency-section,
    .testimonials-section,
    .location-section,
    .footer-cta-section { padding: 48px 0; }

    .section-title { font-size: 22px; }
    .section-desc { font-size: 14px; }

    /* ---- SERVICES ---- */
    .services-section { padding: 44px 0; }
    .services-inner { grid-template-columns: 1fr; gap: 28px; }
    .service-type-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
    .service-type-item { font-size: 13px; }
    .service-card { padding: 22px 18px; }
    .service-card h3 { font-size: 16px; }
    .service-card ul li { font-size: 13px; }
    .cta-btn--blue { font-size: 16px; padding: 13px 24px; width: 100%; justify-content: center; }

    /* ---- SERVICE TILES ---- */
    .tiles-grid { grid-template-columns: 1fr; gap: 16px; }
    .tile-card { padding: 24px 18px; }
    .tile-icon { font-size: 36px; margin-bottom: 12px; }
    .tile-card h3 { font-size: 17px; }
    .tile-card p { font-size: 13px; }

    /* ---- WHY SECTION ---- */
    .why-grid { grid-template-columns: 1fr; gap: 14px; margin-top: 28px; }
    .why-card { padding: 22px 18px; }
    .why-icon { font-size: 30px; margin-bottom: 10px; }
    .why-card h3 { font-size: 15px; }
    .why-card p { font-size: 13px; }

    /* ---- HOW IT WORKS ---- */
    .steps {
        flex-direction: column;
        align-items: center;
        gap: 0;
        margin: 28px 0 28px;
    }
    .step { padding: 16px 16px; width: 100%; max-width: 340px; }
    .step-connector { width: 2px; height: 28px; margin: 0; background: var(--border); }
    .step-number { width: 48px; height: 48px; font-size: 20px; }
    .step-content h3 { font-size: 15px; }
    .step-content p { font-size: 13px; }
    .how-cta .cta-btn--blue { width: 100%; justify-content: center; }

    /* ---- URGENCY ---- */
    .urgency-grid { grid-template-columns: 1fr; gap: 14px; }
    .urgency-card { padding: 24px 18px; }
    .urgency-icon { font-size: 34px; }
    .urgency-card h3 { font-size: 16px; }
    .urgency-card p { font-size: 13px; }

    /* ---- STATS ---- */
    .stats-section { padding: 36px 0; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
    .stat-number { font-size: 28px; }
    .stat-label { font-size: 12px; }

    /* ---- TESTIMONIALS ---- */
    .testimonials-grid { grid-template-columns: 1fr; gap: 14px; margin-top: 28px; }
    .testimonial-card { padding: 22px 18px; }
    .testimonial-card p { font-size: 13px; }
    .stars { font-size: 16px; }

    /* ---- LOCATION SECTION ---- */
    .location-grid { grid-template-columns: 1fr; gap: 14px; margin-bottom: 32px; }
    .location-card { padding: 24px 18px; }
    .location-icon { font-size: 34px; }
    .location-card h3 { font-size: 16px; }
    .location-card p { font-size: 13px; }
    .location-section .cta-btn--large { width: 100%; justify-content: center; font-size: 17px; padding: 14px 20px; }
    .location-desc { font-size: 14px; }

    /* ---- FOOTER CTA ---- */
    .footer-cta-title { font-size: 24px; }
    .footer-cta-sub { font-size: 14px; }
    .footer-cta-section .cta-btn--large { width: 100%; justify-content: center; font-size: 17px; padding: 14px 20px; }

    /* ---- FOOTER ---- */
    .site-footer { padding: 28px 0; }
    .footer-links { gap: 14px; }
    .footer-links a { font-size: 12px; }
    .footer-disclaimer { font-size: 11px; }
    .footer-copy { font-size: 11px; }
    .footer-logo .logo-text { font-size: 16px; }

    /* ---- MODAL ---- */
    .modal-box { padding: 22px 16px; }
    .modal-box h2 { font-size: 19px; }
    .modal-box h3 { font-size: 14px; }
    .modal-box p { font-size: 13px; }
}

/* ---- MEDIUM MOBILE (501–700px) ---- */
@media (min-width: 501px) and (max-width: 700px) {
    .header-inner { gap: 12px; }
    .hero-content { padding: 64px 20px 52px; }
    .hero-title { font-size: 32px; }
    .tiles-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr 1fr; }
    .urgency-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .location-grid { grid-template-columns: 1fr; }
    .steps { flex-direction: column; align-items: center; gap: 0; }
    .step-connector { width: 2px; height: 30px; margin: 0; }
}

/* ---- PROFESSIONAL LOGO ---- */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.logo-img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    flex-shrink: 0;
}
.logo-img--footer {
    width: 38px;
    height: 38px;
    /* invert to white for dark footer */
    filter: brightness(0) invert(1);
}
.logo-wordmark {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.logo-name {
    font-size: 17px;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.3px;
}
.logo-tagline {
    font-size: 11px;
    font-weight: 500;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.logo-name--light { color: #fff; }
.logo-tagline--light { color: rgba(255,255,255,0.6); }

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

@media (max-width: 560px) {
    .logo-img { width: 36px; height: 36px; }
    .logo-name { font-size: 14px; }
    .logo-tagline { font-size: 10px; }
    /* On very small screens, hide the tagline to save space */
    .logo-tagline { display: none; }
    .logo-name { font-size: 15px; }
}

/* ---- LUCIDE ICON STYLES ---- */
/* Trust bar icons */
.trust-icon i {
    width: 28px;
    height: 28px;
    color: var(--blue);
    stroke-width: 1.8;
}

/* Service tile icons */
.tile-icon i {
    width: 48px;
    height: 48px;
    color: var(--blue);
    stroke-width: 1.5;
}

/* Why section icons */
.why-icon i {
    width: 40px;
    height: 40px;
    color: var(--blue);
    stroke-width: 1.6;
}

/* Urgency section icons */
.urgency-icon i {
    width: 42px;
    height: 42px;
    color: #dc2626;
    stroke-width: 1.6;
}

/* Location section icons */
.location-icon i {
    width: 40px;
    height: 40px;
    color: rgba(255,255,255,0.9);
    stroke-width: 1.6;
}

/* CTA button phone icon */
.cta-icon i {
    width: 1em;
    height: 1em;
    stroke-width: 2;
    vertical-align: middle;
}

/* Service card small icon */
.card-icon-sm {
    width: 18px;
    height: 18px;
    stroke-width: 2;
    vertical-align: middle;
    margin-right: 4px;
    color: var(--blue);
}

/* General lucide icon reset */
[data-lucide] {
    display: inline-block;
    vertical-align: middle;
}
