/* =================================================================
   VOLTAGE ELECTRIC CO. — Shared Design System
   ================================================================= */

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

:root {
    --electric: #1840b0;
    --electric-light: #2a57d1;
    --yellow: #f7b731;
    --yellow-hover: #e6a820;
    --dark: #111827;
    --white: #ffffff;
    --gray-50: #f8f9fa;
    --gray-100: #f0f2f5;
    --gray-200: #e2e6ed;
    --gray-600: #6b7280;
    --gray-700: #4b5563;
    --shadow: 0 4px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --radius: 12px;
    --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', system-ui, sans-serif; color: var(--dark); line-height: 1.6; overflow-x: hidden; }
h1, h2, h3, h4 { font-family: 'Montserrat', system-ui, sans-serif; font-weight: 700; line-height: 1.2; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ---- HEADER ---- */
.header { position: sticky; top: 0; z-index: 1000; background: var(--white); border-bottom: 1px solid var(--gray-200); transition: box-shadow var(--transition); }
.header.scrolled { box-shadow: var(--shadow); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 0 20px; max-width: 1200px; margin: 0 auto; height: 72px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon { width: 42px; height: 42px; background: var(--electric); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.logo-icon svg { width: 26px; height: 26px; fill: var(--yellow); }
.logo-text { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.15rem; color: var(--dark); line-height: 1.1; }
.logo-text .co { color: var(--electric); }
.logo-text .sub { display: block; font-size: 0.65rem; font-weight: 600; color: var(--gray-600); letter-spacing: 0.8px; text-transform: uppercase; }
.nav-desktop { display: flex; align-items: center; gap: 28px; }
.nav-desktop a { font-size: 0.95rem; font-weight: 500; color: var(--gray-700); transition: color var(--transition); position: relative; }
.nav-desktop a:hover, .nav-desktop a.active { color: var(--electric); }
.nav-desktop a.active::after { content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 2px; background: var(--yellow); border-radius: 1px; }
.header-right { display: flex; align-items: center; gap: 14px; }
.google-rating { display: flex; align-items: center; gap: 6px; padding: 6px 12px; background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: 8px; font-size: 0.85rem; font-weight: 600; color: var(--dark); }
.google-rating .stars { color: #f59e0b; font-size: 0.9rem; }
.google-rating .count { color: var(--gray-600); font-weight: 400; }
.header-phone { display: flex; align-items: center; gap: 6px; background: var(--electric); color: var(--white); padding: 10px 18px; border-radius: 8px; font-weight: 600; font-size: 0.95rem; transition: background var(--transition); }
.header-phone:hover { background: var(--electric-light); }
.header-phone svg { width: 16px; height: 16px; fill: currentColor; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { width: 24px; height: 2px; background: var(--dark); transition: var(--transition); border-radius: 1px; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.mobile-menu { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--white); z-index: 999; padding: 88px 32px 32px; flex-direction: column; gap: 0; overflow-y: auto; }
.mobile-menu.active { display: flex; }
.mobile-menu a { padding: 18px 0; font-size: 1.15rem; font-weight: 600; color: var(--dark); border-bottom: 1px solid var(--gray-100); font-family: 'Montserrat', sans-serif; }
.mobile-menu a.active { color: var(--electric); }
.mobile-menu .mobile-call { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 28px; padding: 18px; background: var(--yellow); color: var(--dark); border-radius: 12px; font-weight: 700; font-size: 1.1rem; font-family: 'Montserrat', sans-serif; }
.mobile-menu .mobile-call svg { width: 20px; height: 20px; fill: currentColor; }

/* ---- HERO (homepage) ---- */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(24,64,176,0.88) 0%, rgba(17,24,39,0.80) 100%); }
.hero-content { position: relative; z-index: 2; max-width: 680px; padding: 80px 0; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.12); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.2); padding: 8px 18px; border-radius: 50px; color: var(--white); font-size: 0.85rem; font-weight: 500; margin-bottom: 24px; }
.hero-badge .dot { width: 8px; height: 8px; background: #22c55e; border-radius: 50%; animation: pulse 2s infinite; flex-shrink: 0; }
@keyframes pulse { 0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34,197,94,0.4); } 50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(34,197,94,0); } }
.hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); color: var(--white); margin-bottom: 20px; letter-spacing: -0.5px; font-weight: 800; }
.hero p { font-size: 1.1rem; color: rgba(255,255,255,0.85); margin-bottom: 36px; max-width: 540px; line-height: 1.75; }
.hero-cta { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }
.btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--yellow); color: var(--dark); padding: 16px 32px; border-radius: 10px; font-weight: 700; font-size: 1.05rem; border: none; cursor: pointer; transition: all var(--transition); box-shadow: 0 4px 20px rgba(247,183,49,0.35); font-family: 'Montserrat', sans-serif; }
.btn-primary:hover { background: var(--yellow-hover); transform: translateY(-2px); box-shadow: 0 6px 28px rgba(247,183,49,0.45); }
.btn-primary svg { width: 18px; height: 18px; fill: currentColor; }
.hero-phone-link { display: flex; align-items: center; gap: 8px; color: var(--white); font-weight: 600; font-size: 1rem; transition: opacity var(--transition); }
.hero-phone-link:hover { opacity: 0.85; }
.hero-phone-link svg { width: 18px; height: 18px; fill: currentColor; }

