:root {
    --blue-900: #0c1e3c; --blue-800: #143366; --blue-700: #1a4480; --blue-600: #2563eb;
    --blue-500: #3b82f6; --blue-400: #60a5fa; --blue-300: #93c5fd; --blue-200: #bfdbfe;
    --blue-100: #dbeafe; --blue-50: #eff6ff; --white: #ffffff; --gray-50: #f9fafb;
    --gray-100: #f3f4f6; --gray-200: #e5e7eb; --gray-300: #d1d5db; --gray-400: #9ca3af;
    --gray-500: #6b7280; --gray-600: #4b5563; --gray-700: #374151; --gray-800: #1f2937;
    --gray-900: #111827; --orange-500: #f97316; --orange-600: #ea580c; --orange-400: #fb923c;
    --green-500: #22c55e;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'DM Sans', sans-serif; color: var(--gray-800); line-height: 1.6; background: var(--white); }

/* Emergency Banner */
.emergency-banner { background: linear-gradient(90deg, var(--blue-900) 0%, var(--blue-800) 100%); color: white; padding: 10px 20px; text-align: center; font-size: 14px; }
.emergency-banner a { color: var(--orange-400); font-weight: 600; text-decoration: none; }

/* Header */
.header { background: var(--white); padding: 16px 24px; position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 20px rgba(0,0,0,0.06); }
.header-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-img { height: 25px; width: auto; }
.nav { display: flex; align-items: center; gap: 32px; }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a { text-decoration: none; color: var(--gray-600); font-weight: 500; font-size: 15px; transition: color 0.2s; }
.nav-links a:hover { color: var(--blue-600); }
.header-ctas { display: flex; align-items: center; gap: 16px; }
.phone-cta { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.phone-icon-wrapper { width: 48px; height: 48px; background: var(--orange-500); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.phone-icon-wrapper svg { width: 22px; height: 22px; fill: white; }
.phone-number { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 20px; font-weight: 700; color: var(--blue-900); }
.btn-quote-header { background: var(--blue-600); color: white; padding: 14px 24px; border-radius: 10px; text-decoration: none; font-weight: 600; font-size: 15px; }
.mobile-menu-btn { display: none; width: 44px; height: 44px; background: var(--blue-50); border: none; border-radius: 10px; cursor: pointer; flex-direction: column; gap: 5px; padding: 12px; }
.mobile-menu-btn span { display: block; width: 100%; height: 2px; background: var(--blue-900); border-radius: 2px; }

/* Mobile Nav */
.mobile-nav { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--white); z-index: 101; padding: 120px 24px 24px; transform: translateX(100%); transition: transform 0.3s; }
.mobile-nav.active { transform: translateX(0); }
.mobile-nav-links { list-style: none; margin-bottom: 32px; }
.mobile-nav-links li { border-bottom: 1px solid var(--gray-200); }
.mobile-nav-links a { display: block; padding: 16px 0; color: var(--blue-900); text-decoration: none; font-size: 18px; font-weight: 600; }
.mobile-cta-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: var(--blue-900); padding: 12px 16px; z-index: 1000; }
.mobile-cta-bar .cta-buttons { display: flex; gap: 10px; }
.mobile-cta-bar .btn-call { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; background: var(--orange-500); color: white; padding: 14px 16px; border-radius: 10px; text-decoration: none; font-weight: 700; }
.mobile-cta-bar .btn-quote { flex: 1; display: flex; align-items: center; justify-content: center; background: var(--white); color: var(--blue-900); padding: 14px 16px; border-radius: 10px; text-decoration: none; font-weight: 600; }

/* Hero */
.hero { background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-800) 50%, var(--blue-700) 100%); color: white; padding: 80px 24px; position: relative; overflow: hidden; }
.hero-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.hero-content h1 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 48px; font-weight: 800; margin-bottom: 20px; line-height: 1.1; }
.hero-content h1 .highlight { color: var(--orange-400); }
.hero-content > p { font-size: 20px; margin-bottom: 32px; opacity: 0.95; line-height: 1.6; color: var(--blue-100); }
.hero-badges { display: flex; gap: 16px; margin-bottom: 32px; flex-wrap: wrap; }
.hero-badge { display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.1); padding: 10px 16px; border-radius: 50px; font-size: 14px; font-weight: 600; }
.hero-badge svg { width: 20px; height: 20px; fill: var(--orange-400); }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-hero-primary { display: inline-flex; align-items: center; gap: 12px; background: var(--orange-500); color: white; padding: 20px 36px; border-radius: 14px; text-decoration: none; font-weight: 700; font-size: 18px; box-shadow: 0 4px 20px rgba(249, 115, 22, 0.4); }
.btn-hero-primary svg { width: 24px; height: 24px; fill: currentColor; }
.btn-hero-secondary { display: inline-flex; align-items: center; gap: 10px; background: transparent; border: 2px solid rgba(255,255,255,0.4); color: white; padding: 18px 32px; border-radius: 14px; text-decoration: none; font-weight: 600; }
.hero-image { position: relative; }
.hero-image img { width: 100%; border-radius: 20px; box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.hero-floating-badge { position: absolute; bottom: -20px; left: 20px; background: white; padding: 16px 24px; border-radius: 14px; box-shadow: 0 10px 40px rgba(0,0,0,0.2); }
.hero-floating-badge .stat { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 28px; font-weight: 800; color: var(--blue-600); }
.hero-floating-badge .label { font-size: 14px; color: var(--gray-600); }

/* Breadcrumb */
.breadcrumb-bar { background: var(--gray-50); border-bottom: 1px solid var(--gray-200); padding: 14px 24px; }
.breadcrumb-bar-inner { max-width: 1200px; margin: 0 auto; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 14px; flex-wrap: wrap; }
.breadcrumb a { color: var(--blue-600); text-decoration: none; }
.breadcrumb svg { width: 16px; height: 16px; color: var(--gray-400); }
.breadcrumb span { color: var(--gray-600); }

/* Content Section */
.content-section { max-width: 1200px; margin: 0 auto; padding: 60px 24px; }
.content-section h2 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 32px; font-weight: 700; color: var(--blue-900); margin-bottom: 20px; }
.content-section p { color: var(--gray-600); font-size: 17px; margin-bottom: 16px; line-height: 1.8; }
.content-layout { display: grid; grid-template-columns: 1fr 340px; gap: 60px; }
.content-main { min-width: 0; }

/* Services Grid */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 40px 0; }
.service-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: 16px; padding: 28px; transition: all 0.3s; }
.service-card:hover { border-color: var(--blue-300); box-shadow: 0 10px 40px rgba(37, 99, 235, 0.1); transform: translateY(-4px); }
.service-card-icon { width: 56px; height: 56px; background: var(--blue-50); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.service-card-icon svg { width: 28px; height: 28px; fill: var(--blue-600); }
.service-card h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 18px; font-weight: 700; color: var(--blue-900); margin-bottom: 8px; }
.service-card p { color: var(--gray-600); font-size: 15px; line-height: 1.6; margin: 0; }

