﻿/* ===================================
   ABEC - A Better Electrical Company
   Custom Website Styles
   =================================== */

/* ===================================
   CSS Reset & Variables
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Colors */
    --color-blue: #2563eb;
    --color-blue-light: #3b82f6;
    --color-blue-dark: #1d4ed8;
    --color-green: #10b981;
    --color-green-light: #34d399;
    --color-green-dark: #059669;
    --color-cream: #f9fafb;
    --color-white: #FFFFFF;
    --color-black: #111827;
    --color-navy: #1e293b;
    --color-gray: #64748b;
    --color-gray-light: #cbd5e1;
    --color-gray-lighter: #f1f5f9;
    
    /* Typography */
    --font-main: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif, 'Inter';
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    --spacing-xxl: 6rem;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scroll-padding-top: 100px;
}

body {
    font-family: var(--font-main);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-navy);
    background-color: var(--color-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

/* Performance optimization for animations and layout */
.service-card,
.blog-card,
.blog-article,
.testimonial-card,
.value-card,
.project-card {
    will-change: transform, opacity;
    contain: layout style paint;
}

.service-pricing-popup,
.ev-offer-popup {
    will-change: opacity, visibility;
    contain: layout style paint;
}

/* Ensure all sections stack properly */
section {
    position: relative;
    display: block;
    width: 100%;
    contain: layout style;
}

/* Fade-in animation for scroll */
.fade-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   Typography
   =================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: var(--font-weight-bold);
    line-height: 1.2;
    color: var(--color-navy);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all var(--transition-fast);
}

strong {
    font-weight: var(--font-weight-bold);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ===================================
   HEADER / NAVIGATION
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-cream);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    z-index: 100;
    transition: all var(--transition-normal);
}

.header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.125rem 0;
    min-height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    font-size: 1rem;
    font-weight: var(--font-weight-semibold);
    color: var(--color-navy);
    transition: transform var(--transition-fast);
}

.nav-logo:hover {
    transform: scale(1.02);
}

.logo-img {
    height: 52px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text strong {
    font-size: 1rem;
    font-weight: var(--font-weight-extrabold);
    line-height: 1.2;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link {
    color: var(--color-navy);
    font-weight: var(--font-weight-medium);
    padding: 0.625rem 1.125rem;
    border-radius: 8px;
    transition: all var(--transition-fast);
    font-size: 0.9375rem;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-blue);
    background-color: rgba(28, 159, 234, 0.08);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 10px;
    border-radius: 6px;
    transition: background-color var(--transition-fast);
}

.nav-toggle:hover {
    background-color: rgba(28, 159, 234, 0.05);
}

.nav-toggle span {
    width: 26px;
    height: 3px;
    background-color: var(--color-navy);
    border-radius: 3px;
    transition: all var(--transition-normal);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    position: relative;
    min-height: 600px;
    height: 80vh;
    max-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.95) 0%, rgba(59, 130, 246, 0.9) 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-blend-mode: normal;
    margin: 80px 0 0 0;
    padding: 2rem 0;
    z-index: 1;
    transform: none;
}

.hero-overlay {
    display: none;
}

.hero-content {
    max-width: 1000px;
    padding: 2rem;
    text-align: center;
    color: white;
}

.hero-subtitle {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #FCD34D;
    margin-bottom: 1.5rem;
}

.hero-main-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero-primary,
.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}
.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    padding: 1.125rem 2rem;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-hero-primary {
    background: #D97706;
    color: white;
    box-shadow: 0 4px 16px rgba(217, 119, 6, 0.3);
}

.btn-hero-primary:hover {
    background: #B45309;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(217, 119, 6, 0.5);
}

.btn-hero-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-hero-secondary:hover {
    background: white;
    color: #1e40af;
    transform: translateY(-3px);
}

.hero-scroll-down {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: white;
    font-size: 2rem;
    animation: bounce 2s infinite;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.hero-scroll-down:hover {
    opacity: 1;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ===================================
   SERVICES SECTION
   =================================== */
    font-weight: 600;
    text-align: center;
}

/* ===================================
   DIVIDER / SPACER SECTION
   =================================== */
.section-divider {
    background: linear-gradient(135deg, #dbeafe 0%, #e0e7ff 100%);
    padding: 2rem 0;
    position: relative;
    z-index: 2;
    margin: 0;
    transform: none;
}

/* ===================================
   SERVICES SECTION (Blue Background)
   =================================== */
.services-section {
    position: relative;
    background: linear-gradient(135deg, #dbeafe 0%, #e0e7ff 100%);
    padding: 5rem 0;
    margin: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    z-index: 2;
    transform: none;
}

.section-title {
    font-size: 2.75rem;
    font-weight: var(--font-weight-extrabold);
    color: var(--color-navy);
    text-align: center;
    margin-bottom: 3.5rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
}

.service-card {
    position: relative;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 20px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    z-index: 2;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
    border-color: #d1d5db;
    background: #ffffff;
}

/* Clean subtle accent colors for each service card */
.service-card:nth-child(1) {
    background: #ffffff;
    border-left: 4px solid #2563eb;
}

.service-card:nth-child(1):hover {
    border-left-color: #1d4ed8;
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.15);
}

.service-card:nth-child(2) {
    background: #ffffff;
    border-left: 4px solid #10b981;
}

.service-card:nth-child(2):hover {
    border-left-color: #059669;
    box-shadow: 0 12px 40px rgba(16, 185, 129, 0.15);
}

.service-card:nth-child(3) {
    background: #ffffff;
    border-left: 4px solid #8b5cf6;
}

.service-card:nth-child(3):hover {
    border-left-color: #7c3aed;
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.15);
}

.service-card:nth-child(4) {
    background: #ffffff;
    border-left: 4px solid #f59e0b;
}

.service-card:nth-child(4):hover {
    border-left-color: #d97706;
    box-shadow: 0 12px 40px rgba(245, 158, 11, 0.15);
}

.service-card:nth-child(5) {
    background: #ffffff;
    border-left: 4px solid #06b6d4;
}

.service-card:nth-child(5):hover {
    border-left-color: #0891b2;
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.15);
}