/* ---- TRUST BAR ---- */
.trust-bar { background: var(--electric); padding: 0; }
.trust-bar-inner { display: grid; grid-template-columns: repeat(4, 1fr); max-width: 1200px; margin: 0 auto; }
.trust-item { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 28px 16px; text-align: center; border-right: 1px solid rgba(255,255,255,0.12); }
.trust-item:last-child { border-right: none; }
.trust-item svg { width: 28px; height: 28px; fill: var(--yellow); }
.trust-item strong { color: var(--white); font-size: 0.95rem; font-weight: 600; font-family: 'Montserrat', sans-serif; }
.trust-item span { color: rgba(255,255,255,0.65); font-size: 0.8rem; }

/* ---- PAGE HERO (interior pages) ---- */
.page-hero { background: linear-gradient(135deg, var(--electric) 0%, var(--dark) 100%); padding: 64px 0 56px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: rgba(255,255,255,0.55); margin-bottom: 20px; flex-wrap: wrap; }
.breadcrumb a { color: rgba(255,255,255,0.7); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb svg { width: 14px; height: 14px; fill: rgba(255,255,255,0.4); }
.page-hero h1 { font-size: clamp(1.9rem, 4vw, 3rem); color: var(--white); margin-bottom: 14px; font-weight: 800; max-width: 720px; }
.page-hero p { font-size: 1.05rem; color: rgba(255,255,255,0.78); max-width: 620px; line-height: 1.7; }

/* ---- SECTIONS ---- */
.section { padding: 88px 0; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-label { display: inline-block; font-size: 0.75rem; font-weight: 700; color: var(--electric); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 12px; font-family: 'Montserrat', sans-serif; }
.section-header h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); color: var(--dark); margin-bottom: 16px; }
.section-header p { font-size: 1.05rem; color: var(--gray-600); max-width: 580px; margin: 0 auto; }
.bg-gray { background: var(--gray-100); }