/* Checklist */
.checklist { margin: 30px 0; }
.checklist-item { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--gray-100); }
.checklist-item:last-child { border-bottom: none; }
.checklist-icon { width: 28px; height: 28px; background: var(--green-500); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.checklist-icon svg { width: 16px; height: 16px; fill: white; }
.checklist-content strong { display: block; color: var(--blue-900); font-weight: 600; margin-bottom: 4px; }
.checklist-content span { color: var(--gray-600); font-size: 15px; }

/* Quick Quote CTA */
.quick-quote-section { background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-800) 100%); padding: 50px 24px; margin: 50px 0; border-radius: 20px; }
.quick-quote-inner { max-width: 800px; margin: 0 auto; text-align: center; color: white; }
.quick-quote-inner h2 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 28px; margin-bottom: 12px; color: white; }
.quick-quote-inner p { opacity: 1; margin-bottom: 24px; font-size: 17px; color: rgba(255,255,255,0.9); }
.quick-quote-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-cta-large { display: inline-flex; align-items: center; gap: 10px; padding: 18px 32px; border-radius: 12px; text-decoration: none; font-weight: 700; font-size: 17px; }
.btn-cta-large.orange { background: var(--orange-500); color: white; }
.btn-cta-large.white { background: white; color: var(--blue-900); }
.btn-cta-large svg { width: 22px; height: 22px; fill: currentColor; }

/* Sidebar */
.sidebar { position: sticky; top: 100px; }
.sidebar-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: 16px; padding: 28px; margin-bottom: 24px; }
.sidebar-card.highlight { background: linear-gradient(135deg, var(--blue-600) 0%, var(--blue-700) 100%); border: none; color: white; }
.sidebar-card h4 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 18px; font-weight: 700; color: var(--blue-900); margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.sidebar-card h4 svg { width: 24px; height: 24px; flex-shrink: 0; }
.sidebar-card.highlight h4 { color: white; }
.sidebar-phone { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 28px; font-weight: 800; color: white; display: block; margin-bottom: 8px; text-decoration: none; }
.sidebar-btn { display: block; width: 100%; text-align: center; background: var(--white); color: var(--blue-900); padding: 14px 20px; border-radius: 10px; text-decoration: none; font-weight: 600; }
.sidebar-list { list-style: none; }
.sidebar-list li { display: flex; align-items: center; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--gray-100); color: var(--gray-700); font-size: 15px; }
.sidebar-list li:last-child { border-bottom: none; }
.sidebar-list svg { width: 18px; height: 18px; fill: var(--blue-600); }

/* Video Section */
.video-section { padding: 60px 24px; background: var(--gray-50); }
.video-section-inner { max-width: 900px; margin: 0 auto; }
.video-cta { background: var(--white); border-radius: 16px; padding: 30px; }
.video-cta-inner { display: flex; gap: 24px; align-items: center; }
.video-thumbnail { position: relative; width: 280px; flex-shrink: 0; cursor: pointer; border-radius: 12px; overflow: hidden; }
.video-thumbnail img { width: 100%; display: block; }
.video-play-btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 64px; height: 64px; background: var(--orange-500); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.video-play-btn svg { width: 24px; height: 24px; fill: white; margin-left: 4px; }
.video-info h4 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 20px; font-weight: 700; color: var(--blue-900); margin-bottom: 8px; }
.video-info p { color: var(--gray-600); font-size: 15px; margin: 0; }

/* Video Modal */
.video-modal { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.9); z-index: 2000; align-items: center; justify-content: center; }
.video-modal.active { display: flex; }
.video-modal-inner { position: relative; width: 90%; max-width: 900px; aspect-ratio: 16/9; background: #000; border-radius: 12px; overflow: hidden; }
.video-modal-close { position: absolute; top: -40px; right: 0; width: 36px; height: 36px; background: var(--white); border-radius: 50%; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.video-modal-close svg { width: 20px; height: 20px; }
.video-modal iframe { width: 100%; height: 100%; border: none; }

/* FAQ Section */
.faq-section { padding: 80px 24px; background: var(--white); }
.faq-inner { max-width: 800px; margin: 0 auto; }
.faq-header { text-align: center; margin-bottom: 48px; }
.faq-header h2 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 36px; font-weight: 700; color: var(--blue-900); margin-bottom: 12px; }
.faq-header p { color: var(--gray-600); font-size: 18px; }
.faq-list { display: flex; flex-direction: column; gap: 16px; }
.faq-item { background: var(--gray-50); border-radius: 12px; overflow: hidden; }
.faq-question { padding: 24px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-question h3 { font-size: 17px; font-weight: 600; color: var(--blue-900); margin: 0; }
.faq-icon { width: 32px; height: 32px; background: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform 0.3s; }
.faq-icon svg { width: 20px; height: 20px; fill: var(--blue-600); }
.faq-item.active .faq-icon { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.active .faq-answer { max-height: 500px; }
.faq-answer-inner { padding: 0 24px 24px; }
.faq-answer p { color: var(--gray-600); font-size: 16px; line-height: 1.7; margin: 0; }

/* CTA Banner */
.cta-banner { background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-800) 100%); padding: 80px 24px; }
.cta-banner-inner { max-width: 900px; margin: 0 auto; text-align: center; color: white; }
.cta-banner h2 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 36px; font-weight: 800; margin-bottom: 16px; color: white; }
.cta-banner p { font-size: 18px; opacity: 0.9; margin-bottom: 32px; color: white; }
.cta-banner-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Related Services */
.related-section { padding: 80px 24px; background: var(--gray-50); }
.related-inner { max-width: 1200px; margin: 0 auto; }
.related-header { text-align: center; margin-bottom: 48px; }
.related-header h2 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 32px; font-weight: 700; color: var(--blue-900); margin-bottom: 12px; }
.related-header p { color: var(--gray-600); font-size: 17px; }
.related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.related-card { background: var(--white); border-radius: 16px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.06); transition: all 0.3s; text-decoration: none; }
.related-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,0.12); }
.related-card-image { height: 160px; background: var(--gray-200); overflow: hidden; }
.related-card-image img { width: 100%; height: 100%; object-fit: cover; }
.related-card-content { padding: 24px; }
.related-card h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 18px; font-weight: 700; color: var(--blue-900); margin-bottom: 8px; }
.related-card p { color: var(--gray-600); font-size: 14px; margin: 0; }