.service-card-title {
    font-size: 1.65rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.75rem;
    line-height: 1.3;
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.service-card-desc {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.7;
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.service-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #e5e7eb 50%, transparent 100%);
    margin: 1rem 0;
}

.service-estimate {
    font-size: 0.875rem;
    color: #9ca3af;
    margin-bottom: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.btn-service {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: #2563eb;
    color: white;
    font-weight: 600;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid #2563eb;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.15);
    position: relative;
    z-index: 2;
}

.btn-service:hover {
    background: #1d4ed8;
    border-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
}

/* ===================================
   EV CHARGING POPUP BANNER
   =================================== */
/* ===================================
   POPUP STYLES
   =================================== */

/* EV Charging Popup - Center Right */
#evOfferPopup {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%) rotate(-2deg);
    max-width: 200px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-radius: 16px;
    padding: 1.5rem 1.25rem;
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.4), 0 0 0 3px rgba(59, 130, 246, 0.3);
    z-index: 999;
    animation: stickerBounce 3s ease-in-out infinite;
    border: 3px solid white;
    cursor: pointer;
    transition: all 0.3s ease;
}

#evOfferPopup:hover {
    transform: translateY(-50%) rotate(0deg) scale(1.05);
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.5), 0 0 0 3px rgba(59, 130, 246, 0.5);
}

@keyframes stickerBounce {
    0%, 100% {
        transform: translateY(-50%) rotate(-2deg);
    }
    50% {
        transform: translateY(-50%) rotate(-1deg) translateX(-3px);
    }
}

/* Service Pricing Popup - Center Left, Combined Design */
.service-pricing-popup {
    position: fixed;
    top: 55%;
    left: 15px;
    transform: translateY(-50%);
    max-width: 280px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    z-index: 999;
    border: 2px solid rgba(37, 99, 235, 0.15);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.service-pricing-popup.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    animation: slideInLeft 0.5s ease-out;
}

.service-pricing-popup:hover {
    transform: translateY(-50%) translateX(5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.18);
    border-color: rgba(37, 99, 235, 0.3);
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateY(-50%) translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(-50%) translateX(0);
    }
}

.pricing-header {
    text-align: center;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(37, 99, 235, 0.1);
}

.pricing-header i {
    font-size: 2rem;
    color: #2563eb;
    margin-bottom: 0.5rem;
    display: block;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1e293b;
    margin: 0;
}

.free-estimate-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border-radius: 10px;
    margin-bottom: 1.25rem;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.free-estimate-banner i {
    font-size: 1.25rem;
}

.pricing-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.pricing-item {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 0.75rem;
    background: rgba(37, 99, 235, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.pricing-item:hover {
    background: rgba(37, 99, 235, 0.1);
    transform: translateX(3px);
}

.pricing-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pricing-icon i {
    color: white;
    font-size: 1.25rem;
}

.pricing-details {
    flex: 1;
}

.pricing-details h4 {
    font-size: 0.875rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 0.25rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-amount {
    font-size: 1.5rem;
    font-weight: 900;
    color: #2563eb;
    margin: 0;
    line-height: 1;
}

.pricing-amount span {
    font-size: 0.875rem;
    font-weight: 600;
    color: #64748b;
}

.pricing-desc {
    font-size: 0.75rem;
    color: #64748b;
    margin: 0.25rem 0 0 0;
}

.pricing-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(37, 99, 235, 0.2) 50%, transparent 100%);
}

.emergency-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    color: white;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: emergencyPulse 2s ease-in-out infinite;
}

.emergency-banner i {
    font-size: 1rem;
    animation: emergencyFlash 1.5s ease-in-out infinite;
}

@keyframes emergencyPulse {
    0%, 100% {
        box-shadow: 0 2px 8px rgba(220, 38, 38, 0.3);
    }
    50% {
        box-shadow: 0 4px 16px rgba(220, 38, 38, 0.5);
    }
}