/* ---- SERVICES GRID ---- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: all var(--transition); border: 1px solid var(--gray-200); display: flex; flex-direction: column; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--electric); }
.service-card-body { padding: 28px; display: flex; flex-direction: column; flex: 1; }
.service-card-icon { width: 56px; height: 56px; background: linear-gradient(135deg, var(--electric) 0%, var(--electric-light) 100%); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.service-card-icon svg { width: 28px; height: 28px; fill: var(--yellow); }
.service-card h3 { font-size: 1.1rem; color: var(--dark); margin-bottom: 10px; }
.service-card p { font-size: 0.92rem; color: var(--gray-600); margin-bottom: 18px; line-height: 1.65; flex: 1; }
.service-link { display: inline-flex; align-items: center; gap: 6px; color: var(--electric); font-weight: 600; font-size: 0.9rem; transition: gap var(--transition); margin-top: auto; }
.service-link:hover { gap: 10px; }
.service-link svg { width: 16px; height: 16px; fill: currentColor; }

/* ---- SERVICE DETAIL LAYOUT ---- */
.service-section { padding: 80px 0; }
.service-section:nth-child(even) { background: var(--gray-100); }
.service-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.service-layout.reverse { direction: rtl; }
.service-layout.reverse > * { direction: ltr; }
.service-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.service-img img { width: 100%; height: 360px; object-fit: cover; }
.service-tag { display: inline-flex; align-items: center; gap: 6px; font-size: 0.75rem; font-weight: 700; color: var(--electric); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 12px; font-family: 'Montserrat', sans-serif; }
.service-tag svg { width: 14px; height: 14px; fill: var(--yellow); }
.service-content h2 { font-size: clamp(1.5rem, 2.8vw, 2rem); color: var(--dark); margin-bottom: 18px; }
.service-content p { font-size: 0.95rem; color: var(--gray-700); line-height: 1.75; margin-bottom: 14px; }
.service-bullets { list-style: none; margin: 20px 0 28px; }
.service-bullets li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.92rem; color: var(--gray-700); margin-bottom: 10px; }
.service-bullets li::before { content: ''; width: 18px; height: 18px; background: var(--electric); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23f7b731' d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E"); background-size: 12px; background-position: center; background-repeat: no-repeat; }
.btn-service { display: inline-flex; align-items: center; gap: 8px; background: var(--electric); color: var(--white); padding: 14px 28px; border-radius: 9px; font-weight: 700; font-size: 0.95rem; transition: all var(--transition); font-family: 'Montserrat', sans-serif; }
.btn-service:hover { background: var(--electric-light); transform: translateY(-2px); box-shadow: 0 4px 18px rgba(24,64,176,0.25); }
.btn-service svg { width: 16px; height: 16px; fill: currentColor; }

/* ---- WHY CHOOSE US ---- */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.why-item { display: flex; gap: 18px; padding: 28px; background: var(--white); border-radius: var(--radius); border: 1px solid var(--gray-200); transition: all var(--transition); }
.why-item:hover { border-color: var(--electric); box-shadow: 0 4px 20px rgba(24,64,176,0.1); }
.why-icon { flex-shrink: 0; width: 52px; height: 52px; background: linear-gradient(135deg, rgba(24,64,176,0.08) 0%, rgba(42,87,209,0.12) 100%); border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.why-icon svg { width: 26px; height: 26px; fill: var(--electric); }
.why-item h3 { font-size: 1.05rem; color: var(--dark); margin-bottom: 8px; }
.why-item p { font-size: 0.9rem; color: var(--gray-600); line-height: 1.65; }

/* ---- TESTIMONIALS ---- */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { background: var(--white); padding: 32px; border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--gray-200); transition: all var(--transition); }
.testimonial-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.testimonial-stars { color: #f59e0b; font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-text { font-size: 0.95rem; color: var(--gray-700); line-height: 1.75; margin-bottom: 22px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--electric); display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 700; font-size: 0.95rem; font-family: 'Montserrat', sans-serif; flex-shrink: 0; }
.testimonial-info strong { display: block; font-size: 0.92rem; color: var(--dark); font-weight: 600; }
.testimonial-info span { font-size: 0.82rem; color: var(--gray-600); }

/* ---- CTA BANNER ---- */
.cta-banner, .section-cta { background: linear-gradient(135deg, var(--electric) 0%, var(--electric-light) 60%, #1a3a9e 100%); padding: 72px 0; text-align: center; }
.cta-banner h2, .section-cta h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); color: var(--white); margin-bottom: 14px; }
.cta-banner p, .section-cta p { color: rgba(255,255,255,0.82); font-size: 1.05rem; margin-bottom: 32px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.btn-cta-yellow { display: inline-flex; align-items: center; gap: 10px; background: var(--yellow); color: var(--dark); padding: 18px 40px; border-radius: 10px; font-weight: 700; font-size: 1.1rem; transition: all var(--transition); box-shadow: 0 4px 20px rgba(247,183,49,0.3); font-family: 'Montserrat', sans-serif; }
.btn-cta-yellow:hover { background: var(--yellow-hover); transform: translateY(-2px); box-shadow: 0 6px 28px rgba(247,183,49,0.45); }
.btn-cta-yellow svg { width: 20px; height: 20px; fill: currentColor; }
.btn-cta-outline { display: inline-flex; align-items: center; gap: 10px; background: transparent; color: var(--white); padding: 16px 36px; border-radius: 10px; font-weight: 700; font-size: 1rem; border: 2px solid rgba(255,255,255,0.4); transition: all var(--transition); font-family: 'Montserrat', sans-serif; }
.btn-cta-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

/* ---- FAQ ACCORDION ---- */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border: 1px solid var(--gray-200); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; background: var(--white); }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 28px; cursor: pointer; font-weight: 600; font-size: 1rem; color: var(--dark); font-family: 'Montserrat', sans-serif; user-select: none; transition: color var(--transition); }
.faq-q:hover { color: var(--electric); }
.faq-q svg { width: 20px; height: 20px; fill: var(--electric); flex-shrink: 0; transition: transform var(--transition); }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 28px 22px; font-size: 0.95rem; color: var(--gray-700); line-height: 1.75; }
.faq-item.open .faq-a { display: block; }