/* Footer */
.footer { background: var(--blue-900); color: white; padding: 60px 24px 30px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 48px; margin-bottom: 48px; }
.footer-brand p { color: var(--blue-200); font-size: 15px; line-height: 1.7; margin: 16px 0 24px; }
.footer-contact-item { display: flex; align-items: center; gap: 12px; color: var(--blue-100); font-size: 15px; margin-bottom: 12px; }
.footer-contact-item svg { width: 20px; height: 20px; fill: var(--orange-400); }
.footer h5 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 16px; font-weight: 700; margin-bottom: 20px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: var(--blue-200); text-decoration: none; font-size: 15px; }
.footer-service-areas { padding: 24px 0; border-top: 1px solid rgba(255,255,255,0.1); border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 24px; }
.service-areas-list { display: flex; flex-wrap: wrap; gap: 8px; }
.service-areas-list a { background: rgba(255,255,255,0.1); padding: 8px 16px; border-radius: 6px; color: var(--blue-100); text-decoration: none; font-size: 14px; }
.footer-credentials { display: flex; gap: 32px; margin-bottom: 24px; flex-wrap: wrap; }
.credential-item { display: flex; align-items: center; gap: 8px; color: var(--blue-200); font-size: 14px; }
.credential-item svg { width: 20px; height: 20px; fill: var(--orange-400); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); flex-wrap: wrap; gap: 16px; }
.footer-bottom p { color: var(--blue-300); font-size: 14px; }
.language-toggle { display: flex; gap: 12px; }
.language-toggle a { color: var(--blue-200); text-decoration: none; font-size: 14px; padding: 6px 12px; border-radius: 6px; }
.language-toggle a.active { background: rgba(255,255,255,0.1); color: white; }

/* Responsive */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; text-align: center; }
    .hero-badges { justify-content: center; }
    .hero-ctas { justify-content: center; }
    .content-layout { grid-template-columns: 1fr; }
    .sidebar { position: static; display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 40px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .related-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .nav-links, .btn-quote-header { display: none; }
    .mobile-menu-btn { display: flex; }
    .mobile-nav { display: block; }
    .mobile-cta-bar { display: block; }
    body { padding-bottom: 80px; }
}
@media (max-width: 768px) {
    .hero { padding: 60px 24px; }
    .hero-content h1 { font-size: 36px; }
    .services-grid { grid-template-columns: 1fr; }
    .sidebar { grid-template-columns: 1fr; }
    .related-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .video-cta-inner { flex-direction: column; }
    .video-thumbnail { width: 100%; }
}

/* ========================================
   SERVICE PAGE STYLES
   ======================================== */

    
        .service-hero { background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-800) 100%); color: white; padding: 80px 24px; }
        .service-hero-inner { max-width: 800px; margin: 0 auto; text-align: center; }
        .hero-badge { display: inline-block; background: rgba(255,255,255,0.2); padding: 8px 20px; border-radius: 30px; font-size: 14px; font-weight: 600; margin-bottom: 20px; }
        .service-hero h1 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 48px; font-weight: 800; margin-bottom: 20px; line-height: 1.2; }
        .service-hero h1 .highlight { color: var(--orange-400); }
        .service-hero p { font-size: 20px; opacity: 0.95; margin-bottom: 32px; line-height: 1.6; }
        .hero-trust { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; }
        .trust-badge { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 500; }
        .trust-badge svg { width: 20px; height: 20px; fill: var(--orange-400); }
        
        .service-content { padding: 60px 24px; }
        .service-content-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 320px; gap: 48px; }
        .service-main h2 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 32px; font-weight: 700; color: var(--blue-900); margin: 48px 0 20px; }
        .service-main h2:first-child { margin-top: 0; }
        .service-main h3 { font-size: 24px; font-weight: 700; color: var(--blue-900); margin: 32px 0 16px; }
        .service-main p { color: var(--gray-600); font-size: 17px; line-height: 1.8; margin-bottom: 20px; }
        .content-list { margin: 20px 0; padding-left: 0; list-style: none; }
        .content-list li { color: var(--gray-600); font-size: 16px; margin-bottom: 12px; padding-left: 28px; position: relative; line-height: 1.7; }
        .content-list li::before { content: "✓"; position: absolute; left: 0; color: var(--blue-600); font-weight: bold; }
        
        .services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin: 32px 0; }
        .service-card { background: var(--gray-50); border-radius: 16px; padding: 28px; }
        .service-card-icon { width: 48px; height: 48px; background: var(--blue-100); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
        .service-card-icon svg { width: 24px; height: 24px; fill: var(--blue-600); }
        .service-card h3 { font-size: 18px; font-weight: 700; color: var(--blue-900); margin-bottom: 10px; }
        .service-card p { font-size: 15px; color: var(--gray-600); margin: 0; line-height: 1.6; }
        
        .checklist { margin: 32px 0; }
        .checklist-item { display: flex; gap: 16px; padding: 20px; background: var(--white); border: 1px solid var(--gray-200); border-radius: 12px; margin-bottom: 12px; }
        .checklist-icon { width: 40px; height: 40px; background: var(--orange-100); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
        .checklist-icon svg { width: 20px; height: 20px; fill: var(--orange-600); }
        .checklist-content strong { display: block; color: var(--blue-900); font-size: 16px; margin-bottom: 4px; }
        .checklist-content span { color: var(--gray-600); font-size: 14px; line-height: 1.6; }
        
        .benefits-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin: 32px 0; }
        .benefit-card { background: linear-gradient(135deg, var(--blue-50) 0%, var(--white) 100%); border: 1px solid var(--blue-100); border-radius: 16px; padding: 28px; }
        .benefit-icon { width: 48px; height: 48px; background: var(--blue-600); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
        .benefit-icon svg { width: 24px; height: 24px; fill: white; }
        .benefit-card h4 { font-size: 18px; font-weight: 700; color: var(--blue-900); margin-bottom: 10px; }
        .benefit-card p { font-size: 15px; color: var(--gray-600); margin: 0; line-height: 1.6; }
        
        .brands-section { background: var(--gray-50); border-radius: 16px; padding: 32px; margin: 32px 0; }
        .brands-section h3 { font-size: 20px; font-weight: 700; color: var(--blue-900); margin-bottom: 16px; }
        .brands-section p { color: var(--gray-600); font-size: 16px; line-height: 1.7; margin: 0; }
        
        .faq-section { margin: 48px 0; }
        .faq-section h2 { font-size: 28px; font-weight: 700; color: var(--blue-900); margin-bottom: 24px; }
        .faq-item { border: 1px solid var(--gray-200); border-radius: 12px; margin-bottom: 12px; overflow: hidden; }
        .faq-question { width: 100%; padding: 20px 24px; background: var(--white); border: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; text-align: left; font-size: 16px; font-weight: 600; color: var(--blue-900); }
        .faq-question svg { width: 24px; height: 24px; fill: var(--gray-400); transition: transform 0.3s; }
        .faq-question.active svg { transform: rotate(180deg); }
        .faq-answer { padding: 0 24px; max-height: 0; overflow: hidden; transition: all 0.3s; }
        .faq-answer.active { padding: 0 24px 20px; max-height: 500px; }
        .faq-answer p { color: var(--gray-600); font-size: 15px; line-height: 1.7; margin: 0; }
        
        .related-services { margin: 48px 0; }
        .related-services h2 { font-size: 24px; font-weight: 700; color: var(--blue-900); margin-bottom: 20px; }
        .related-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
        .related-service-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: 12px; padding: 20px; text-decoration: none; transition: all 0.3s; }
        .related-service-card:hover { border-color: var(--blue-300); box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
        .related-service-card h4 { font-size: 16px; font-weight: 600; color: var(--blue-900); margin-bottom: 8px; }
        .related-service-card p { font-size: 14px; color: var(--gray-600); margin: 0; }
        
        /* EXPERT ADVICE SECTION */
        .expert-advice { background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%); padding: 60px 24px; margin-top: 60px; }
        .expert-advice-inner { max-width: 1100px; margin: 0 auto; }
        .expert-advice h2 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 32px; font-weight: 700; color: var(--blue-900); margin-bottom: 12px; text-align: center; }
        .expert-advice > p { color: var(--gray-600); text-align: center; margin-bottom: 40px; font-size: 18px; }
        .expert-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
        .expert-card { background: white; border-radius: 16px; padding: 28px; text-decoration: none; border: 1px solid var(--gray-200); transition: all 0.3s; display: flex; flex-direction: column; }
        .expert-card:hover { border-color: var(--blue-400); box-shadow: 0 8px 24px rgba(0,0,0,0.1); transform: translateY(-4px); }
        .expert-number { width: 36px; height: 36px; background: var(--blue-100); color: var(--blue-600); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; margin-bottom: 16px; }
        .expert-card h4 { font-size: 17px; font-weight: 600; color: var(--blue-900); margin-bottom: 12px; line-height: 1.4; flex-grow: 1; }
        .expert-link { color: var(--blue-600); font-weight: 600; font-size: 14px; }
        
        .service-sidebar .sidebar-card { background: var(--gray-50); border-radius: 16px; padding: 28px; margin-bottom: 24px; }
        .sidebar-card.cta { background: linear-gradient(135deg, var(--blue-600) 0%, var(--blue-700) 100%); color: white; }
        .sidebar-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 16px; }
        .sidebar-card.cta h3 { color: white; }
        .sidebar-phone { display: block; font-size: 28px; font-weight: 700; color: white; text-decoration: none; margin-bottom: 12px; }
        .sidebar-card.cta p { color: rgba(255,255,255,0.9); font-size: 14px; margin-bottom: 16px; }
        .sidebar-btn { display: block; background: white; color: var(--blue-600); padding: 14px 24px; border-radius: 8px; text-align: center; text-decoration: none; font-weight: 600; }
        .sidebar-list { list-style: none; padding: 0; margin: 0; }
        .sidebar-list li { padding: 8px 0; border-bottom: 1px solid var(--gray-200); color: var(--gray-700); font-size: 14px; }
        .sidebar-list li:last-child { border-bottom: none; }
        
        .inline-cta { background: linear-gradient(135deg, var(--orange-500) 0%, var(--orange-600) 100%); border-radius: 16px; padding: 40px; margin: 40px 0; text-align: center; color: white; }
        .inline-cta h3 { font-size: 24px; font-weight: 700; margin-bottom: 12px; }
        .inline-cta p { font-size: 16px; opacity: 0.95; margin-bottom: 24px; }
        .inline-cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
        .inline-cta-buttons a { padding: 14px 28px; border-radius: 8px; font-weight: 600; text-decoration: none; }
        .inline-cta-buttons a.primary { background: white; color: var(--orange-600); }
        .inline-cta-buttons a.secondary { background: rgba(255,255,255,0.2); color: white; }
        
        @media (max-width: 1024px) { .service-content-inner { grid-template-columns: 1fr; } .service-sidebar { order: -1; } .expert-grid { grid-template-columns: repeat(2, 1fr); } }
        @media (max-width: 768px) { .service-hero h1 { font-size: 36px; } .services-grid, .benefits-grid, .related-grid { grid-template-columns: 1fr; } .expert-grid { grid-template-columns: 1fr; } }
    