@keyframes emergencyFlash {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

.btn-pricing-popup {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-pricing-popup:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

/* Shared Popup Styles */
.ev-offer-popup {
    display: none;
}

.ev-offer-popup.show {
    display: block;
}

/* Responsive - Adjust for smaller screens */
@media (max-width: 768px) {
    #evOfferPopup {
        right: 10px;
        max-width: 170px;
        padding: 1.25rem 1rem;
        font-size: 0.9rem;
    }
    
    .service-pricing-popup {
        left: 10px;
        max-width: 240px;
        padding: 1.25rem;
    }
    
    .pricing-header h3 {
        font-size: 1.25rem;
    }
    
    .pricing-item {
        padding: 0.5rem;
    }
    
    .pricing-icon {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 576px) {
    #evOfferPopup,
    .service-pricing-popup {
        max-width: 160px;
        padding: 1rem 0.875rem;
    }
    
    .service-pricing-popup {
        max-width: 220px;
    }
    
    .pricing-header {
        margin-bottom: 1rem;
        padding-bottom: 0.75rem;
    }
    
    .pricing-header i {
        font-size: 1.5rem;
    }
    
    .pricing-header h3 {
        font-size: 1.1rem;
    }
    
    .pricing-items {
        gap: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .pricing-amount {
        font-size: 1.25rem;
    }
    
    .btn-pricing-popup {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
    }
}

.ev-popup-close {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border: 2px solid white;
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    line-height: 1;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.ev-popup-close:hover {
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
    transform: rotate(90deg) scale(1.15);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.ev-popup-content {
    text-align: center;
}

.ev-popup-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    padding: 0.5rem 0.875rem;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.875rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.ev-popup-badge i {
    font-size: 0.75rem;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.2); }
}

.ev-popup-title {
    font-size: 1.75rem;
    font-weight: 900;
    color: white;
    margin-bottom: 0.375rem;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.5px;
}

.ev-popup-desc {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1rem;
    line-height: 1.3;
    font-weight: 600;
}

.btn-ev-popup {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
    width: 100%;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.btn-ev-popup:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.6);
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
}

/* ===================================
   BLOG SECTION (Blue Background)
   =================================== */
.blog-section {
    background: linear-gradient(135deg, #f0fdfa 0%, #ecfeff 100%);
    padding: 5rem 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.blog-card {
    background-color: var(--color-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-normal);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.blog-card.featured {
    border: 2px solid var(--color-blue);
}

.blog-badge-featured {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-blue-dark) 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(28, 159, 234, 0.2);
}

.blog-card.featured:hover {
    border-color: var(--color-blue-dark);
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.25);
}

.blog-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: linear-gradient(135deg, #E2E8F0 0%, #CBD5E1 100%);
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover .blog-image img {
    transform: scale(1.08);
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta-top {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.blog-author {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    color: #059669;
    font-weight: 600;
}

.blog-author i {
    font-size: 0.875rem;
}

.blog-date {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    color: var(--color-gray);
    font-weight: 500;
}

.blog-date i {
    font-size: 0.875rem;
}

.blog-read-time {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    color: var(--color-gray);
    font-weight: 500;
}

.blog-read-time i {
    font-size: 0.875rem;
}

.blog-title {
    font-size: 1.25rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-navy);
    margin-bottom: 1rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-excerpt {
    font-size: 0.9375rem;
    color: var(--color-gray);
    line-height: 1.65;
    margin-bottom: 1.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--color-gray-lighter);
}

/* ===================================
   DETAILED SERVICES (Green Background)
   =================================== */
.services-detail-section {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    padding: 6rem 0;
}

.services-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.service-detail-card {
    background: rgba(255, 255, 255, 0.7);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(16, 185, 129, 0.25);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(8px);
}

.service-detail-card:hover {
    background: #ffffff;
    border-color: var(--color-green);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(16, 185, 129, 0.15);
}

.service-detail-title {
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--color-navy);
    margin-bottom: 1rem;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.service-detail-subtitle {
    font-size: 1.1rem;
    color: var(--color-navy);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-weight: 500;
}

.service-detail-label {
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 1rem;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-detail-list {
    list-style: none;
    padding-left: 0;
    color: var(--color-navy);
}

.service-detail-list li {
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    line-height: 1.7;
    padding-left: 1.75rem;
    position: relative;
}

.service-detail-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-blue);
    font-weight: 700;
    font-size: 1.1rem;
}

.service-detail-list-compact li {
    padding-left: 0;
}

.service-detail-list-compact li::before {
    display: none;
}

.service-detail-emergency {
    margin-top: 1.5rem;
    font-size: 1.125rem;
    padding: 1.25rem;
    background: rgba(44, 62, 80, 0.12);
    border-radius: 10px;
    border-left: 5px solid var(--color-navy);
}

.service-detail-emergency a {
    color: var(--color-navy);
    text-decoration: underline;
    font-weight: 800;
}

.service-detail-emergency a:hover {
    color: var(--color-blue);
    text-decoration-thickness: 2px;
}

/* ===================================
   ABOUT SECTION (Green Background)
   =================================== */
.about-section {
    background: linear-gradient(135deg, #bfdbfe 0%, #93c5fd 100%);
    padding: 5rem 0;
    position: relative;
    z-index: 10;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content {
    padding-right: var(--spacing-lg);
}

.about-label {
    font-size: 0.8125rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-navy);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.75rem;
    opacity: 0.8;
}

.about-main-title {
    font-size: 3.25rem;
    font-weight: var(--font-weight-extrabold);
    color: var(--color-navy);
    margin-bottom: 2rem;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.about-text {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--color-navy);
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

.about-image-item {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transition: transform var(--transition-normal);
}

.about-image-item:hover {
    transform: scale(1.02);
}

.about-image-item:first-child {
    grid-column: 1 / -1;
}

.about-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: linear-gradient(135deg, #E2E8F0 0%, #CBD5E1 100%);
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background-color: var(--color-cream);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 2px solid rgba(100, 116, 139, 0.15);
}

.footer-brand {
    font-size: 1.75rem;
    font-weight: var(--font-weight-extrabold);
    color: var(--color-navy);
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.footer-tagline {
    font-size: 1.0625rem;
    color: var(--color-blue);
    margin-bottom: 1rem;
    line-height: 1.5;
    font-weight: 600;
    font-style: italic;
}

.footer-description {
    font-size: 0.9375rem;
    color: var(--color-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-certifications {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.cert-badge {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.875rem;
    color: var(--color-navy);
    font-weight: 600;
}

.cert-badge i {
    color: var(--color-blue);
    font-size: 1.125rem;
}

.footer-heading {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.footer-links-col {
    display: flex;
    flex-direction: column;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links-list li a {
    color: var(--color-gray);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: all 0.2s ease;
    display: inline-block;
}

.footer-links-list li a:hover {
    color: var(--color-blue);
    transform: translateX(4px);
}

.newsletter {
    max-width: 450px;
}

.newsletter-title {
    font-size: 1.375rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-navy);
    margin-bottom: 1.25rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-input {
    padding: 1rem 1.25rem;
    border: 2px solid var(--color-gray-light);
    border-radius: 10px;
    font-family: var(--font-main);
    font-size: 1rem;
    transition: all var(--transition-fast);
    background: var(--color-white);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--color-blue);
    box-shadow: 0 0 0 4px rgba(28, 159, 234, 0.1);
}

.newsletter-checkbox {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.875rem;
    color: var(--color-gray);
    line-height: 1.5;
}

.newsletter-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--color-blue);
}

.btn-newsletter {
    padding: 1rem 2rem;
    background-color: var(--color-navy);
    color: var(--color-white);
    font-weight: var(--font-weight-semibold);
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    font-size: 1rem;
    letter-spacing: 0.3px;
}

.btn-newsletter:hover {
    background-color: var(--color-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(28, 159, 234, 0.3);
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.footer-badges {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: transform var(--transition-fast), box-shadow 0.3s ease;
    cursor: pointer;
}

.badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.badge i {
    font-size: 2rem;
    color: white;
}

.badge-military {
    background: linear-gradient(135deg, #FDB44B 0%, #F39C12 100%);
}

.badge-senior {
    background: linear-gradient(135deg, #5FA8D3 0%, #3498DB 100%);
}

.badge-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.badge-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-discount {
    font-size: 1.25rem;
    font-weight: 800;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.footer-company-name {
    font-size: 1.625rem;
    font-weight: var(--font-weight-extrabold);
    color: var(--color-navy);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
}

.contact-item i {
    color: var(--color-blue);
    font-size: 1.125rem;
    width: 20px;
    flex-shrink: 0;
}

.contact-item a,
.contact-item span {
    color: var(--color-gray);
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-item a:hover {
    color: var(--color-blue);
}

.footer-contact p,
.footer-contact a {
    font-size: 1rem;
    color: var(--color-gray);
    line-height: 1.6;
}

.footer-contact a:hover {
    color: var(--color-blue);
}

/* Footer Booking Button */
.footer-booking-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--color-blue) 0%, #1d4ed8 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    margin: 1rem 0 1.5rem 0;
    box-shadow: 0 4px 6px rgba(37, 99, 235, 0.2);
}

.footer-booking-btn:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, var(--color-blue) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(37, 99, 235, 0.3);
}

.footer-booking-btn i {
    font-size: 1rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-links a {
    font-size: 0.875rem;
    color: var(--color-gray);
    transition: color var(--transition-fast);
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-blue);
    transition: width var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-blue);
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--color-navy);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    font-size: 1.125rem;
}

.footer-social a:hover {
    background-color: var(--color-blue);
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(28, 159, 234, 0.4);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 2rem;
}

.footer-bottom p {
    color: var(--color-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
}

.footer-bottom-links a {
    color: var(--color-gray);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
    color: var(--color-blue);
}

.footer-bottom-links span {
    color: var(--color-gray-light);
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--color-gray);
}

/* ===================================
   CHAT WIDGET
   =================================== */
.chat-widget {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: var(--color-navy);
    color: var(--color-white);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(44, 62, 80, 0.4);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: var(--font-weight-semibold);
    transition: all var(--transition-fast);
    z-index: 90;
}

.chat-widget:hover {
    background-color: var(--color-blue);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(28, 159, 234, 0.4);
}

/* ===================================
   ANIMATIONS
   =================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

.fade-in-up {
    animation: slideInUp 0.8s ease-out;
}

/* Smooth Page Load */
body {
    animation: fadeIn 0.4s ease-in;
}

/* Loading State */
.loading {
    pointer-events: none;
    opacity: 0.6;
}

/* Smooth Transitions */
* {
    -webkit-tap-highlight-color: transparent;
}

/* Better Button Active States */
button:active,
.btn-service:active,
.btn-newsletter:active {
    transform: translateY(0) !important;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

/* Tablet */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-image {
        order: 2;
    }
    
    .hero-card {
        order: 1;
        padding: 2.5rem;
    }
    
    .hero-img {
        height: 450px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-content {
        padding-right: 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .newsletter {
        max-width: 100%;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .about-main-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background-color: var(--color-white);
        flex-direction: column;
        padding: 100px 2rem 2rem;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.2);
        transition: right var(--transition-normal);
        align-items: flex-start;
        z-index: 99;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu.active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
        animation: fadeIn 0.3s ease;
    }
    
    .nav-toggle {
        display: flex;
        z-index: 101;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .services-grid,
    .blog-grid,
    .services-detail-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 2rem;
    }
    
    .hero {
        min-height: 100vh;
        background-attachment: scroll;
    }
    
    .hero-content {
        padding: 2rem 1.5rem;
    }
    
    .hero-main-title {
        font-size: 2.25rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
    }
    
    .about-images {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .footer-badges {
        justify-content: center;
        flex-wrap: wrap;
    }

    .badge {
        padding: 0.875rem 1.25rem;
    }

    .badge i {
        font-size: 1.75rem;
    }

    .badge-title {
        font-size: 0.8rem;
    }

    .badge-discount {
        font-size: 1.1rem;
    }

    .ev-offer-content {
        padding: 2rem 1.5rem;
    }

    .ev-offer-title {
        font-size: 2rem;
    }

    .price-amount {
        font-size: 2.5rem;
    }

    .ev-offer-description {
        font-size: 1rem;
    }

    .ev-offer-features {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .btn-ev-offer {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    
    .footer-links {
        justify-content: center;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
    
    .section-title {
        font-size: 1.875rem;
        margin-bottom: 2.5rem;
    }
    
    .about-main-title {
        font-size: 2rem;
    }
    }
    
    .services-section,
    .blog-section,
    .services-overview,
    .about-section {
        padding: 3.5rem 0;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 1.25rem;
    }
    
    .hero {
        min-height: 100vh;
    }
    
    .hero-content {
        padding: 1.5rem 1rem;
    }
    
    .hero-subtitle {
        font-size: 0.8rem;
        letter-spacing: 1.5px;
    }
    
    .hero-main-title {
        font-size: 1.75rem;
    }
    
    .hero-description {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .hero-scroll-down {
        font-size: 1.5rem;
        bottom: 1rem;
    }
    
    .section-title {
        font-size: 1.625rem;
    }
    
    .about-main-title {
        font-size: 1.75rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }

    .footer-badges {
        flex-direction: column;
        gap: 1rem;
    }

    .badge {
        width: 100%;
        justify-content: center;
    }

    .ev-offer-content {
        padding: 1.5rem 1rem;
    }

    .ev-offer-title {
        font-size: 1.5rem;
    }

    .price-amount {
        font-size: 2rem;
    }

    .ev-offer-features {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .ev-feature {
        justify-content: center;
    }

    .btn-ev-offer {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    /* EV Popup Mobile Styles */
    .ev-offer-popup {
        top: auto;
        bottom: 85px;
        right: 8px;
        left: auto;
        max-width: 170px;
        transform: rotate(-3deg);
        padding: 1.25rem 1rem;
    }

    .ev-offer-popup:hover {
        transform: rotate(0deg) scale(1.05);
    }

    .ev-popup-title {
        font-size: 1.5rem;
    }

    .ev-popup-desc {
        font-size: 0.7rem;
        margin-bottom: 0.875rem;
    }

    .btn-ev-popup {
        padding: 0.625rem 1.125rem;
        font-size: 0.75rem;
    }
    
    .chat-widget span {
        display: none;
    }
    
    .chat-widget {
        width: 56px;
        height: 56px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
        font-size: 1.25rem;
    }
    
    .footer-badges {
        flex-wrap: wrap;
    }
    
    .badge {
        width: 80px;
        height: 80px;
    }
    
    .nav-link {
        width: 100%;
        padding: 0.875rem 1rem;
        text-align: left;
    }
    
    .services-section,
    .blog-section,
    .services-overview,
    .about-section {
        padding: 2.5rem 0;
    }
}

/* ===================================
   BLOG ARTICLE PAGES
   =================================== */
.article-header {
    position: relative;
    height: 400px;
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-blue) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
    overflow: hidden;
}

.article-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../assets/img/blog-pattern.svg');
    background-size: cover;
    opacity: 0.1;
}

.article-header-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 3rem 0;
}

.article-header-content {
    text-align: center;
    color: white;
}

.article-author {
    font-size: 0.95rem;
    color: var(--color-green);
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: lowercase;
}

.article-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.article-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    font-size: 0.95rem;
    opacity: 0.9;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.article-meta i {
    color: var(--color-green);
}

.blog-article {
    padding: 4rem 0;
    background: var(--color-cream);
}

.article-body {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 4rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.article-intro {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--color-navy);
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(28, 159, 234, 0.05), rgba(199, 232, 108, 0.05));
    border-left: 4px solid var(--color-blue);
    border-radius: 8px;
}

.article-body h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.article-body h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-navy);
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    line-height: 1.4;
}

.article-body p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.article-body ul,
.article-body ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.article-body li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 1rem;
}

.article-body li strong {
    color: var(--color-navy);
    font-weight: 600;
}

.article-body ul li {
    position: relative;
    padding-left: 0.5rem;
}

.article-body ul li::marker {
    color: var(--color-blue);
}

.article-body ol {
    counter-reset: item;
    list-style: none;
    padding-left: 0;
}

.article-body ol li {
    counter-increment: item;
    position: relative;
    padding-left: 3rem;
}

.article-body ol li::before {
    content: counter(item);
    position: absolute;
    left: 0;
    top: 0;
    width: 2rem;
    height: 2rem;
    background: var(--color-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.article-cta {
    margin: 4rem 0;
    padding: 3rem;
    background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-navy) 100%);
    border-radius: 16px;
    text-align: center;
    color: white;
}

.article-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.article-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    color: white;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary,
.cta-buttons .btn-secondary {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-buttons .btn-primary {
    background: var(--color-green);
    color: var(--color-navy);
}

.cta-buttons .btn-primary:hover {
    background: #d4f07a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(199, 232, 108, 0.3);
}

.cta-buttons .btn-secondary {
    background: white;
    color: var(--color-blue);
    border: 2px solid white;
}

.cta-buttons .btn-secondary:hover {
    background: transparent;
    color: white;
    transform: translateY(-2px);
}

.article-footer {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid var(--color-cream);
}

.article-tags {
    margin-bottom: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.article-tags strong {
    color: var(--color-navy);
    font-size: 1rem;
}

.tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--color-cream);
    color: var(--color-navy);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tag:hover {
    background: var(--color-blue);
    color: white;
    transform: translateY(-2px);
}

.share-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.share-buttons strong {
    color: var(--color-navy);
    font-size: 1rem;
}

.share-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.share-btn.facebook {
    background: #1877f2;
    color: white;
}

.share-btn.twitter {
    background: #1da1f2;
    color: white;
}

.share-btn.linkedin {
    background: #0077b5;
    color: white;
}

.share-btn.email {
    background: var(--color-navy);
    color: white;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.blog-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

/* ===================================
   BOOKING PAGE
   =================================== */
.booking-section {
    padding: 6rem 0;
    background: var(--color-cream);
    min-height: calc(100vh - 80px);
    margin-top: 80px;
}

.booking-header {
    text-align: center;
    margin-bottom: 4rem;
}

.booking-header h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-navy);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.booking-header p {
    font-size: 1.2rem;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto;
}

.booking-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.booking-form-container {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.booking-form h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 2rem;
}

.form-section {
    margin-bottom: 3rem;
}

.form-section:last-child {
    margin-bottom: 0;
}

.form-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--color-cream);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: var(--color-navy);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group label .required {
    color: #e53e3e;
    margin-left: 0.25rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: white;
    color: var(--color-navy);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--color-blue);
    box-shadow: 0 0 0 3px rgba(28, 159, 234, 0.1);
}

.form-input.error,
.form-select.error,
.form-textarea.error {
    border-color: #e53e3e;
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

.error-message {
    color: #e53e3e;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.error-message::before {
    content: '⚠';
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--color-blue);
}

.checkbox-group label {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 0;
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--color-cream);
}

.btn-submit,
.btn-reset {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-submit {
    background: var(--color-blue);
    color: white;
    flex: 1;
}

.btn-submit:hover {
    background: #1789d1;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(28, 159, 234, 0.3);
}

.btn-submit:disabled {
    background: #cbd5e0;
    cursor: not-allowed;
    transform: none;
}

.btn-reset {
    background: transparent;
    color: var(--color-navy);
    border: 2px solid #e2e8f0;
}

.btn-reset:hover {
    background: var(--color-cream);
    border-color: var(--color-navy);
}

.booking-sidebar .info-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.booking-sidebar .info-card:last-child {
    margin-bottom: 0;
}

/* Emergency Card Styling */
.emergency-card {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
    text-align: center;
    border: 3px solid #2563eb;
}

.emergency-card .info-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
}

.emergency-card .info-card-icon i {
    font-size: 2rem;
    color: white;
    animation: pulse 2s ease-in-out infinite;
}

.emergency-card h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    justify-content: center;
}

.emergency-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.emergency-call-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1.25rem;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    margin: 1.5rem 0;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.emergency-call-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.5);
}

.emergency-note {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.info-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.info-card h3 i {
    color: var(--color-blue);
}

.info-card p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.info-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-card li {
    padding: 0.75rem 0;
    color: #4a5568;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    border-bottom: 1px solid var(--color-cream);
}

.info-card li:last-child {
    border-bottom: none;
}

.info-card li i {
    color: var(--color-blue);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.emergency-call {
    display: block;
    width: 100%;
    padding: 1.25rem;
    background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-navy) 100%);
    color: white;
    text-decoration: none;
    text-align: center;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
}

.emergency-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(28, 159, 234, 0.3);
}

.emergency-call i {
    margin-right: 0.5rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.urgent-note {
    background: #fff5f5;
    border: 2px solid #fc8181;
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.urgent-note i {
    color: #e53e3e;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.urgent-note a {
    color: var(--color-blue);
    font-weight: 600;
}

.booking-success {
    text-align: center;
    padding: 4rem 2rem;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--color-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    animation: successPop 0.6s ease-out;
}

@keyframes successPop {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.success-icon i {
    font-size: 3rem;
    color: white;
}

.booking-success h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-navy);
    margin-bottom: 1rem;
}

.booking-success p {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 1rem;
}

.success-details {
    background: var(--color-cream);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    text-align: left;
}

.success-details p {
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: 1rem;
}

.success-details ul {
    list-style: none;
    padding: 0;
}

.success-details li {
    padding: 0.75rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.success-details li::before {
    content: '✓';
    color: var(--color-blue);
    font-weight: 700;
    font-size: 1.2rem;
}

.success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.notification {
    position: fixed;
    top: 100px;
    right: -400px;
    max-width: 400px;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    z-index: 9999;
    transition: right 0.4s ease;
}

.notification.show {
    right: 2rem;
}

.notification i {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.notification-success i {
    color: #38a169;
}

.notification-error i {
    color: #e53e3e;
}

.notification-info i {
    color: var(--color-blue);
}

.notification span {
    flex: 1;
    line-height: 1.6;
}

.notification-close {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #a0aec0;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: color 0.3s ease;
}

.notification-close:hover {
    color: var(--color-navy);
}

/* ===================================
   TESTIMONIALS SECTION
   =================================== */
.testimonials-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    position: relative;
    overflow: hidden;
}

.section-subtitle {
    text-align: center;
    font-size: 1.15rem;
    color: var(--color-gray);
    max-width: 650px;
    margin: -2rem auto 3.5rem;
    line-height: 1.6;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-blue-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-avatar i {
    font-size: 2rem;
    color: white;
}

.testimonial-info h4 {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-navy);
}

.testimonial-location {
    margin: 0.25rem 0 0;
    font-size: 0.875rem;
    color: var(--color-gray);
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-rating i {
    color: #fbbf24;
    font-size: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-navy);
    margin-bottom: 1.25rem;
    font-style: italic;
}

.testimonial-service {
    display: inline-block;
    background: var(--color-gray-lighter);
    color: var(--color-blue);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8125rem;
    font-weight: 600;
}

.testimonials-cta {
    text-align: center;
    padding: 2.5rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.testimonials-cta p {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: 1.5rem;
}

.btn-testimonial-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.125rem 2.5rem;
    background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-blue-dark) 100%);
    color: white;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.05rem;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
}

.btn-testimonial-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
    background: linear-gradient(135deg, var(--color-blue-dark) 0%, var(--color-blue) 100%);
}

/* ===================================
   SERVICE AREA MAP SECTION
   =================================== */
.map-section {
    padding: 6rem 0;
    background: white;
}

.map-header {
    text-align: center;
    margin-bottom: 4rem;
}

.map-header .section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-navy);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.map-header .section-subtitle {
    font-size: 1.2rem;
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto;
}

.map-container {
    margin: 0 0 3rem 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    display: block;
    width: 100%;
}

.service-areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-area-card {
    background: var(--color-cream);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.service-area-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.service-area-card i {
    font-size: 2.5rem;
    color: var(--color-blue);
    margin-bottom: 1rem;
}

.service-area-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 0.5rem;
}

.service-area-card p {
    color: #4a5568;
    line-height: 1.6;
}

.service-area-card a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-area-card a:hover {
    text-decoration: underline;
}

/* ===================================
   RESPONSIVE STYLES FOR NEW SECTIONS
   =================================== */
@media (max-width: 992px) {
    .article-title {
        font-size: 2.5rem;
    }
    
    .article-body {
        padding: 3rem 2rem;
    }
    
    .article-body h2 {
        font-size: 1.75rem;
    }
    
    .booking-container {
        grid-template-columns: 1fr;
    }
    
    .booking-header h1 {
        font-size: 2.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .map-header .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .article-header {
        height: 350px;
        margin-top: 70px;
    }
    
    .article-title {
        font-size: 2rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .article-body {
        padding: 2rem 1.5rem;
    }
    
    .article-body h2 {
        font-size: 1.5rem;
    }
    
    .article-body h3 {
        font-size: 1.25rem;
    }
    
    .article-cta {
        padding: 2rem 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .booking-section {
        padding: 4rem 0;
        margin-top: 70px;
    }
    
    .booking-header h1 {
        font-size: 2rem;
    }
    
    .booking-form-container {
        padding: 2rem 1.5rem;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .btn-submit,
    .btn-reset {
        width: 100%;
        justify-content: center;
    }
    
    .notification {
        max-width: calc(100% - 2rem);
        left: 1rem;
        right: auto;
        transform: translateX(-450px);
    }
    
    .notification.show {
        transform: translateX(0);
        right: auto;
    }
    
    .service-areas-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .map-container iframe {
        height: 350px !important;
    }
}

@media (max-width: 576px) {
    .article-header {
        height: 300px;
    }
    
    .article-title {
        font-size: 1.75rem;
    }
    
    .article-intro {
        font-size: 1rem;
        padding: 1.5rem;
    }
    
    .article-body p,
    .article-body li {
        font-size: 1rem;
    }
}

/* ===================================
   CHAT MODAL
   =================================== */
.chat-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.chat-modal.active {
    opacity: 1;
    visibility: visible;
}

.chat-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.chat-modal-content {
    position: relative;
    z-index: 2;
    background: white;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
}

.chat-modal.active .chat-modal-content {
    transform: scale(1) translateY(0);
}

.chat-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    border: none;
    background: var(--color-cream);
    color: var(--color-navy);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 10;
}

.chat-modal-close:hover {
    background: var(--color-navy);
    color: white;
    transform: rotate(90deg);
}

.chat-modal-header {
    background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-navy) 100%);
    padding: 3rem 2rem 2rem;
    text-align: center;
    color: white;
    border-radius: 20px 20px 0 0;
}

.chat-modal-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    backdrop-filter: blur(10px);
}

.chat-modal-icon i {
    font-size: 2rem;
    color: white;
}

.chat-modal-header h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.chat-modal-header p {
    font-size: 1rem;
    opacity: 0.95;
    margin: 0;
}

.chat-modal-form {
    padding: 2rem;
}

.chat-form-group {
    margin-bottom: 1.5rem;
}

.chat-form-group label {
    display: block;
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.chat-form-group .required {
    color: #e53e3e;
}

.chat-form-group input,
.chat-form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.chat-form-group input:focus,
.chat-form-group textarea:focus {
    outline: none;
    border-color: var(--color-blue);
    box-shadow: 0 0 0 3px rgba(28, 159, 234, 0.1);
}

.chat-form-group textarea {
    resize: vertical;
}

.chat-form-actions {
    margin-top: 2rem;
}

.btn-chat-submit {
    width: 100%;
    padding: 1.25rem;
    background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-navy) 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-family: 'Inter', sans-serif;
}

.btn-chat-submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(28, 159, 234, 0.3);
}

.btn-chat-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.chat-alt-contact {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.95rem;
    color: #4a5568;
}

.chat-alt-contact a {
    color: var(--color-blue);
    font-weight: 600;
    text-decoration: none;
}

.chat-alt-contact a:hover {
    text-decoration: underline;
}

.chat-success {
    text-align: center;
    padding: 3rem 2rem;
}

.chat-success-icon {
    width: 80px;
    height: 80px;
    background: var(--color-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    animation: successPop 0.6s ease-out;
}

.chat-success-icon i {
    font-size: 3rem;
    color: white;
}

.chat-success h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 0.75rem;
}

.chat-success p {
    font-size: 1.1rem;
    color: #4a5568;
    margin: 0;
}

.chat-error-message {
    background: #fff5f5;
    border: 2px solid #fc8181;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    color: #e53e3e;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.chat-error-message i {
    flex-shrink: 0;
}

@media (max-width: 576px) {
    .chat-modal-content {
        width: 95%;
        max-height: 95vh;
    }
    
    .chat-modal-header {
        padding: 2.5rem 1.5rem 1.5rem;
    }
    
    .chat-modal-header h3 {
        font-size: 1.75rem;
    }
    
    .chat-modal-form {
        padding: 1.5rem;
    }
    
    .chat-modal-icon {
        width: 60px;
        height: 60px;
    }
    
    .chat-modal-icon i {
        font-size: 1.75rem;
    }
}

/* ===================================
   ACCESSIBILITY
   =================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Focus Visible */
*:focus-visible {
    outline: 3px solid var(--color-blue);
    outline-offset: 3px;
}

/* ===================================
   POLICY PAGES
   =================================== */
.policy-page {
    padding-top: 80px;
    background: linear-gradient(to bottom, #f9fafb 0%, #ffffff 100%);
    min-height: 100vh;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    margin-top: 40px;
    margin-bottom: 40px;
}

.policy-content h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 10px;
    line-height: 1.2;
    word-wrap: break-word;
}

.update-date {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e2e8f0;
}

.policy-section {
    margin-bottom: 40px;
}

.policy-section h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 16px;
    margin-top: 32px;
    word-wrap: break-word;
}