/* ---- BLOG ---- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--gray-200); transition: all var(--transition); display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--electric); }
.blog-card-img { height: 200px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.blog-tag { font-size: 0.72rem; font-weight: 700; color: var(--electric); text-transform: uppercase; letter-spacing: 1.5px; font-family: 'Montserrat', sans-serif; }
.blog-date { font-size: 0.8rem; color: var(--gray-600); }
.blog-card h3 { font-size: 1.05rem; color: var(--dark); margin-bottom: 10px; line-height: 1.35; }
.blog-card p { font-size: 0.88rem; color: var(--gray-600); line-height: 1.65; margin-bottom: 18px; flex: 1; }
.blog-read-more { display: inline-flex; align-items: center; gap: 6px; color: var(--electric); font-weight: 600; font-size: 0.88rem; transition: gap var(--transition); margin-top: auto; }
.blog-read-more:hover { gap: 10px; }
.blog-read-more svg { width: 14px; height: 14px; fill: currentColor; }

/* ---- BLOG POST ---- */
.blog-post { max-width: 760px; margin: 0 auto; padding: 64px 20px; }
.blog-post-header { margin-bottom: 36px; }
.blog-post-meta { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; flex-wrap: wrap; }
.blog-post-tag { font-size: 0.72rem; font-weight: 700; background: rgba(24,64,176,0.08); color: var(--electric); padding: 4px 12px; border-radius: 20px; text-transform: uppercase; letter-spacing: 1.5px; font-family: 'Montserrat', sans-serif; }
.blog-post-date { font-size: 0.85rem; color: var(--gray-600); }
.blog-post h1 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); color: var(--dark); margin-bottom: 18px; line-height: 1.25; }
.blog-post-excerpt { font-size: 1.08rem; color: var(--gray-600); line-height: 1.75; margin-bottom: 28px; border-left: 3px solid var(--yellow); padding-left: 18px; }
.blog-post-img { border-radius: var(--radius); overflow: hidden; margin-bottom: 40px; box-shadow: var(--shadow-lg); }
.blog-post-img img { width: 100%; height: 380px; object-fit: cover; }
.blog-post-body h2 { font-size: 1.45rem; color: var(--dark); margin: 36px 0 14px; }
.blog-post-body h3 { font-size: 1.15rem; color: var(--dark); margin: 28px 0 10px; }
.blog-post-body p { font-size: 0.96rem; color: var(--gray-700); line-height: 1.8; margin-bottom: 18px; }
.blog-post-body ul, .blog-post-body ol { padding-left: 28px; margin-bottom: 18px; }
.blog-post-body li { font-size: 0.96rem; color: var(--gray-700); line-height: 1.75; margin-bottom: 8px; }
.blog-cta-box { background: linear-gradient(135deg, rgba(24,64,176,0.06), rgba(42,87,209,0.1)); border: 1px solid rgba(24,64,176,0.15); border-radius: var(--radius); padding: 32px; margin: 40px 0; text-align: center; }
.blog-cta-box h3 { font-size: 1.2rem; color: var(--dark); margin-bottom: 10px; }
.blog-cta-box p { font-size: 0.9rem; color: var(--gray-600); margin-bottom: 20px; }