/* ========================================
   LOCATION PAGE STYLES
   ======================================== */

    
        .area-hero { background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-800) 100%); color: white; padding: 80px 24px; }
        .area-hero-inner { max-width: 900px; margin: 0 auto; text-align: center; }
        .area-hero h1 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 48px; font-weight: 800; margin-bottom: 16px; }
        .area-hero p { font-size: 20px; opacity: 0.9; margin-bottom: 24px; }
        .response-badge { display: inline-block; background: rgba(255,255,255,0.2); padding: 12px 24px; border-radius: 30px; font-size: 18px; font-weight: 600; }
        
        .area-content { padding: 60px 24px; max-width: 1100px; margin: 0 auto; }
        .area-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 48px; }
        .area-main h2 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 28px; font-weight: 700; color: var(--blue-900); margin: 32px 0 16px; }
        .area-main p { color: var(--gray-600); font-size: 17px; line-height: 1.8; margin-bottom: 20px; }
        .area-main ul { margin: 20px 0; padding-left: 24px; }
        .area-main li { color: var(--gray-600); font-size: 16px; margin-bottom: 12px; line-height: 1.7; }
        
        .area-sidebar { }
        .area-card { background: var(--gray-50); border-radius: 16px; padding: 24px; margin-bottom: 24px; }
        .area-card.cta { background: linear-gradient(135deg, var(--blue-600) 0%, var(--blue-700) 100%); color: white; }
        .area-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 16px; }
        .area-card.cta h3 { color: white; }
        .area-card p { font-size: 15px; color: var(--gray-600); margin-bottom: 12px; }
        .area-card.cta p { color: rgba(255,255,255,0.9); }
        .area-phone { display: block; font-size: 28px; font-weight: 700; color: white; text-decoration: none; margin-bottom: 16px; }
        .area-btn { display: block; background: white; color: var(--blue-600); padding: 14px 24px; border-radius: 8px; text-align: center; text-decoration: none; font-weight: 600; }
        
        .services-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin: 24px 0; }
        .service-item { display: flex; align-items: center; gap: 10px; padding: 12px 16px; background: var(--blue-50); border-radius: 8px; text-decoration: none; color: var(--blue-900); font-weight: 500; transition: all 0.2s; }
        .service-item:hover { background: var(--blue-100); }
        .service-item svg { width: 20px; height: 20px; fill: var(--blue-600); }
        
        @media (max-width: 900px) {
            .area-grid { grid-template-columns: 1fr; }
            .area-hero h1 { font-size: 36px; }
            .services-list { grid-template-columns: 1fr; }
        }
    