.policy-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 12px;
    margin-top: 24px;
    word-wrap: break-word;
}

.policy-section p {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 16px;
    word-wrap: break-word;
}

.policy-section ul,
.policy-section ol {
    margin-left: 20px;
    margin-bottom: 16px;
}

.policy-section li {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 8px;
    padding-left: 8px;
    word-wrap: break-word;
}

.policy-section ul li {
    list-style-type: disc;
}

.policy-section ol li {
    list-style-type: decimal;
}

.contact-info {
    background: #f1f5f9;
    padding: 24px;
    border-radius: 12px;
    border-left: 4px solid #2563eb;
    margin-top: 16px;
}

.contact-info p {
    margin-bottom: 8px;
    color: #334155;
    word-wrap: break-word;
}

.contact-info a {
    color: #2563eb;
    text-decoration: none;
    word-break: break-all;
}

.contact-info a:hover {
    text-decoration: underline;
}

.contact-info strong {
    color: #0f172a;
    font-weight: 600;
}

/* ===================================
   BLOG PAGE
   =================================== */
.blog-page {
    padding-top: 80px;
}

.blog-hero {
    position: relative;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.95) 0%, rgba(59, 130, 246, 0.90) 100%), 
                url('../assets/img/electrical-panel-work.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 20px 100px;
    text-align: center;
    color: white;
    overflow: hidden;
}