/* ---- CITY LANDING PAGE ---- */
.city-hero { background: linear-gradient(135deg, var(--electric) 0%, var(--dark) 100%); padding: 72px 0 60px; }
.city-hero h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); color: var(--white); margin-bottom: 16px; font-weight: 800; max-width: 800px; }
.city-hero p { font-size: 1.05rem; color: rgba(255,255,255,0.8); max-width: 600px; line-height: 1.7; margin-bottom: 32px; }
.city-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; }
.city-stat { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius); padding: 24px; text-align: center; }
.city-stat strong { display: block; font-size: 1.6rem; color: var(--yellow); font-family: 'Montserrat', sans-serif; font-weight: 800; margin-bottom: 4px; }
.city-stat span { font-size: 0.82rem; color: rgba(255,255,255,0.65); }

/* ---- REVIEWS PAGE ---- */
.reviews-summary { display: grid; grid-template-columns: auto 1fr; gap: 40px; align-items: center; background: var(--white); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow); border: 1px solid var(--gray-200); margin-bottom: 48px; }
.reviews-score { text-align: center; }
.reviews-score .big-number { font-size: 4rem; font-weight: 800; color: var(--dark); font-family: 'Montserrat', sans-serif; line-height: 1; }
.reviews-score .big-stars { color: #f59e0b; font-size: 1.4rem; letter-spacing: 3px; display: block; margin: 8px 0; }
.reviews-score span { font-size: 0.85rem; color: var(--gray-600); }
.reviews-bars { flex: 1; }
.rating-bar { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; font-size: 0.88rem; color: var(--gray-700); }
.rating-bar-track { flex: 1; height: 8px; background: var(--gray-200); border-radius: 4px; overflow: hidden; }
.rating-bar-fill { height: 100%; background: #f59e0b; border-radius: 4px; }
.rating-bar .pct { min-width: 36px; text-align: right; font-weight: 600; color: var(--dark); }

/* ---- FINANCING PAGE ---- */
.financing-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 48px; }
.financing-card { background: var(--white); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); border: 1px solid var(--gray-200); transition: all var(--transition); text-align: center; }
.financing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--electric); }
.financing-card-icon { width: 64px; height: 64px; background: linear-gradient(135deg, var(--electric), var(--electric-light)); border-radius: 16px; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.financing-card-icon svg { width: 32px; height: 32px; fill: var(--yellow); }
.financing-card h3 { font-size: 1.1rem; color: var(--dark); margin-bottom: 10px; }
.financing-card p { font-size: 0.9rem; color: var(--gray-600); line-height: 1.65; }

/* ---- FOOTER ---- */
.footer { background: var(--dark); color: rgba(255,255,255,0.65); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1.1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo-icon { width: 38px; height: 38px; background: var(--electric); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.footer-logo-icon svg { width: 22px; height: 22px; fill: var(--yellow); }
.footer-logo-text { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.1rem; color: var(--white); line-height: 1.1; }
.footer-logo-text .co { color: var(--electric-light); }
.footer-brand p { font-size: 0.88rem; line-height: 1.72; margin-bottom: 16px; }
.footer-license { display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); border-radius: 6px; font-size: 0.78rem; font-weight: 600; color: rgba(255,255,255,0.5); margin-bottom: 20px; }
.footer-license svg { width: 13px; height: 13px; fill: var(--yellow); }
.footer-social { display: flex; gap: 10px; margin-top: 4px; }
.footer-social a { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.07); display: flex; align-items: center; justify-content: center; transition: background var(--transition); }
.footer-social a:hover { background: var(--electric); }
.footer-social svg { width: 16px; height: 16px; fill: rgba(255,255,255,0.7); }
.footer h4 { color: var(--white); font-size: 0.95rem; font-family: 'Montserrat', sans-serif; margin-bottom: 20px; letter-spacing: 0.3px; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul a { font-size: 0.88rem; transition: color var(--transition); }
.footer ul a:hover { color: var(--white); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 13px; font-size: 0.88rem; }
.footer-contact-item svg { width: 15px; height: 15px; fill: var(--yellow); flex-shrink: 0; margin-top: 3px; }
.footer-contact-item a:hover { color: var(--white); }
.footer-areas { display: flex; flex-wrap: wrap; gap: 6px; }
.footer-area-pill { font-size: 0.78rem; padding: 4px 10px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08); border-radius: 20px; color: rgba(255,255,255,0.55); transition: all var(--transition); }
.footer-area-pill:hover { background: rgba(24,64,176,0.4); color: rgba(255,255,255,0.85); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding: 24px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); }