/* ========================================
   BLOG POST STYLES
   ======================================== */

    
        .blog-hero { background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 100%); color: white; padding: 80px 24px; text-align: center; }
        .blog-hero h1 { font-size: clamp(32px, 5vw, 48px); font-weight: 800; margin-bottom: 16px; line-height: 1.2; }
        .blog-category { display: inline-block; background: rgba(255,255,255,0.2); padding: 8px 20px; border-radius: 30px; font-size: 14px; margin-bottom: 20px; }
        .blog-content { max-width: 900px; margin: 0 auto; padding: 60px 24px; }
        .blog-content h2 { font-size: 28px; color: #1e3a5f; margin: 48px 0 20px; padding-bottom: 12px; border-bottom: 3px solid #dbeafe; }
        .blog-content h2:first-child { margin-top: 0; }
        .blog-content h3 { font-size: 22px; color: #1e3a5f; margin: 36px 0 16px; }
        .blog-content h4 { font-size: 18px; color: #2563eb; margin: 28px 0 14px; }
        .blog-content p { color: #4b5563; font-size: 17px; line-height: 1.9; margin-bottom: 20px; }
        .blog-content ul.article-list { margin: 24px 0; padding-left: 0; list-style: none; }
        .blog-content ul.article-list li { color: #4b5563; font-size: 16px; margin-bottom: 14px; padding-left: 28px; position: relative; line-height: 1.7; }
        .blog-content ul.article-list li::before { content: "✓"; position: absolute; left: 0; color: #2563eb; font-weight: bold; }
        .blog-content ol { margin: 24px 0; padding-left: 28px; }
        .blog-content ol li { color: #4b5563; font-size: 16px; margin-bottom: 14px; line-height: 1.7; }
        .blog-content a { color: #2563eb; text-decoration: none; }
        .blog-content a:hover { text-decoration: underline; }
        .blog-content strong { color: #1e3a5f; }
        .cta-banner { background: linear-gradient(135deg, #f97316 0%, #ea580c 100%); padding: 60px 24px; text-align: center; color: white; }
        .cta-banner h2 { font-size: 32px; margin-bottom: 16px; }
        .cta-banner p { font-size: 18px; opacity: 0.95; margin-bottom: 24px; }
        .cta-banner a { display: inline-block; background: white; color: #ea580c; padding: 16px 32px; border-radius: 8px; font-weight: 600; text-decoration: none; margin: 8px; }
    

/* ========================================
   BLOG INDEX PAGE STYLES
   ======================================== */

    
        .page-hero { background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-800) 100%); color: white; padding: 80px 24px; text-align: center; }
        .page-hero h1 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 48px; font-weight: 800; margin-bottom: 16px; }
        .page-hero p { font-size: 20px; opacity: 0.9; max-width: 600px; margin: 0 auto; }
        .page-content { padding: 60px 24px; max-width: 1100px; margin: 0 auto; }
        .page-content h2 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 28px; font-weight: 700; color: var(--blue-900); margin: 40px 0 16px; }
        .page-content p { color: var(--gray-600); font-size: 17px; line-height: 1.8; margin-bottom: 20px; }
        
        .features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 40px 0; }
        .feature-card { background: var(--gray-50); border-radius: 16px; padding: 32px; }
        .feature-card svg { width: 48px; height: 48px; fill: var(--blue-600); margin-bottom: 16px; }
        .feature-card h3 { font-size: 20px; font-weight: 700; color: var(--blue-900); margin-bottom: 12px; }
        .feature-card p { color: var(--gray-600); font-size: 15px; margin: 0; line-height: 1.7; }
        
        .reviews-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin: 40px 0; }
        .review-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: 16px; padding: 32px; }
        .review-stars { color: #f59e0b; font-size: 20px; margin-bottom: 16px; }
        .review-card blockquote { color: var(--gray-700); font-size: 16px; line-height: 1.7; font-style: italic; margin: 0 0 16px; }
        .review-card cite { color: var(--gray-500); font-size: 14px; font-style: normal; }
        
        .areas-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin: 40px 0; }
        .area-card { background: var(--blue-50); border-radius: 12px; padding: 20px; text-align: center; text-decoration: none; transition: all 0.3s; }
        .area-card:hover { background: var(--blue-100); transform: translateY(-2px); }
        .area-card h3 { font-size: 16px; font-weight: 700; color: var(--blue-900); margin: 0; }
        
        .blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 40px 0; }
        .blog-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: 16px; overflow: hidden; text-decoration: none; transition: all 0.3s; }
        .blog-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.1); transform: translateY(-4px); }
        .blog-card-image { height: 180px; background: var(--gray-100); }
        .blog-card-content { padding: 24px; }
        .blog-card h3 { font-size: 18px; font-weight: 700; color: var(--blue-900); margin-bottom: 8px; }
        .blog-card p { color: var(--gray-600); font-size: 14px; margin: 0; }
        
        @media (max-width: 1024px) {
            .features-grid { grid-template-columns: repeat(2, 1fr); }
            .areas-grid { grid-template-columns: repeat(3, 1fr); }
            .blog-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 768px) {
            .page-hero h1 { font-size: 36px; }
            .features-grid, .reviews-grid, .blog-grid { grid-template-columns: 1fr; }
            .areas-grid { grid-template-columns: repeat(2, 1fr); }
        }
    

/* ========================================
   STATIC PAGE STYLES
   ======================================== */

    
        .page-hero { background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-800) 100%); color: white; padding: 80px 24px; text-align: center; }
        .page-hero h1 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 48px; font-weight: 800; margin-bottom: 16px; }
        .page-hero p { font-size: 20px; opacity: 0.9; max-width: 600px; margin: 0 auto; }
        
        .breadcrumb-bar { background: var(--gray-100); padding: 16px 24px; }
        .breadcrumb-bar-inner { max-width: 1200px; margin: 0 auto; }
        .breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--gray-600); }
        .breadcrumb a { color: var(--blue-600); text-decoration: none; }
        .breadcrumb svg { width: 16px; height: 16px; }
        
        .page-content { max-width: 900px; margin: 0 auto; padding: 60px 24px; }
        .page-content h2 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 32px; font-weight: 700; color: var(--blue-900); margin: 48px 0 20px; }
        .page-content h2:first-child { margin-top: 0; }
        .page-content h3 { font-size: 22px; font-weight: 700; color: var(--blue-800); margin: 32px 0 16px; }
        .page-content p { color: var(--gray-700); font-size: 17px; line-height: 1.8; margin-bottom: 20px; }
        .page-content ul { margin: 20px 0; padding-left: 0; list-style: none; }
        .page-content li { color: var(--gray-700); font-size: 16px; line-height: 1.7; margin-bottom: 12px; padding-left: 28px; position: relative; }
        .page-content li::before { content: "✓"; position: absolute; left: 0; color: var(--blue-600); font-weight: bold; }
        .page-content a { color: var(--blue-600); text-decoration: none; font-weight: 500; }
        .page-content a:hover { text-decoration: underline; }
        .page-content strong { color: var(--blue-900); }
        
        .credentials-box { background: var(--blue-50); border: 2px solid var(--blue-200); border-radius: 16px; padding: 32px; margin: 32px 0; }
        .credential-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 20px; }
        .credential-item:last-child { margin-bottom: 0; }
        .credential-badge { background: var(--blue-600); color: white; padding: 8px 16px; border-radius: 8px; font-weight: 700; font-size: 14px; white-space: nowrap; }
        .credential-text strong { display: block; color: var(--blue-900); margin-bottom: 4px; }
        .credential-text span { color: var(--gray-600); font-size: 15px; }
        
        .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin: 40px 0; }
        .stat-card { background: var(--gray-50); border-radius: 12px; padding: 24px; text-align: center; }
        .stat-number { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 36px; font-weight: 800; color: var(--blue-600); }
        .stat-label { color: var(--gray-600); font-size: 14px; margin-top: 4px; }
        
        .service-links { background: var(--gray-50); border-radius: 16px; padding: 32px; margin: 32px 0; }
        .service-links h3 { margin-top: 0; }
        .service-links-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 20px; }
        .service-links-grid a { display: block; padding: 12px 16px; background: white; border-radius: 8px; color: var(--blue-700); font-weight: 500; transition: all 0.2s; }
        .service-links-grid a:hover { background: var(--blue-600); color: white; text-decoration: none; }
        
        .cta-box { background: linear-gradient(135deg, var(--orange-500) 0%, var(--orange-600) 100%); border-radius: 16px; padding: 48px; text-align: center; color: white; margin: 48px 0; }
        .cta-box h3 { font-size: 28px; font-weight: 700; margin: 0 0 12px 0; color: white; }
        .cta-box p { font-size: 18px; opacity: 0.95; margin-bottom: 24px; }
        .cta-box a { display: inline-block; background: white; color: var(--orange-600); padding: 16px 32px; border-radius: 8px; font-weight: 600; text-decoration: none; margin: 8px; }
        .cta-box a:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.2); }
        
        .areas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 24px 0; }
        .area-card { background: var(--gray-50); border-radius: 12px; padding: 24px; }
        .area-card h4 { font-size: 18px; font-weight: 700; color: var(--blue-900); margin: 0 0 12px 0; }
        .area-card ul { margin: 0; padding-left: 20px; list-style: disc; }
        .area-card li { padding-left: 0; margin-bottom: 6px; }
        .area-card li::before { display: none; }
        
        @media (max-width: 768px) {
            .page-hero h1 { font-size: 36px; }
            .stats-grid { grid-template-columns: repeat(2, 1fr); }
            .service-links-grid { grid-template-columns: 1fr; }
            .areas-grid { grid-template-columns: 1fr; }
        }
    

