/* TOP BAR */
.top-bar {
    background: var(--navy);
    color: rgba(255,255,255,0.85);
    padding: 0.6rem 0;
    font-size: 0.85rem;
}
.top-bar-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
.emergency-text { color: var(--accent); font-weight: 600; }
.top-bar a { color: rgba(255,255,255,0.85); text-decoration: none; }
.top-bar a:hover { color: white; }

/* HEADER */
.header {
    background: white;
    box-shadow: 0 1px 0 var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-family: 'DM Serif Display', serif;
    font-size: 1.4rem;
    color: var(--navy);
    letter-spacing: -0.3px;
    line-height: 1.2;
}
.logo span { display: block; font-family: 'DM Sans', sans-serif; font-size: 0.7rem; font-weight: 500; color: var(--muted); letter-spacing: 1px; text-transform: uppercase; }
.nav { display: flex; gap: 1.75rem; align-items: center; }
.nav a { color: var(--muted); text-decoration: none; font-weight: 500; font-size: 0.95rem; transition: color 0.2s; }
.nav a:hover { color: var(--navy); }
.btn-call {
    background: var(--accent);
    color: var(--navy);
    padding: 0.65rem 1.35rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.2s;
}
.btn-call:hover { background: #e08900; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); transition: all 0.3s; }
.mobile-nav { display: none; flex-direction: column; background: white; border-top: 1px solid var(--border); padding: 1rem 2rem; }
.mobile-nav.open { display: flex; }
.mobile-nav a { color: var(--text); text-decoration: none; font-weight: 500; padding: 0.75rem 0; border-bottom: 1px solid var(--border); }

/* FLOATING CALL BUTTON */
.float-call {
    display: none;
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    background: var(--accent);
    color: var(--navy);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 4px 20px rgba(245,158,11,0.4);
    z-index: 999;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(245,158,11,0.4); }
    50% { box-shadow: 0 4px 30px rgba(245,158,11,0.7); }
}

/* HERO */
.hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 60%, #2563eb 100%);
    color: white;
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
    border-radius: 50%;
}
.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
}
.hero-badge {
    display: inline-block;
    background: rgba(245,158,11,0.15);
    border: 1px solid rgba(245,158,11,0.4);
    color: var(--accent);
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}
.hero h1 {
    font-family: 'DM Serif Display', serif;
    font-size: 2.75rem;
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 1.25rem;
}
.hero p { font-size: 1.05rem; margin-bottom: 2rem; opacity: 0.9; max-width: 480px; }
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn { padding: 0.9rem 1.75rem; border-radius: 4px; text-decoration: none; font-weight: 600; transition: all 0.2s; display: inline-block; font-size: 0.95rem; }
.btn-primary { background: var(--accent); color: var(--navy); }
.btn-primary:hover { background: #e08900; }
.btn-secondary { background: transparent; color: white; border: 2px solid rgba(255,255,255,0.5); }
.btn-secondary:hover { border-color: white; background: rgba(255,255,255,0.08); }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.stat { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); padding: 1.5rem 1rem; border-radius: 8px; text-align: center; }
.stat-number { font-family: 'DM Serif Display', serif; font-size: 2.5rem; display: block; margin-bottom: 0.35rem; color: var(--accent); }
.stat-label { font-size: 0.85rem; opacity: 0.8; }

/* SECTIONS */
section { padding: 5rem 2rem; }
.container { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-tag { display: inline-block; color: var(--blue); font-size: 0.8rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 0.75rem; }
.section-title { font-family: 'DM Serif Display', serif; font-size: 2.25rem; font-weight: 400; color: var(--navy); margin-bottom: 0.75rem; line-height: 1.2; }
.section-subtitle { color: var(--muted); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

/* SERVICES */
.services { background: var(--light); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.service-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    border-top: 3px solid var(--blue);
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    transition: all 0.25s;
}
.service-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.1); transform: translateY(-2px); }
.service-icon { font-size: 2rem; margin-bottom: 1rem; }
.service-card h3 { color: var(--navy); margin-bottom: 0.65rem; font-size: 1.1rem; font-weight: 600; }
.service-card p { color: var(--muted); font-size: 0.95rem; line-height: 1.65; }