/* ---- MOBILE CALL BAR ---- */
.mobile-call-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 1001; background: var(--yellow); box-shadow: 0 -4px 20px rgba(0,0,0,0.15); }
.mobile-call-bar a { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 16px; color: var(--dark); font-weight: 700; font-size: 1.05rem; font-family: 'Montserrat', sans-serif; }
.mobile-call-bar svg { width: 22px; height: 22px; fill: currentColor; animation: ring 3s ease-in-out infinite; }
@keyframes ring { 0%, 80%, 100% { transform: rotate(0); } 85%, 95% { transform: rotate(15deg); } 90% { transform: rotate(-15deg); } }

/* ---- SCROLL ANIMATIONS ---- */
.animate-on-scroll { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
    .services-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .service-layout { gap: 40px; }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .financing-options { grid-template-columns: repeat(2, 1fr); }
    .city-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .nav-desktop, .header-phone, .google-rating { display: none; }
    .hamburger { display: flex; }
    .header-inner { height: 64px; }
    .hero { min-height: 88vh; }
    .hero-content { padding: 60px 0; }
    .section { padding: 60px 0; }
    .services-grid, .testimonials-grid, .why-grid { grid-template-columns: 1fr; }
    .trust-bar-inner { grid-template-columns: repeat(2, 1fr); }
    .trust-item { border-bottom: 1px solid rgba(255,255,255,0.1); border-right: none; }
    .trust-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.1); }
    .footer-grid { grid-template-columns: 1fr; }
    .mobile-call-bar { display: block; }
    body { padding-bottom: 56px; }
    .service-layout, .service-layout.reverse { grid-template-columns: 1fr; direction: ltr; gap: 28px; }
    .service-img { order: -1; }
    .service-img img { height: 240px; }
    .cta-btns { flex-direction: column; align-items: center; }
    .blog-grid { grid-template-columns: 1fr; }
    .financing-options { grid-template-columns: 1fr; }
    .city-stats { grid-template-columns: repeat(2, 1fr); }
    .reviews-summary { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .hero-cta { flex-direction: column; align-items: flex-start; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .city-stats { grid-template-columns: repeat(2, 1fr); }
}