/* ========================================
   HOME PAGE STYLES
   ======================================== */

    
        .quick-services { padding: 80px 24px; background: var(--white); }
        .quick-services-inner { max-width: 1200px; margin: 0 auto; }
        .quick-services h2 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 36px; font-weight: 700; color: var(--blue-900); text-align: center; margin-bottom: 48px; }
        .quick-services-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
        .quick-service-card { background: var(--gray-50); border-radius: 16px; padding: 28px 20px; text-align: center; text-decoration: none; transition: all 0.3s; border: 2px solid transparent; }
        .quick-service-card:hover { border-color: var(--blue-500); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(37, 99, 235, 0.15); }
        .quick-service-icon { font-size: 40px; margin-bottom: 16px; }
        .quick-service-card h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 16px; font-weight: 700; color: var(--blue-900); }
        
        .why-choose { padding: 80px 24px; background: var(--blue-50); }
        .why-choose-inner { max-width: 1200px; margin: 0 auto; }
        .why-choose h2 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 36px; font-weight: 700; color: var(--blue-900); text-align: center; margin-bottom: 48px; }
        .why-choose-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
        .why-choose-card { background: var(--white); border-radius: 16px; padding: 32px; }
        .why-choose-card h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 20px; font-weight: 700; color: var(--blue-900); margin-bottom: 12px; display: flex; align-items: center; gap: 12px; }
        .why-choose-card h3 svg { width: 28px; height: 28px; fill: var(--blue-600); }
        .why-choose-card p { color: var(--gray-600); font-size: 15px; line-height: 1.7; margin: 0; }
        
        .services-overview { padding: 80px 24px; background: var(--white); }
        .services-overview-inner { max-width: 1200px; margin: 0 auto; }
        .services-overview h2 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 36px; font-weight: 700; color: var(--blue-900); text-align: center; margin-bottom: 48px; }
        .services-overview-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
        .service-overview-card { background: var(--gray-50); border-radius: 16px; padding: 32px; transition: all 0.3s; }
        .service-overview-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
        .service-overview-card h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 22px; font-weight: 700; color: var(--blue-900); margin-bottom: 12px; }
        .service-overview-card p { color: var(--gray-600); font-size: 15px; line-height: 1.7; margin-bottom: 16px; }
        .service-overview-card a { color: var(--blue-600); font-weight: 600; text-decoration: none; }
        
        .testimonials { padding: 80px 24px; background: var(--gray-50); }
        .testimonials-inner { max-width: 1200px; margin: 0 auto; }
        .testimonials h2 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 36px; font-weight: 700; color: var(--blue-900); text-align: center; margin-bottom: 48px; }
        .testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
        .testimonial-card { background: var(--white); border-radius: 16px; padding: 32px; }
        .testimonial-card blockquote { color: var(--gray-700); font-size: 16px; line-height: 1.7; font-style: italic; margin: 0 0 16px; }
        .testimonial-card cite { color: var(--gray-500); font-size: 14px; font-style: normal; }
        .testimonial-stars { color: #f59e0b; margin-bottom: 12px; }
        
        .about-section { padding: 80px 24px; background: var(--white); }
        .about-inner { max-width: 900px; margin: 0 auto; text-align: center; }
        .about-inner h2 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 36px; font-weight: 700; color: var(--blue-900); margin-bottom: 24px; }
        .about-inner p { color: var(--gray-600); font-size: 18px; line-height: 1.8; margin-bottom: 24px; }
        .about-inner a { color: var(--blue-600); font-weight: 600; text-decoration: none; }
        
        @media (max-width: 1024px) {
            .quick-services-grid { grid-template-columns: repeat(3, 1fr); }
            .why-choose-grid, .services-overview-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 768px) {
            .quick-services-grid { grid-template-columns: repeat(2, 1fr); }
            .why-choose-grid, .services-overview-grid, .testimonials-grid { grid-template-columns: 1fr; }
        }
    