.blog-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.blog-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.blog-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.blog-hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.1;
    word-wrap: break-word;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.blog-hero-subtitle {
    font-size: 1.375rem;
    opacity: 0.95;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.blog-hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #FCD34D;
    text-shadow: 0 2px 8px rgba(252, 211, 77, 0.3);
}

.stat-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
    font-weight: 600;
}

.blog-content {
    padding: 80px 20px;
    background: #f9fafb;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.blog-article {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.blog-article:hover {
    transform: translateY(-12px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12), 0 12px 24px rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.2);
}

.blog-article.featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.blog-article.featured:hover {
    box-shadow: 0 28px 56px rgba(0, 0, 0, 0.15), 0 16px 32px rgba(59, 130, 246, 0.12);
}

.blog-article-image {
    position: relative;
    overflow: hidden;
    height: 260px;
    background: linear-gradient(135deg, #e0e7ff 0%, #dbeafe 100%);
}

.blog-article.featured .blog-article-image {
    height: 100%;
    min-height: 450px;
}

.blog-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-article:hover .blog-article-image img {
    transform: scale(1.08);
}

.blog-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #2563eb;
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
}

.featured-badge {
    background: #dc2626;
}

.blog-article-content {
    padding: 24px;
}

.blog-meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 16px;
    font-size: 0.85rem;
}

