/* ============================================================
   MY SERVICE CARE — GLOBAL STYLESHEET
   Covers: Homepage, Service Pages, Areas, Blog, Contact, About
   ============================================================ */

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f9fa;
}
img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

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

/* ===== BUTTONS ===== */
.cta-button {
    display: inline-block;
    background: #e53e3e;
    color: white;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 14px rgba(229,62,62,0.35);
}
.cta-button:hover { background: #c53030; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(229,62,62,0.45); }
.whatsapp-btn { background: #25D366; box-shadow: 0 4px 14px rgba(37,211,102,0.35); margin-left: 10px; }
.whatsapp-btn:hover { background: #1da851; }

/* ===== SECTION TITLES ===== */
.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #1e293b;
    font-weight: 700;
    position: relative;
}
.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #e53e3e;
    margin: 12px auto 0;
    border-radius: 2px;
}

/* ===== PAGE SECTIONS ===== */
.page-section { padding: 60px 0; }
.bg-light { background: #f1f5f9; }

/* ===== HERO (HOMEPAGE) ===== */
.hero {
    background: linear-gradient(135deg, rgba(229,62,62,0.9), rgba(30,41,59,0.92)),
                url('images/hero-background-bhubaneswar.jpg') no-repeat center center / cover;
    color: white;
    padding: 60px 20px;
    min-height: 90vh;
    display: flex;
    align-items: center;
}
.hero-layout { display: flex; gap: 40px; align-items: center; flex-wrap: wrap; }
.hero-content { flex: 1; min-width: 280px; }
.hero-content h1 { font-size: 2.2rem; font-weight: 800; line-height: 1.25; margin-bottom: 16px; }
.hero-content p { font-size: 1.05rem; margin-bottom: 24px; opacity: 0.95; }
.hero-form {
    background: white;
    color: #333;
    padding: 30px;
    border-radius: 16px;
    min-width: 300px;
    max-width: 380px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    flex-shrink: 0;
}
.hero-form h3 { color: #1e293b; font-size: 1.2rem; margin-bottom: 16px; text-align: center; }
.hero-form input,
.hero-form select { width: 100%; padding: 12px 14px; margin-bottom: 12px; border: 1px solid #e2e8f0; border-radius: 8px; font-size: 0.95rem; outline: none; }
.hero-form input:focus, .hero-form select:focus { border-color: #e53e3e; }
.hero-form button { width: 100%; padding: 14px; background: #e53e3e; color: white; border: none; border-radius: 30px; font-weight: 700; font-size: 1rem; cursor: pointer; transition: background 0.3s; }
.hero-form button:hover { background: #c53030; }

/* ===== SERVICE HERO (service pages) ===== */
.service-hero {
    background: linear-gradient(135deg, rgba(229,62,62,0.9), rgba(30,41,59,0.92)),
                url('/images/hero-background-bhubaneswar.jpg') no-repeat center center / cover;
    color: white;
    padding: 60px 20px;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

/* ===== TRUST STATS BAR ===== */
.trust-stats-bar {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    background: white;
    padding: 24px 20px;
    border-bottom: 3px solid #fee2e2;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.stat-item { text-align: center; }
.stat-num { display: block; font-size: 1.8rem; font-weight: 800; color: #e53e3e; }
.stat-text { display: block; font-size: 0.85rem; color: #64748b; font-weight: 500; }

/* ===== TRUST BADGES ===== */
.trust-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    padding: 20px;
    background: white;
    border-bottom: 1px solid #f1f5f9;
}
.badge {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #1e293b;
}

/* ===== SERVICES GRID (homepage) ===== */
.services { padding: 60px 0; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}
.service-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 4px solid #e53e3e;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 12px 30px rgba(0,0,0,0.12); }
.service-icon { font-size: 2.5rem; margin-bottom: 16px; }
.service-card h3 { font-size: 1.1rem; margin-bottom: 10px; color: #1e293b; font-weight: 700; }
.service-card p { color: #64748b; font-size: 0.9rem; }
.service-link {
    display: inline-block;
    margin-top: 16px;
    color: #e53e3e;
    font-weight: 700;
    font-size: 0.9rem;
    transition: gap 0.2s;
}
.service-link:hover { text-decoration: underline; }

/* ===== FEATURES SECTION ===== */
.features { background: linear-gradient(135deg, #1e293b 0%, #334155 100%); padding: 60px 0; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.feature { text-align: center; padding: 24px; }
.feature-icon { font-size: 2.5rem; margin-bottom: 12px; }
.feature h3 { color: white; margin-bottom: 8px; font-weight: 700; }
.feature p { color: #94a3b8; font-size: 0.9rem; }

/* ===== SERVICE AREA SECTION ===== */
.service-area { padding: 60px 0; background: white; }
.area-content { text-align: center; }
.area-content h2 { font-size: 1.8rem; margin-bottom: 16px; color: #1e293b; font-weight: 700; }
.area-content p { max-width: 700px; margin: 0 auto 24px; color: #64748b; }
.locations { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin: 24px 0; }
.location-tag {
    background: #fee2e2;
    color: #c53030;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* ===== INFO CARDS (service pages) ===== */
.info-card {
    background: white;
    padding: 28px;
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.07);
    transition: transform 0.3s, box-shadow 0.3s;
    border-left: 4px solid #e53e3e;
}
.info-card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(0,0,0,0.12); }
.info-card .icon { font-size: 2rem; margin-bottom: 12px; }
.info-card h3 { font-size: 1.05rem; font-weight: 700; color: #1e293b; margin-bottom: 10px; }
.info-card p { color: #64748b; font-size: 0.9rem; margin-bottom: 10px; }
.info-card ul { padding-left: 16px; list-style: disc; }
.info-card ul li { color: #64748b; font-size: 0.875rem; margin-bottom: 4px; }

/* ===== GRID LAYOUTS ===== */
.grid-layout-cols-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.grid-layout-cols-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}
.grid-layout-cols-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

/* ===== PRICING TABLE ===== */
.pricing-table-container { overflow-x: auto; border-radius: 12px; box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.pricing-table { width: 100%; border-collapse: collapse; background: white; }
.pricing-table thead { background: #1e293b; }
.pricing-table thead th { color: white; padding: 14px 18px; text-align: left; font-size: 0.9rem; }
.pricing-table tbody tr:nth-child(even) { background: #f8fafc; }
.pricing-table tbody tr:hover { background: #fee2e2; }
.pricing-table tbody td { padding: 14px 18px; border-bottom: 1px solid #e2e8f0; font-size: 0.9rem; color: #374151; }
.pricing-note { text-align: center; margin-top: 16px; font-size: 0.84rem; color: #64748b; font-style: italic; }

/* ===== BRANDS SECTION ===== */
.brands-section { background: linear-gradient(135deg, #1e293b, #334155); padding: 60px 0; text-align: center; }
.brands-section .section-title { color: white; }
.brands-section .section-title::after { background: #e53e3e; }
.brands-section p { color: #94a3b8; margin-bottom: 30px; }
.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 14px;
    max-width: 900px;
    margin: 0 auto;
}
.brand-item {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: white;
    padding: 14px 10px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: background 0.3s;
}
.brand-item:hover { background: rgba(229,62,62,0.3); border-color: #e53e3e; }

/* ===== FAQ SECTION ===== */
.faq-section { padding: 60px 0; }
.faq-item { background: white; border-radius: 12px; overflow: hidden; margin-bottom: 12px; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.faq-question {
    padding: 18px 24px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #1e293b;
    font-size: 0.95rem;
    transition: background 0.2s;
}
.faq-question::after { content: '+'; font-size: 1.4rem; color: #e53e3e; flex-shrink: 0; }
.faq-question.active { background: #fef2f2; }
.faq-question.active::after { content: '−'; }
.faq-answer { padding: 0 24px; max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.3s; }
.faq-answer.open { max-height: 400px; padding: 16px 24px; }
.faq-answer p { color: #64748b; font-size: 0.9rem; line-height: 1.7; }

/* ===== FINAL CTA SECTION ===== */
.final-cta-section {
    background: linear-gradient(135deg, #e53e3e, #c53030);
    text-align: center;
    padding: 60px 20px;
    color: white;
}
.final-cta-section h2 { font-size: 2rem; margin-bottom: 16px; font-weight: 800; }
.final-cta-section p { font-size: 1.05rem; opacity: 0.95; margin-bottom: 28px; max-width: 600px; margin-left: auto; margin-right: auto; }

/* ===== FOOTER ===== */
footer { background: #0f172a; color: #94a3b8; padding: 50px 0 0; }
.footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 32px; padding-bottom: 40px; }
.footer-section h3 { color: white; font-size: 1rem; font-weight: 700; margin-bottom: 14px; }
.footer-section p { font-size: 0.875rem; line-height: 1.7; margin-bottom: 6px; }
.footer-section a { color: #94a3b8; font-size: 0.875rem; transition: color 0.2s; }
.footer-section a:hover { color: #f87171; }
.footer-section ul li { margin-bottom: 6px; }
.footer-bottom { border-top: 1px solid #1e293b; padding: 20px 0; text-align: center; font-size: 0.8rem; }
.footer-bottom p { margin-bottom: 4px; }
.footer-bottom a { color: #60a5fa; }

/* ===== MOBILE STICKY FOOTER ===== */
.mobile-sticky-footer {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    background: white;
    border-top: 2px solid #fee2e2;
    box-shadow: 0 -4px 14px rgba(0,0,0,0.1);
}
.sticky-call, .sticky-whatsapp {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
    padding: 14px;
    font-weight: 700;
    font-size: 0.95rem;
}
.sticky-call { background: #e53e3e; color: white; }
.sticky-whatsapp { background: #25D366; color: white; }

/* ===== CONTACT PAGE ===== */
.contact-page { padding: 60px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.contact-info-section h2 { font-size: 1.6rem; font-weight: 700; color: #1e293b; margin-bottom: 12px; }
.contact-info-section p { color: #64748b; margin-bottom: 20px; }
.contact-detail { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; padding: 16px; background: white; border-radius: 12px; box-shadow: 0 2px 8px rgba(0,0,0,0.05); }
.contact-detail .c-icon { font-size: 1.5rem; }
.contact-detail h4 { font-weight: 700; color: #1e293b; margin-bottom: 4px; }
.contact-detail a, .contact-detail p { color: #64748b; font-size: 0.9rem; }
.contact-form-container { background: white; border-radius: 16px; padding: 32px; box-shadow: 0 8px 30px rgba(0,0,0,0.1); }
.contact-form-container h2 { font-size: 1.4rem; font-weight: 700; margin-bottom: 20px; color: #1e293b; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 6px; font-size: 0.9rem; color: #374151; }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.2s;
    outline: none;
    background: #fafafa;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: #e53e3e; background: white; }
.form-submit-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #e53e3e, #c53030);
    color: white;
    border: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 14px rgba(229,62,62,0.35);
}
.form-submit-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(229,62,62,0.45); }

/* ===== ABOUT PAGE ===== */
.about-hero { background: linear-gradient(135deg, #1e293b, #334155); color: white; padding: 80px 20px; text-align: center; }
.about-hero h1 { font-size: 2.5rem; font-weight: 800; margin-bottom: 16px; }
.about-hero p { font-size: 1.1rem; opacity: 0.9; max-width: 600px; margin: 0 auto; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; }
.team-card { text-align: center; background: white; padding: 28px; border-radius: 14px; box-shadow: 0 4px 16px rgba(0,0,0,0.07); }
.team-icon { font-size: 3rem; margin-bottom: 12px; }
.team-card h3 { font-weight: 700; color: #1e293b; margin-bottom: 6px; }
.team-card p { color: #64748b; font-size: 0.875rem; }

/* ===== AREA / LOCATION PAGES ===== */
.area-hub-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.area-card {
    background: white;
    padding: 24px;
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.07);
    border-top: 4px solid #e53e3e;
    transition: transform 0.3s;
}
.area-card:hover { transform: translateY(-4px); }
.area-card h3 { font-weight: 700; color: #1e293b; margin-bottom: 8px; font-size: 1.05rem; }
.area-card p { color: #64748b; font-size: 0.875rem; margin-bottom: 12px; }
.area-card a { color: #e53e3e; font-weight: 600; font-size: 0.875rem; }
.area-tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.area-tag { background: #fee2e2; color: #c53030; padding: 4px 12px; border-radius: 20px; font-size: 0.8rem; font-weight: 600; }

/* ===== BLOG PAGES — INDEX GRID ===== */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
.blog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    border: 1px solid #f1f5f9;
}
.blog-card:hover { transform: translateY(-8px); box-shadow: 0 12px 30px rgba(0,0,0,0.12); }
.blog-card-thumb { 
    height: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}
.blog-card-thumb::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.05));
}
.blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-card-body .blog-meta { font-size: 0.8rem; color: #64748b; margin-bottom: 10px; font-weight: 500; }
.blog-card h3 { font-size: 1.2rem; font-weight: 700; color: #1e293b; margin-bottom: 12px; line-height: 1.4; }
.blog-card p { color: #64748b; font-size: 0.92rem; line-height: 1.6; margin-bottom: 20px; }
.blog-read-more { 
    margin-top: auto;
    color: #e53e3e; 
    font-weight: 700; 
    font-size: 0.9rem; 
    display: flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
}
.blog-read-more:hover { gap: 10px; }

/* ===== BREADCRUMBS ===== */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #94a3b8;
    margin-bottom: 20px;
    justify-content: center;
}
.breadcrumb a { color: #64748b; transition: color 0.2s; }
.breadcrumb a:hover { color: #e53e3e; }
.breadcrumb span { color: #cbd5e1; }

/* ===== READING PROGRESS BAR ===== */
.reading-progress-container {
    position: fixed;
    top: 72px; /* Height of sticky header */
    left: 0;
    width: 100%;
    height: 4px;
    background: transparent;
    z-index: 9998;
}
.reading-progress-bar {
    height: 100%;
    background: #e53e3e;
    width: 0%;
    transition: width 0.1s ease-out;
    box-shadow: 0 0 10px rgba(229,62,62,0.5);
}

/* ===== GLASSMORPHISM META BOX ===== */
.glass-meta {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 16px 30px;
    border-radius: 50px;
    display: inline-flex;
    gap: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-top: -30px;
    position: relative;
    z-index: 20;
}
.blog-header { text-align: center; max-width: 900px; margin: 0 auto 60px; }

/* ===== BLOG LAYOUT GRID (with Sidebar) ===== */
.blog-main-container {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 50px;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== KEY TAKEAWAYS BOX ===== */
.key-takeaways {
    background: #fef2f2;
    border-left: 4px solid #e53e3e;
    padding: 30px;
    border-radius: 0 16px 16px 0;
    margin-bottom: 40px;
}
.key-takeaways h4 {
    color: #991b1b;
    margin-bottom: 12px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
.key-takeaways ul { margin-bottom: 0 !important; }
.key-takeaways ul li { color: #b91c1c !important; font-size: 0.95rem !important; margin-bottom: 6px !important; }

/* ===== BLOG SIDEBAR ===== */
.blog-sidebar { position: sticky; top: 100px; height: fit-content; }
.sidebar-widget {
    background: white;
    border: 1px solid #f1f5f9;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}
.sidebar-widget h4 { font-size: 1.1rem; font-weight: 700; color: #1e293b; margin-bottom: 16px; border-bottom: 2px solid #fee2e2; padding-bottom: 8px; }
.recent-post-item { display: flex; gap: 12px; margin-bottom: 16px; align-items: center; }
.recent-post-item:last-child { margin-bottom: 0; }
.recent-post-thumb { width: 60px; height: 60px; border-radius: 8px; background-size: cover; background-position: center; flex-shrink: 0; }
.recent-post-info a { font-size: 0.85rem; font-weight: 600; color: #1e293b; line-height: 1.3; display: block; }
.recent-post-info a:hover { color: #e53e3e; }
.recent-post-info span { font-size: 0.72rem; color: #94a3b8; }

.sidebar-cta {
    background: linear-gradient(135deg, #1e293b, #334155);
    color: white;
    text-align: center;
    padding: 30px 20px;
    border-radius: 16px;
}
.sidebar-cta h4 { color: white; margin-bottom: 10px; border-bottom: none; }
.sidebar-cta p { font-size: 0.85rem; opacity: 0.8; margin-bottom: 20px; }
.sidebar-cta .btn-sidebar { 
    display: block; 
    background: #e53e3e; 
    color: white; 
    padding: 12px; 
    border-radius: 30px; 
    font-weight: 700; 
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(229,62,62,0.3);
}

.blog-content h2 { font-size: 1.8rem; font-weight: 700; color: #1e293b; margin: 45px 0 16px; position: relative; padding-bottom: 12px; }
.blog-content h2::before { content: '•'; color: #e53e3e; margin-right: 10px; font-size: 1.5rem; vertical-align: middle; }
.blog-content p { color: #4b5563; line-height: 1.85; margin-bottom: 24px; font-size: 1.08rem; }

@media (max-width: 1024px) {
    .blog-main-container { grid-template-columns: 1fr; gap: 40px; }
    .blog-sidebar { position: static; }
}

@media (max-width: 768px) {
    .blog-header h1 { font-size: 2.2rem; }
    .blog-featured-image { height: 300px; margin-top: -40px; border-radius: 12px; }
    .glass-meta { flex-direction: column; gap: 10px; padding: 12px 20px; border-radius: 16px; width: 90%; margin: -20px auto 0; }
    .breadcrumb { margin-bottom: 10px; }
}

/* ===== PAGE HERO (generic, for about/areas/blog/contact) ===== */
.page-hero {
    background: linear-gradient(135deg, #1e293b, #334155);
    color: white;
    padding: 60px 20px;
    text-align: center;
}
.page-hero h1 { font-size: 2.2rem; font-weight: 800; margin-bottom: 12px; }
.page-hero p { font-size: 1.05rem; opacity: 0.85; max-width: 600px; margin: 0 auto 20px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero { min-height: auto; padding: 40px 20px; }
    .hero-layout { flex-direction: column; }
    .hero-content h1 { font-size: 1.6rem; }
    .hero-form { max-width: 100%; }
    .section-title { font-size: 1.5rem; }
    .contact-grid { grid-template-columns: 1fr; }
    .trust-stats-bar { gap: 20px; }
    .stat-num { font-size: 1.4rem; }
    .mobile-sticky-footer { display: flex; }
    body { padding-bottom: 60px; }
    .footer-content { grid-template-columns: 1fr 1fr; }
    .page-hero h1 { font-size: 1.7rem; }
    .final-cta-section h2 { font-size: 1.5rem; }
}
@media (max-width: 480px) {
    .hero-content h1 { font-size: 1.4rem; }
    .trust-stats-bar { grid-template-columns: 1fr 1fr; display: grid; }
    .footer-content { grid-template-columns: 1fr; }
    .grid-layout-cols-3, .grid-layout-cols-2 { grid-template-columns: 1fr; }
}

/* ===== ADDITIONAL CLASSES (auto-patched from page audit) ===== */

/* --- Contact Page --- */
.page-hero-contact {
    background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
    color: white; padding: 50px 20px; text-align: center;
}
.page-hero-contact h1 { font-size: 2rem; font-weight: 800; margin-bottom: 10px; }
.page-hero-contact p  { font-size: 1rem; opacity: 0.9; max-width: 600px; margin: 0 auto; }

.contact-section-layout { padding: 60px 0; background: #f8fafc; }

.contact-details-container {
    background: white; border-radius: 16px; padding: 32px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}
.contact-details-container h2 { font-size: 1.4rem; font-weight: 700; color: #1e293b; margin-bottom: 20px; }

.contact-detail-item {
    display: flex; align-items: flex-start; gap: 14px;
    padding: 16px; background: #f8fafc; border-radius: 10px;
    margin-bottom: 14px;
}
.contact-detail-item .icon { font-size: 1.4rem; flex-shrink: 0; }
.contact-detail-item strong { display: block; color: #1e293b; font-weight: 700; margin-bottom: 4px; }
.contact-detail-item a { color: #e53e3e; font-size: 0.9rem; }
.contact-detail-item ul { list-style: none; padding: 0; }
.contact-detail-item ul li { color: #64748b; font-size: 0.875rem; margin-bottom: 3px; }

.map-section { padding: 40px 0; background: white; }
.map-section h2 { text-align: center; margin-bottom: 20px; font-size: 1.4rem; font-weight: 700; color: #1e293b; }
.map-embed { border-radius: 14px; overflow: hidden; box-shadow: 0 4px 16px rgba(0,0,0,0.1); }
.map-embed iframe { width: 100%; height: 380px; border: 0; display: block; }

/* --- About Page --- */
.content-section-about { padding: 60px 0; background: white; }
.bg-light-tone { background: #f8fafc !important; }

.about-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
    align-items: center;
}
.about-image { width: 100%; border-radius: 14px; box-shadow: 0 8px 30px rgba(0,0,0,0.1); }

.content-section-about h3 { font-size: 1.4rem; font-weight: 700; color: #1e293b; margin-bottom: 14px; }
.content-section-about p  { color: #64748b; margin-bottom: 14px; line-height: 1.8; }
.content-section-about ul { list-style: disc; padding-left: 20px; }
.content-section-about ul li { color: #64748b; margin-bottom: 6px; }

.section-title-about {
    font-size: 1.8rem; font-weight: 700; color: #1e293b;
    margin-bottom: 32px; text-align: center;
}

.cta-section-about {
    background: linear-gradient(135deg, #1e293b, #334155);
    color: white; text-align: center; padding: 60px 20px;
}
.cta-section-about h2 { font-size: 2rem; font-weight: 800; margin-bottom: 14px; }
.cta-section-about p  { font-size: 1rem; opacity: 0.85; margin-bottom: 28px; max-width: 600px; margin-left:auto; margin-right:auto; }
.cta-button-about {
    display: inline-block; background: #e53e3e; color: white;
    padding: 14px 32px; border-radius: 30px; font-weight: 700;
    font-size: 1rem; transition: all 0.3s;
    box-shadow: 0 4px 14px rgba(229,62,62,0.35);
}
.cta-button-about:hover { background: #c53030; transform: translateY(-2px); }

/* --- Blog Pages --- */
.blog-post { max-width: 860px; margin: 0 auto; padding: 40px 20px; }
.blog-header { margin-bottom: 32px; }
.blog-header h1 { font-size: 2rem; font-weight: 800; color: #1e293b; margin-bottom: 12px; line-height: 1.3; }
.blog-meta { font-size: 0.82rem; color: #94a3b8; margin-bottom: 20px; }
.blog-content h2 { font-size: 1.5rem; font-weight: 700; color: #1e293b; margin: 28px 0 12px; }
.blog-content h3 { font-size: 1.15rem; font-weight: 700; color: #374151; margin: 20px 0 10px; }
.blog-content p  { color: #4b5563; line-height: 1.85; margin-bottom: 16px; }
.blog-content ul, .blog-content ol { padding-left: 24px; margin-bottom: 16px; }
.blog-content ul li, .blog-content ol li { color: #4b5563; margin-bottom: 8px; }
.blog-content strong { color: #1e293b; }
.blog-cta {
    background: linear-gradient(135deg, #e53e3e, #c53030);
    color: white; text-align: center; padding: 40px 20px;
    border-radius: 16px; margin-top: 40px;
}
.blog-cta h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 12px; }
.blog-cta p  { opacity: 0.9; margin-bottom: 20px; }
.blog-author-box {
    display: flex; gap: 16px; align-items: center;
    background: #f8fafc; border-radius: 12px; padding: 20px;
    margin-top: 32px; border: 1px solid #e2e8f0;
}
.blog-post-card {
    background: white; border-radius: 14px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.07); overflow: hidden;
    transition: transform 0.3s;
}
.blog-post-card:hover { transform: translateY(-4px); }
.blog-content-wrapper { padding: 60px 0; background: #f8fafc; }
.read-more { display: inline-block; margin-top: 12px; color: #e53e3e; font-weight: 700; font-size: 0.875rem; }
.btn-light {
    display: inline-block; background: white; color: #e53e3e;
    padding: 12px 28px; border-radius: 30px; font-weight: 700;
    font-size: 0.95rem; margin-top: 16px; transition: all 0.3s;
}
.btn-light:hover { background: #fee2e2; }

/* --- Area/Location Pages --- */
.areas-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }

/* --- Review Section --- */
.review-section { padding: 60px 0; background: #f8fafc; }
.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.review-card {
    background: white; padding: 28px; border-radius: 14px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.07);
    border-top: 3px solid #fbbf24;
}
.stars { color: #fbbf24; font-size: 1.1rem; margin-bottom: 10px; }
.review-card p { color: #4b5563; font-size: 0.9rem; line-height: 1.7; margin-bottom: 14px; }
.author { display: flex; align-items: center; gap: 10px; }
.author-info strong { display: block; font-weight: 700; color: #1e293b; font-size: 0.9rem; }
.author-info span { font-size: 0.78rem; color: #94a3b8; }

/* --- Process / Steps --- */
.process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.step-card {
    background: white; text-align: center; padding: 30px 20px;
    border-radius: 14px; box-shadow: 0 4px 16px rgba(0,0,0,0.07);
    position: relative;
}
.step-number {
    width: 48px; height: 48px; background: #e53e3e; color: white;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; font-weight: 800; margin: 0 auto 14px;
}
.step-card h3 { font-weight: 700; color: #1e293b; margin-bottom: 8px; }
.step-card p  { color: #64748b; font-size: 0.875rem; }

/* --- Why Choose Us Grid --- */
.why-choose-us-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.feature-card {
    background: white; padding: 28px; border-radius: 14px; text-align: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.07); transition: transform 0.3s;
}
.feature-card:hover { transform: translateY(-4px); }
.feature-card .feature-icon { font-size: 2.2rem; margin-bottom: 14px; }
.feature-card h3 { font-weight: 700; color: #1e293b; margin-bottom: 8px; }
.feature-card p  { color: #64748b; font-size: 0.875rem; }
.cta-link { color: #e53e3e; font-weight: 700; text-decoration: underline; }

/* --- Responsive additions --- */
@media (max-width: 768px) {
    .about-grid { grid-template-columns: 1fr; }
    .contact-section-layout .contact-grid { grid-template-columns: 1fr; }
}