/* ========================================
   SERVICE INDEX PAGE STYLES
   ======================================== */

        .services-hero { background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-800) 100%); color: white; padding: 80px 24px; text-align: center; }
        .services-hero h1 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 48px; font-weight: 800; margin-bottom: 16px; }
        .services-hero p { font-size: 20px; opacity: 0.9; margin-bottom: 24px; }
        .services-hero .btn-hero-primary { display: inline-flex; align-items: center; gap: 12px; background: var(--orange-500); color: white; padding: 16px 32px; border-radius: 8px; font-weight: 600; text-decoration: none; font-size: 18px; transition: all 0.3s; }
        .services-hero .btn-hero-primary:hover { background: var(--orange-600); transform: translateY(-2px); }
        .services-hero .btn-hero-primary svg { width: 24px; height: 24px; fill: currentColor; }
        
        .service-category { padding: 60px 24px; }
        .service-category:nth-child(even) { background: var(--gray-50); }
        .service-category-inner { max-width: 1200px; margin: 0 auto; }
        .service-category h2 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 28px; font-weight: 700; color: var(--blue-900); margin-bottom: 12px; }
        .service-category > div > p { color: var(--gray-600); font-size: 16px; margin-bottom: 32px; }
        
        .service-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
        .service-link { display: flex; align-items: flex-start; gap: 16px; background: white; border: 2px solid var(--gray-200); border-radius: 12px; padding: 20px; text-decoration: none; transition: all 0.3s; }
        .service-link:hover { border-color: var(--blue-500); box-shadow: 0 8px 24px rgba(37, 99, 235, 0.15); transform: translateY(-2px); }
        .service-link-icon { flex-shrink: 0; width: 48px; height: 48px; background: var(--blue-100); border-radius: 12px; display: flex; align-items: center; justify-content: center; }
        .service-link-icon svg { width: 24px; height: 24px; fill: var(--blue-600); }
        .service-link-content h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 17px; font-weight: 700; color: var(--blue-900); margin: 0 0 6px 0; }
        .service-link-content p { font-size: 14px; color: var(--gray-600); margin: 0; }
        
        @media (max-width: 1024px) {
            .service-list { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 768px) {
            .services-hero h1 { font-size: 36px; }
            .service-list { grid-template-columns: 1fr; }
        }

/* ========================================
   LOCATION/AREAS PAGE STYLES
   ======================================== */

        .location-hero { background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-800) 100%); color: white; padding: 80px 24px; text-align: center; }
        .location-hero h1 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 48px; font-weight: 800; margin-bottom: 16px; }
        .location-hero p { font-size: 20px; opacity: 0.9; margin-bottom: 24px; }
        .location-hero .btn-hero-primary { display: inline-flex; align-items: center; gap: 12px; background: var(--orange-500); color: white; padding: 16px 32px; border-radius: 8px; font-weight: 600; text-decoration: none; font-size: 18px; transition: all 0.3s; }
        .location-hero .btn-hero-primary:hover { background: var(--orange-600); transform: translateY(-2px); }
        .location-hero .btn-hero-primary svg { width: 24px; height: 24px; fill: currentColor; }
        
        .areas-grid-section { padding: 60px 24px; }
        .areas-grid-inner { max-width: 1200px; margin: 0 auto; }
        .areas-grid-inner h2 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 32px; font-weight: 700; color: var(--blue-900); margin-bottom: 16px; }
        .areas-grid-inner > p { color: var(--gray-600); font-size: 18px; margin-bottom: 40px; }
        .areas-grid-inner h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 24px; font-weight: 700; color: var(--blue-800); margin: 40px 0 20px 0; }
        
        .areas-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
        .areas-grid .area-card { display: block; background: white; border: 2px solid var(--gray-200); border-radius: 12px; padding: 24px; text-decoration: none; transition: all 0.3s; }
        .areas-grid .area-card:hover { border-color: var(--blue-500); box-shadow: 0 8px 24px rgba(37, 99, 235, 0.15); transform: translateY(-2px); }
        .areas-grid .area-card h4 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 18px; font-weight: 700; color: var(--blue-900); margin: 0 0 8px 0; }
        .areas-grid .area-card p { font-size: 14px; color: var(--gray-600); margin: 0; }
        
        @media (max-width: 1024px) {
            .areas-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 768px) {
            .location-hero h1 { font-size: 36px; }
            .areas-grid { grid-template-columns: 1fr; }
        }

/* ========================================
   WHY-US SECTION STYLES
   ======================================== */

        .why-us { padding: 60px 24px; background: var(--blue-50); }
        .why-us-inner { max-width: 1200px; margin: 0 auto; }
        .why-us-inner h2 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 32px; font-weight: 700; color: var(--blue-900); text-align: center; margin-bottom: 40px; }
        .why-us-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
        .why-us-item { background: white; border-radius: 12px; padding: 24px; display: flex; align-items: flex-start; gap: 16px; }
        .why-us-item svg { flex-shrink: 0; width: 32px; height: 32px; fill: var(--blue-600); }
        .why-us-item h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 17px; font-weight: 700; color: var(--blue-900); margin: 0 0 8px 0; }
        .why-us-item p { font-size: 14px; color: var(--gray-600); margin: 0; line-height: 1.6; }
        
        @media (max-width: 1024px) {
            .why-us-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 768px) {
            .why-us-grid { grid-template-columns: 1fr; }
        }

/* ========================================
   CTA BANNER STYLES
   ======================================== */

        .cta-banner { padding: 80px 24px; background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-800) 100%); }
        .cta-banner-inner { max-width: 800px; margin: 0 auto; text-align: center; color: white; }
        .cta-banner-inner h2 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 36px; font-weight: 700; margin-bottom: 16px; color: white; }
        .cta-banner-inner p { font-size: 18px; opacity: 0.9; margin-bottom: 32px; color: white; }
        .cta-banner-buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
        .btn-cta-large { display: inline-flex; align-items: center; gap: 12px; padding: 18px 32px; border-radius: 10px; font-weight: 600; font-size: 17px; text-decoration: none; transition: all 0.3s; }
        .btn-cta-large.orange { background: var(--orange-500); color: white; }
        .btn-cta-large.orange:hover { background: var(--orange-600); transform: translateY(-2px); }
        .btn-cta-large.orange svg { width: 24px; height: 24px; }
        .btn-cta-large.white { background: white; color: var(--blue-900); }
        .btn-cta-large.white:hover { background: var(--gray-100); transform: translateY(-2px); }
        
        @media (max-width: 768px) {
            .cta-banner-inner h2 { font-size: 28px; }
            .cta-banner-buttons { flex-direction: column; align-items: center; }
            .btn-cta-large { width: 100%; max-width: 300px; justify-content: center; }
        }

/* ========================================
   CTA BANNER ORANGE VARIANT
   ======================================== */

        .cta-banner.orange { background: linear-gradient(135deg, var(--orange-500) 0%, var(--orange-600) 100%); }
        .cta-banner.orange h2, .cta-banner.orange .cta-banner-inner h2 { color: white; }
        .cta-banner.orange p, .cta-banner.orange .cta-banner-inner p { color: white; }