.blog-category {
    background: #dbeafe;
    color: #1e40af;
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 600;
}

.blog-date,
.blog-read-time {
    color: #64748b;
}

.blog-article-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
    line-height: 1.3;
    word-wrap: break-word;
}

.blog-article h3.blog-article-title {
    font-size: 1.25rem;
}

.blog-article-excerpt {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 20px;
    word-wrap: break-word;
}

.blog-article-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.btn-read-more {
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    min-height: 44px;
    touch-action: manipulation;
}

.btn-read-more:hover {
    color: #1e40af;
}

.btn-read-more i {
    transition: transform 0.3s ease;
}

.btn-read-more:hover i {
    transform: translateX(4px);
}

.blog-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.author-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

.blog-pagination {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.pagination-btn {
    padding: 10px 16px;
    border: 1px solid #e2e8f0;
    background: white;
    color: #475569;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    min-height: 44px;
    min-width: 44px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.pagination-btn:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
}

.pagination-btn.active {
    background: #2563eb;
    color: white;
    border-color: #2563eb;
}

.blog-cta {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    padding: 80px 20px;
    text-align: center;
}

.blog-cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
    word-wrap: break-word;
}

.blog-cta-content p {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 32px;
}

.blog-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.blog-cta-buttons .btn-primary,
.blog-cta-buttons .btn-secondary {
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 48px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.blog-cta-buttons .btn-primary {
    background: #2563eb;
    color: white;
    border: none;
}

.blog-cta-buttons .btn-primary:hover {
    background: #1e40af;
    transform: translateY(-2px);
}

.blog-cta-buttons .btn-secondary {
    background: white;
    color: #1e293b;
    border: none;
}

.blog-cta-buttons .btn-secondary:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
}