/* BEFORE/AFTER */
.gallery { background: white; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.5rem; }
.ba-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: relative;
}
.ba-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 220px;
}
.ba-before, .ba-after {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: white;
    position: relative;
}
.ba-before {
    background: linear-gradient(135deg, #374151 0%, #6b7280 100%);
}
.ba-after {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
}
.ba-label {
    position: absolute;
    bottom: 0.5rem;
    left: 0.5rem;
    background: rgba(0,0,0,0.5);
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.ba-card-info { padding: 1rem 1.25rem; background: white; }
.ba-card-info h4 { font-size: 0.95rem; font-weight: 600; color: var(--navy); margin-bottom: 0.25rem; }
.ba-card-info p { font-size: 0.85rem; color: var(--muted); }
.ba-divider {
    position: absolute;
    top: 0;
    left: 50%;
    width: 3px;
    height: 220px;
    background: white;
    transform: translateX(-50%);
    z-index: 2;
}
.ba-divider::before {
    content: '↔';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    color: var(--navy);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* TESTIMONIALS */
.testimonials { background: var(--light); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.review-card {
    background: white;
    padding: 1.75rem;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    border-left: 4px solid var(--accent);
}
.stars { color: var(--accent); font-size: 1rem; margin-bottom: 0.75rem; letter-spacing: 2px; }
.review-text { color: var(--text); font-size: 0.95rem; line-height: 1.65; margin-bottom: 1rem; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 0.75rem; }
.reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--blue);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}
.reviewer-name { font-weight: 600; font-size: 0.9rem; color: var(--navy); }
.reviewer-meta { font-size: 0.8rem; color: var(--muted); }
.google-badge { display: flex; align-items: center; gap: 0.5rem; margin-top: 1.5rem; font-size: 0.85rem; color: var(--muted); justify-content: center; }

/* SERVICE AREA */
.service-area { background: white; }
.area-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.area-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; margin-top: 1.5rem; }
.area-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 0.75rem;
    background: var(--light);
    border-radius: 4px;
    font-size: 0.9rem;
    color: var(--text);
}
.area-item::before { content: '📍'; font-size: 0.8rem; }
.map-placeholder {
    background: linear-gradient(135deg, var(--light) 0%, #dbeafe 100%);
    border-radius: 12px;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    border: 2px dashed var(--border);
    color: var(--muted);
    text-align: center;
    padding: 2rem;
}
.map-placeholder .map-icon { font-size: 3rem; }

/* PROCESS */
.process { background: var(--navy); color: white; }
.process .section-title { color: white; }
.process .section-subtitle { color: rgba(255,255,255,0.7); }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 3rem; position: relative; }
.process-steps::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: rgba(255,255,255,0.15);
}
.step { position: relative; text-align: center; }
.step-number {
    background: var(--accent);
    color: var(--navy);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 auto 1.25rem;
    position: relative;
    z-index: 1;
}
.step h3 { color: white; margin-bottom: 0.5rem; font-size: 1rem; font-weight: 600; }
.step p { color: rgba(255,255,255,0.7); font-size: 0.88rem; line-height: 1.6; }

/* WHY US */
.why-us { background: var(--light); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 2rem; margin-top: 3rem; }
.feature {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    transition: all 0.25s;
}
.feature:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.1); transform: translateY(-2px); }
.feature-icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.feature h3 { color: var(--navy); margin-bottom: 0.5rem; font-size: 1rem; font-weight: 600; }
.feature p { color: var(--muted); font-size: 0.9rem; }

/* CERTIFICATIONS */
.certs { background: white; padding: 3rem 2rem; }
.certs-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.certs h3 { font-size: 0.85rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); margin-bottom: 2rem; }
.certs-badges { display: flex; gap: 2rem; justify-content: center; align-items: center; flex-wrap: wrap; }
.cert-badge {
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1rem 1.75rem;
    font-weight: 700;
    color: var(--navy);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.cert-badge .cert-icon { font-size: 1.5rem; }

/* CONTACT */
.contact { background: var(--light); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact-info { padding-top: 0.5rem; }
.contact-info h3 { font-family: 'DM Serif Display', serif; font-size: 1.75rem; color: var(--navy); margin-bottom: 1rem; }
.contact-info p { color: var(--muted); margin-bottom: 2rem; }
.contact-detail { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.25rem; }
.contact-detail-icon { width: 40px; height: 40px; background: var(--blue); color: white; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.contact-detail-text strong { display: block; font-size: 0.85rem; color: var(--muted); font-weight: 500; margin-bottom: 0.15rem; }
.contact-detail-text a { color: var(--navy); font-weight: 600; text-decoration: none; }
.contact-detail-text a:hover { color: var(--blue); }
.contact-form { background: white; padding: 2.5rem; border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; margin-bottom: 0.4rem; color: var(--text); font-weight: 500; font-size: 0.9rem; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: 6px;
    font-size: 0.95rem;
    font-family: inherit;
    color: var(--text);
    transition: border-color 0.2s;
    background: white;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--blue);
}
textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.btn-submit {
    width: 100%;
    background: var(--blue);
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s;
}
.btn-submit:hover { background: var(--navy); }

/* FOOTER */
.footer { background: #0a1628; color: white; padding: 3.5rem 2rem 1.5rem; }
.footer-content { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 2.5rem; }
.footer-brand h3 { font-family: 'DM Serif Display', serif; font-size: 1.3rem; margin-bottom: 0.75rem; }
.footer p, .footer li { color: rgba(255,255,255,0.6); font-size: 0.9rem; line-height: 1.8; }
.footer h4 { font-size: 0.8rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 1rem; }
.footer ul { list-style: none; }
.footer ul li a { color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s; }
.footer ul li a:hover { color: white; }
.footer-emerg { margin-top: 1rem; }
.footer-emerg a { color: var(--accent); font-weight: 700; font-size: 1.1rem; text-decoration: none; }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.08); display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 0.82rem; }

/* RESPONSIVE */
@media (max-width: 968px) {
    .hero-content, .area-grid, .contact-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr 1fr; }
    .process-steps::before { display: none; }
    .footer-content { grid-template-columns: 1fr 1fr; }
    .hero h1 { font-size: 2.2rem; }
}
@media (max-width: 640px) {
    .hero h1 { font-size: 1.9rem; }
    .process-steps, .footer-content { grid-template-columns: 1fr; }
    .nav { display: none; }
    .hamburger { display: flex; }
    .float-call { display: flex; align-items: center; gap: 0.5rem; }
    .form-row { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}