/* ========================================
   CONTACT PAGE STYLES
   ======================================== */

        .contact-grid { max-width: 1200px; margin: 0 auto; padding: 60px 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
        
        .contact-info h2 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 28px; font-weight: 700; color: var(--blue-900); margin: 32px 0 16px 0; }
        .contact-info > p { color: var(--gray-600); font-size: 16px; line-height: 1.7; margin-bottom: 20px; }
        
        .emergency-box { background: linear-gradient(135deg, var(--orange-500) 0%, var(--orange-600) 100%); border-radius: 16px; padding: 24px; color: white; margin-bottom: 32px; }
        .emergency-box h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 20px; font-weight: 700; margin: 0 0 12px 0; display: flex; align-items: center; gap: 12px; }
        .emergency-box h3 svg { width: 28px; height: 28px; fill: white; flex-shrink: 0; }
        .emergency-box p { font-size: 15px; opacity: 0.95; margin-bottom: 16px; line-height: 1.6; }
        .emergency-box a { display: inline-block; background: white; color: var(--orange-600); padding: 12px 24px; border-radius: 8px; font-weight: 700; font-size: 18px; text-decoration: none; }
        .emergency-box a:hover { background: var(--gray-100); }
        
        .credentials-inline { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 24px; }
        .credential-tag { background: var(--blue-100); color: var(--blue-700); padding: 8px 16px; border-radius: 20px; font-size: 14px; font-weight: 600; }
        
        .contact-card { background: var(--gray-50); border-radius: 12px; padding: 24px; margin-bottom: 20px; }
        .contact-card h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 18px; font-weight: 700; color: var(--blue-900); margin: 0 0 12px 0; display: flex; align-items: center; gap: 12px; }
        .contact-card h3 svg { width: 24px; height: 24px; fill: var(--blue-600); flex-shrink: 0; }
        .contact-card p { color: var(--gray-600); font-size: 15px; margin: 0 0 8px 0; line-height: 1.6; }
        .contact-card p:last-child { margin-bottom: 0; }
        .contact-card a { color: var(--blue-600); text-decoration: none; font-weight: 500; }
        .contact-card a:hover { text-decoration: underline; }
        .contact-card .hours { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--gray-200); }
        .contact-card .hours p { margin-bottom: 4px; }
        
        .service-areas-box { background: var(--blue-50); border-radius: 12px; padding: 24px; margin-top: 24px; }
        .service-areas-box h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 18px; font-weight: 700; color: var(--blue-900); margin: 0 0 12px 0; }
        .service-areas-box p { color: var(--gray-600); font-size: 15px; margin-bottom: 16px; }
        .service-areas-box .areas-list { display: flex; flex-wrap: wrap; gap: 8px; }
        .service-areas-box .areas-list a { background: white; color: var(--blue-700); padding: 8px 16px; border-radius: 8px; font-size: 14px; font-weight: 500; text-decoration: none; transition: all 0.2s; }
        .service-areas-box .areas-list a:hover { background: var(--blue-600); color: white; }
        
        .contact-form-wrapper { background: white; border: 2px solid var(--gray-200); border-radius: 16px; padding: 32px; }
        .contact-form-wrapper h2 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 28px; font-weight: 700; color: var(--blue-900); margin: 0 0 24px 0; }
        
        .form-group { margin-bottom: 20px; }
        .form-group label { display: block; font-weight: 600; color: var(--blue-900); margin-bottom: 8px; font-size: 15px; }
        .form-group .required { color: var(--orange-500); }
        .form-group input, .form-group select, .form-group textarea { width: 100%; padding: 14px 16px; border: 2px solid var(--gray-200); border-radius: 8px; font-size: 16px; font-family: 'DM Sans', sans-serif; transition: border-color 0.2s; }
        .form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--blue-500); }
        .form-group textarea { min-height: 120px; resize: vertical; }
        
        .form-submit { width: 100%; background: var(--blue-600); color: white; padding: 16px 24px; border: none; border-radius: 8px; font-size: 17px; font-weight: 600; cursor: pointer; transition: all 0.3s; }
        .form-submit:hover { background: var(--blue-700); transform: translateY(-2px); }
        
        .form-note { margin-top: 16px; font-size: 14px; color: var(--gray-500); text-align: center; }
        .form-note a { color: var(--blue-600); font-weight: 500; }
        
        .faq-section { background: var(--gray-50); padding: 60px 24px; }
        .faq-inner { max-width: 800px; margin: 0 auto; }
        .faq-inner h2 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 32px; font-weight: 700; color: var(--blue-900); text-align: center; margin-bottom: 40px; }
        .faq-item { background: white; border-radius: 12px; padding: 24px; margin-bottom: 16px; }
        .faq-item h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 18px; font-weight: 700; color: var(--blue-900); margin: 0 0 12px 0; }
        .faq-item p { color: var(--gray-600); font-size: 15px; line-height: 1.7; margin: 0; }
        .faq-item a { color: var(--blue-600); font-weight: 500; }
        
        @media (max-width: 968px) {
            .contact-grid { grid-template-columns: 1fr; gap: 40px; }
        }
        @media (max-width: 768px) {
            .contact-grid { padding: 40px 20px; }
            .contact-form-wrapper { padding: 24px; }
            .credentials-inline { justify-content: center; }
        }

/* ========================================
   BLOG PAGE STYLES
   ======================================== */

        .blog-categories { padding: 60px 24px; background: var(--gray-50); }
        .blog-categories-inner { max-width: 1200px; margin: 0 auto; }
        .blog-categories-inner h2 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 28px; font-weight: 700; color: var(--blue-900); text-align: center; margin-bottom: 32px; }
        
        .category-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
        .category-card { background: white; border: 2px solid var(--gray-200); border-radius: 12px; padding: 24px; text-align: center; text-decoration: none; transition: all 0.3s; }
        .category-card:hover { border-color: var(--blue-500); transform: translateY(-4px); box-shadow: 0 8px 24px rgba(37, 99, 235, 0.15); }
        .category-icon { font-size: 32px; display: block; margin-bottom: 12px; }
        .category-card h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 16px; font-weight: 700; color: var(--blue-900); margin: 0 0 8px 0; }
        .category-card p { font-size: 13px; color: var(--gray-600); margin: 0; line-height: 1.5; }
        
        .blog-articles { padding: 60px 24px; }
        .blog-articles.alt { background: var(--gray-50); }
        .blog-articles-inner { max-width: 1200px; margin: 0 auto; }
        .blog-articles-inner h2 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 28px; font-weight: 700; color: var(--blue-900); margin-bottom: 32px; }
        
        .articles-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
        .article-card { background: white; border: 2px solid var(--gray-200); border-radius: 12px; padding: 24px; text-decoration: none; transition: all 0.3s; }
        .blog-articles.alt .article-card { background: white; }
        .article-card:hover { border-color: var(--blue-500); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37, 99, 235, 0.12); }
        .article-card h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 16px; font-weight: 700; color: var(--blue-900); margin: 0 0 8px 0; line-height: 1.4; }
        .article-card p { font-size: 14px; color: var(--gray-600); margin: 0; line-height: 1.5; }
        
        @media (max-width: 1024px) {
            .category-grid { grid-template-columns: repeat(3, 1fr); }
            .articles-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 768px) {
            .category-grid { grid-template-columns: repeat(2, 1fr); }
            .articles-grid { grid-template-columns: 1fr; }
        }
        @media (max-width: 480px) {
            .category-grid { grid-template-columns: 1fr; }
        }