/* ===================================
   RESPONSIVE STYLES
   =================================== */

/* Tablet */
@media (max-width: 992px) {
    .policy-content {
        padding: 50px 30px;
        margin: 30px 15px;
    }

    .blog-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }

    .blog-article.featured {
        grid-column: span 2;
    }

    .blog-hero {
        padding: 60px 20px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .policy-content {
        padding: 40px 20px;
        margin: 20px 10px;
        border-radius: 12px;
    }

    .policy-content h1 {
        font-size: 2rem;
        line-height: 1.3;
    }

    .policy-section h2 {
        font-size: 1.5rem;
        margin-top: 24px;
    }

    .policy-section h3 {
        font-size: 1.15rem;
    }

    .policy-section p,
    .policy-section li {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .contact-info {
        padding: 20px;
    }

    .blog-hero {
        padding: 50px 20px;
    }

    .blog-hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .blog-hero-subtitle {
        font-size: 1rem;
    }

    .blog-content {
        padding: 60px 20px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .blog-article.featured {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }

    .blog-article.featured .blog-article-image {
        height: 240px;
    }

    .blog-article-image {
        height: 200px;
    }

    .blog-article-content {
        padding: 20px;
    }

    .blog-article-title {
        font-size: 1.35rem;
    }

    .blog-article h3.blog-article-title {
        font-size: 1.15rem;
    }

    .blog-article-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .blog-cta {
        padding: 60px 20px;
    }

    .blog-cta-content h2 {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .blog-cta-content p {
        font-size: 1rem;
    }

    .blog-cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .blog-cta-buttons .btn-primary,
    .blog-cta-buttons .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .blog-pagination {
        flex-wrap: wrap;
        gap: 8px;
    }

    .pagination-btn {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
}

/* Small Mobile */
@media (max-width: 576px) {
    .policy-content {
        padding: 30px 15px;
        margin: 15px 5px;
    }

    .policy-content h1 {
        font-size: 1.75rem;
    }

    .policy-section h2 {
        font-size: 1.35rem;
    }

    .policy-section h3 {
        font-size: 1.1rem;
    }

    .policy-section ul,
    .policy-section ol {
        margin-left: 15px;
    }

    .contact-info {
        padding: 16px;
    }

    .blog-hero {
        padding: 40px 15px;
    }

    .blog-hero-title {
        font-size: 1.75rem;
    }

    .blog-hero-subtitle {
        font-size: 0.95rem;
    }

    .blog-content {
        padding: 40px 15px;
    }

    .blog-article-content {
        padding: 16px;
    }

    .blog-meta {
        font-size: 0.8rem;
    }

    .blog-article-title {
        font-size: 1.25rem;
    }

    .blog-article h3.blog-article-title {
        font-size: 1.1rem;
    }

    .blog-article-excerpt {
        font-size: 0.9rem;
    }

    .btn-read-more {
        font-size: 0.9rem;
    }

    .author-name {
        font-size: 0.85rem;
    }

    .blog-cta {
        padding: 50px 15px;
    }

    .blog-cta-content h2 {
        font-size: 1.5rem;
    }

    .blog-cta-content p {
        font-size: 0.95rem;
    }

    .blog-cta-buttons .btn-primary,
    .blog-cta-buttons .btn-secondary {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
}

/* ===================================
   PRINT STYLES
   =================================== */
@media print {
    .header,
    .nav-toggle,
    .chat-widget,
    .btn-service,
    .btn-newsletter,
    .blog-hero,
    .blog-cta,
    .blog-pagination {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
        background: #fff;
    }
    
    .container {
        max-width: 100%;
        padding: 0;
    }

    .policy-content,
    .blog-article {
        box-shadow: none;
        page-break-inside: avoid;
    }
}
