/*
Theme Name: Mendoza's HVAC
Theme URI: https://mendozasac.com
Author: Shaka.gg
Author URI: https://shaka.gg
Description: Custom WordPress theme for Mendoza's Air Conditioning & Heating. Family-owned HVAC serving the Gulf Coast. All content is editable through the WordPress Customizer (Appearance > Customize).
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mendozas
Tags: one-column, custom-logo, custom-menu, featured-images, theme-options
*/

/* ========== RESET & VARIABLES ========== */
:root {
  --blue-deep: #0f2557;
  --blue-primary: #1e3a8a;
  --blue-mid: #2b4fa8;
  --blue-light: #3b82f6;
  --blue-pale: #dbeafe;
  --blue-wash: #eff6ff;
  --red: #dc2626;
  --red-warm: #ef4444;
  --red-deep: #b91c1c;
  --orange-warm: #f97316;
  --cream: #fefcf8;
  --warm-white: #fffdf7;
  --warm-gray: #f5f0e8;
  --text-dark: #1a1a2e;
  --text-body: #374151;
  --text-muted: #6b7280;
  --text-light: #9ca3af;
  --shadow-sm: 0 1px 3px rgba(15,37,87,0.08);
  --shadow-md: 0 4px 14px rgba(15,37,87,0.1);
  --shadow-lg: 0 10px 30px rgba(15,37,87,0.12);
  --shadow-xl: 0 20px 50px rgba(15,37,87,0.15);
  --radius: 12px;
  --radius-lg: 20px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: 'Source Sans 3', -apple-system, sans-serif;
  color: var(--text-body);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: 'DM Serif Display', Georgia, serif; color: var(--text-dark); line-height: 1.2; }
.handwritten { font-family: 'Caveat', cursive; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ========== UTILITY ========== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 100px 0; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 32px; border-radius: 50px; font-weight: 600;
  font-size: 1rem; transition: all 0.3s ease; cursor: pointer;
  border: none; font-family: inherit;
}
.btn-primary { background: var(--red); color: white; box-shadow: 0 4px 14px rgba(220,38,38,0.3); }
.btn-primary:hover { background: var(--red-deep); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(220,38,38,0.4); }
.btn-outline { background: transparent; color: white; border: 2px solid rgba(255,255,255,0.5); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: white; }
.btn-blue { background: var(--blue-primary); color: white; box-shadow: 0 4px 14px rgba(30,58,138,0.3); }
.btn-blue:hover { background: var(--blue-deep); transform: translateY(-2px); }

/* ========== PLACEHOLDER STYLES ========== */
.placeholder-img {
  background: linear-gradient(135deg, var(--blue-pale), var(--warm-gray));
  border: 3px dashed var(--blue-light);
  border-radius: var(--radius);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--blue-mid); font-weight: 600; text-align: center; padding: 30px;
  min-height: 250px; position: relative;
}
.placeholder-img i { font-size: 2.5rem; margin-bottom: 12px; opacity: 0.6; }
.placeholder-img .ph-label { font-size: 0.95rem; }
.placeholder-img .ph-hint { font-size: 0.8rem; color: var(--text-muted); margin-top: 6px; font-weight: 400; }

.placeholder-text {
  background: #fff8e1; border-left: 4px solid var(--orange-warm);
  padding: 16px 20px; border-radius: 0 8px 8px 0;
  font-size: 0.9rem; color: #92400e;
}
.placeholder-text i { margin-right: 8px; }

/* Hide placeholders when image is present */
.has-image .placeholder-img { display: none; }
.has-image img { border-radius: var(--radius); width: 100%; height: 100%; object-fit: cover; }

/* Hide owner notes when logged out */
body:not(.logged-in) .owner-note { display: none; }

/* ========== TOPBAR ========== */
.topbar { background: var(--blue-deep); color: white; padding: 8px 0; font-size: 0.85rem; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.topbar a { color: rgba(255,255,255,0.85); transition: color 0.2s; }
.topbar a:hover { color: white; }
.topbar-left { display: flex; gap: 20px; align-items: center; }
.topbar-right { display: flex; gap: 16px; align-items: center; }
.topbar .emergency-badge {
  background: var(--red); padding: 3px 12px; border-radius: 20px;
  font-weight: 600; font-size: 0.8rem; animation: pulse-glow 2s infinite;
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(220,38,38,0.4); }
  50% { box-shadow: 0 0 0 6px rgba(220,38,38,0); }
}

/* ========== NAVBAR ========== */
.navbar { background: white; position: sticky; top: 0; z-index: 100; box-shadow: var(--shadow-sm); transition: box-shadow 0.3s; }
.navbar.scrolled { box-shadow: var(--shadow-md); }
.nav-inner { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; }
.nav-logo { display: flex; align-items: center; gap: 14px; }
.nav-logo-icon {
  width: 50px; height: 50px; background: var(--blue-primary);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.3rem;
}
.nav-logo img { max-height: 50px; width: auto; }
.nav-logo-text h2 { font-size: 1.25rem; color: var(--red); margin: 0; line-height: 1.1; }
.nav-logo-text span { font-size: 0.72rem; color: var(--blue-primary); font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; }

.nav-links { display: flex; gap: 8px; align-items: center; }
.nav-links a, .nav-links .menu-item a {
  padding: 8px 16px; border-radius: 8px; font-weight: 500;
  color: var(--text-body); transition: all 0.2s; font-size: 0.95rem;
}
.nav-links a:hover, .nav-links .menu-item a:hover { background: var(--blue-wash); color: var(--blue-primary); }
.nav-cta { background: var(--red) !important; color: white !important; border-radius: 50px !important; padding: 10px 24px !important; font-weight: 600 !important; }
.nav-cta:hover { background: var(--red-deep) !important; }
/* WP menu reset */
.nav-links ul { display: flex; gap: 8px; list-style: none; margin: 0; padding: 0; }
.nav-links li { list-style: none; }

.mobile-toggle {
  display: none; background: none; border: none; font-size: 1.5rem;
  color: var(--text-dark); cursor: pointer; padding: 8px;
}

/* ========== HERO ========== */
.hero {
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue-primary) 50%, var(--blue-mid) 100%);
  color: white; padding: 80px 0 100px; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(59,130,246,0.2), transparent 50%),
              radial-gradient(circle at 20% 80%, rgba(220,38,38,0.1), transparent 50%);
}
.hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 120px;
  background: linear-gradient(to top, var(--cream), transparent);
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12); backdrop-filter: blur(10px);
  padding: 8px 20px; border-radius: 50px; font-size: 0.9rem;
  margin-bottom: 24px; border: 1px solid rgba(255,255,255,0.15);
}
.hero-badge .handwritten { font-size: 1.1rem; color: #fbbf24; }
.hero h1 { font-size: 3.2rem; margin-bottom: 20px; }
.hero h1 .highlight { color: #fbbf24; }
.hero p { font-size: 1.15rem; opacity: 0.9; margin-bottom: 36px; max-width: 520px; line-height: 1.8; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-visual { display: flex; flex-direction: column; gap: 20px; }
.hero-visual .placeholder-img {
  min-height: 340px; border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.8);
}
.hero-visual .placeholder-img .ph-hint { color: rgba(255,255,255,0.5); }
.hero-visual .has-image img { min-height: 340px; border-radius: var(--radius); }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.hero-stat {
  background: rgba(255,255,255,0.08); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 20px 16px; border-radius: var(--radius); text-align: center;
}
.hero-stat .number { font-size: 1.8rem; font-weight: 700; color: #fbbf24; }
.hero-stat .label { font-size: 0.8rem; opacity: 0.7; margin-top: 4px; text-transform: uppercase; letter-spacing: 0.5px; }

/* ========== TRUST BAR ========== */
.trust-bar { position: relative; z-index: 3; margin-top: -50px; padding-bottom: 40px; }
.trust-bar-inner {
  background: white; border-radius: var(--radius-lg); padding: 32px 40px;
  box-shadow: var(--shadow-xl);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 24px;
}
.trust-item { display: flex; align-items: center; gap: 14px; }
.trust-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
}
.trust-icon.blue { background: var(--blue-wash); color: var(--blue-primary); }
.trust-icon.red { background: #fef2f2; color: var(--red); }
.trust-icon.green { background: #f0fdf4; color: #16a34a; }
.trust-icon.amber { background: #fffbeb; color: #d97706; }
.trust-text strong { display: block; font-size: 0.95rem; color: var(--text-dark); }
.trust-text span { font-size: 0.82rem; color: var(--text-muted); }

/* ========== WHY CHOOSE US ========== */
.why-us { background: var(--cream); }
.section-header { text-align: center; max-width: 680px; margin: 0 auto 60px; }
.section-header .overline { font-family: 'Caveat', cursive; color: var(--red); font-size: 1.3rem; margin-bottom: 8px; display: block; }
.section-header h2 { font-size: 2.5rem; margin-bottom: 16px; }
.section-header p { color: var(--text-muted); font-size: 1.1rem; }

.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card {
  background: white; border-radius: var(--radius-lg); padding: 40px 32px;
  box-shadow: var(--shadow-sm); transition: all 0.3s ease;
  border: 1px solid rgba(0,0,0,0.04); position: relative; overflow: hidden;
}
.why-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--blue-primary); transform: scaleX(0); transition: transform 0.3s;
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.why-card:hover::before { transform: scaleX(1); }
.why-card-icon {
  width: 64px; height: 64px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 24px;
}
.why-card h3 { font-size: 1.25rem; margin-bottom: 12px; }
.why-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }

/* ========== SERVICES ========== */
.services { background: white; }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.service-card {
  background: var(--cream); border-radius: var(--radius-lg); overflow: hidden;
  display: grid; grid-template-columns: 200px 1fr; transition: all 0.3s;
  border: 1px solid rgba(0,0,0,0.04);
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.service-card .placeholder-img { border-radius: 0; border: none; min-height: 200px; background: linear-gradient(135deg, var(--blue-pale), #e8f0fe); }
.service-card .has-image img { width: 100%; height: 100%; object-fit: cover; }
.service-card-body { padding: 28px; display: flex; flex-direction: column; justify-content: center; }
.service-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.service-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }
.service-card .service-link {
  margin-top: 14px; color: var(--blue-primary); font-weight: 600;
  font-size: 0.9rem; display: inline-flex; align-items: center; gap: 6px; transition: gap 0.2s;
}
.service-card .service-link:hover { gap: 10px; }

/* ========== ABOUT / STORY ========== */
.story { background: var(--blue-wash); }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.story-images { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.story-images > div:first-child { grid-column: 1 / -1; }
.story-images .placeholder-img:first-of-type { min-height: 280px; }
.story-images .placeholder-img { min-height: 180px; }
.story-images .has-image img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); }
.story-content .overline { font-family: 'Caveat', cursive; color: var(--red); font-size: 1.3rem; margin-bottom: 8px; display: block; }
.story-content h2 { font-size: 2.3rem; margin-bottom: 20px; }
.story-content p { margin-bottom: 16px; color: var(--text-body); line-height: 1.8; }
.story-content .quote {
  background: white; border-left: 4px solid var(--red);
  padding: 24px 28px; border-radius: 0 var(--radius) var(--radius) 0;
  margin: 28px 0; font-style: italic; color: var(--text-dark); font-size: 1.05rem;
}
.story-content .quote cite { display: block; margin-top: 10px; font-style: normal; font-weight: 600; font-size: 0.9rem; color: var(--text-muted); }

/* ========== AMERICAN STANDARD ========== */
.brand-partner { background: linear-gradient(135deg, var(--blue-deep), var(--blue-primary)); color: white; }
.brand-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.brand-content h2 { color: white; font-size: 2.2rem; margin-bottom: 16px; }
.brand-content p { opacity: 0.9; line-height: 1.8; margin-bottom: 20px; }
.brand-features { display: flex; flex-direction: column; gap: 16px; margin-top: 28px; }
.brand-feature { display: flex; align-items: flex-start; gap: 14px; }
.brand-feature i { color: #fbbf24; font-size: 1.1rem; margin-top: 3px; }
.brand-feature strong { display: block; margin-bottom: 2px; }
.brand-feature span { opacity: 0.8; font-size: 0.9rem; }
.brand-logo-area .placeholder-img {
  background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.7); min-height: 300px;
}
.brand-logo-area .placeholder-img .ph-hint { color: rgba(255,255,255,0.4); }
.brand-logo-area .has-image img { border-radius: var(--radius); }

/* ========== SERVICE AREA ========== */
.service-area { background: white; }
.area-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.area-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.area-list li { display: flex; align-items: center; gap: 10px; padding: 10px 16px; border-radius: 8px; font-size: 0.95rem; transition: background 0.2s; }
.area-list li:hover { background: var(--blue-wash); }
.area-list li i { color: var(--blue-light); font-size: 0.8rem; }
.area-map .placeholder-img { min-height: 380px; }

/* ========== FINANCING ========== */
.financing { background: var(--warm-gray); }
.financing-card {
  background: white; border-radius: var(--radius-lg); padding: 60px;
  box-shadow: var(--shadow-lg); max-width: 900px; margin: 0 auto; text-align: center;
  position: relative; overflow: hidden;
}
.financing-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: linear-gradient(90deg, var(--blue-primary), var(--red), var(--blue-primary));
}
.financing-card h2 { font-size: 2.2rem; margin-bottom: 12px; }
.financing-card > p { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 32px; max-width: 600px; margin-left: auto; margin-right: auto; }
.financing-placeholder {
  background: #fff8e1; border: 2px dashed #f59e0b;
  border-radius: var(--radius); padding: 40px; margin-bottom: 28px;
}
.financing-placeholder i { font-size: 2rem; color: #f59e0b; margin-bottom: 12px; }
.financing-placeholder h3 { font-family: 'Source Sans 3', sans-serif; font-size: 1.1rem; color: #92400e; margin-bottom: 8px; }
.financing-placeholder p { font-size: 0.9rem; color: #b45309; }
.financing-content { text-align: left; margin-bottom: 28px; }
.financing-content img { border-radius: var(--radius); margin-bottom: 16px; }
.financing-note { font-size: 0.85rem; color: var(--text-muted); margin-top: 20px; }

/* ========== TESTIMONIALS ========== */
.testimonials { background: var(--cream); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: white; border-radius: var(--radius-lg); padding: 32px;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(0,0,0,0.04); transition: all 0.3s;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); }
.testimonial-stars { color: #fbbf24; font-size: 0.95rem; margin-bottom: 16px; }
.testimonial-card blockquote, .testimonial-card p.testimonial-text { font-style: italic; color: var(--text-body); margin-bottom: 20px; line-height: 1.7; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--blue-wash); display: flex; align-items: center; justify-content: center;
  color: var(--blue-primary); font-weight: 700; font-size: 1rem;
}
.testimonial-name strong { display: block; font-size: 0.95rem; color: var(--text-dark); }
.testimonial-name span { font-size: 0.82rem; color: var(--text-muted); }

/* ========== CTA BANNER ========== */
.cta-banner { background: linear-gradient(135deg, var(--red-deep), var(--red), var(--red-warm)); color: white; text-align: center; }
.cta-banner h2 { color: white; font-size: 2.5rem; margin-bottom: 16px; }
.cta-banner p { opacity: 0.9; font-size: 1.1rem; margin-bottom: 36px; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-banner .btn-outline { border-color: rgba(255,255,255,0.6); font-size: 1.05rem; padding: 18px 36px; }
.cta-banner .btn-outline:hover { background: white; color: var(--red); border-color: white; }
.cta-phone { font-size: 2rem; font-weight: 700; margin-bottom: 8px; }
.cta-phone a { color: white; }
.cta-phone i { margin-right: 10px; }

/* ========== CONTACT ========== */
.contact-section { background: white; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info h2 { font-size: 2rem; margin-bottom: 20px; }
.contact-info > p { color: var(--text-muted); margin-bottom: 32px; line-height: 1.8; }
.contact-detail { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.contact-detail-icon {
  width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--blue-wash); color: var(--blue-primary); font-size: 1.1rem;
}
.contact-detail strong { display: block; color: var(--text-dark); margin-bottom: 2px; }
.contact-detail span { color: var(--text-muted); font-size: 0.95rem; }
.contact-detail a { color: var(--blue-primary); font-weight: 500; }

.contact-form { background: var(--blue-wash); border-radius: var(--radius-lg); padding: 40px; }
.contact-form h3 { font-size: 1.4rem; margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 600; font-size: 0.9rem; color: var(--text-dark); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 14px 18px; border: 2px solid #e5e7eb;
  border-radius: 10px; font-family: inherit; font-size: 1rem;
  transition: border-color 0.2s; background: white;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--blue-light); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit { margin-top: 8px; }
/* WP form plugin styles */
.contact-form .wpcf7 input[type="submit"] {
  background: var(--red); color: white; border: none; padding: 16px 32px;
  border-radius: 50px; font-weight: 600; font-size: 1rem; cursor: pointer;
  width: 100%; transition: background 0.3s;
}
.contact-form .wpcf7 input[type="submit"]:hover { background: var(--red-deep); }

/* ========== FOOTER ========== */
.site-footer { background: var(--blue-deep); color: rgba(255,255,255,0.7); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand h3 { color: white; font-size: 1.3rem; margin-bottom: 4px; }
.footer-brand .tagline { color: var(--blue-light); font-size: 0.85rem; margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; max-width: 300px; }
.site-footer h4 { color: white; font-size: 0.8rem; margin-bottom: 16px; font-family: 'Source Sans 3', sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.site-footer ul li { margin-bottom: 10px; }
.site-footer ul a { font-size: 0.9rem; transition: color 0.2s; }
.site-footer ul a:hover { color: white; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center;
  font-size: 1rem; transition: all 0.2s;
}
.footer-social a:hover { background: var(--blue-primary); color: white; }
.footer-bottom { padding: 20px 0; text-align: center; font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.footer-bottom a { color: rgba(255,255,255,0.6); }

/* ========== ANIMATIONS ========== */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in.delay-1 { transition-delay: 0.1s; }
.fade-in.delay-2 { transition-delay: 0.2s; }
.fade-in.delay-3 { transition-delay: 0.3s; }
.fade-in.delay-4 { transition-delay: 0.4s; }

/* ========== MOBILE NAV ========== */
.mobile-nav {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: white; z-index: 200; padding: 80px 24px 24px; flex-direction: column; gap: 8px;
}
.mobile-nav.active { display: flex; }
.mobile-nav a { padding: 16px 20px; border-radius: 12px; font-size: 1.1rem; font-weight: 500; color: var(--text-dark); transition: background 0.2s; }
.mobile-nav a:hover { background: var(--blue-wash); }
.mobile-nav .nav-cta { text-align: center; margin-top: 16px; }
.mobile-close { position: absolute; top: 20px; right: 24px; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--text-dark); }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero-grid, .story-grid, .brand-grid, .area-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { grid-template-columns: 160px 1fr; }
  .why-grid, .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section-pad { padding: 60px 0; }
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  .hero { padding: 50px 0 70px; }
  .hero h1 { font-size: 2rem; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .hero-stat { padding: 14px 10px; }
  .hero-stat .number { font-size: 1.4rem; }
  .trust-bar-inner { flex-direction: column; align-items: flex-start; padding: 24px; }
  .why-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .service-card { grid-template-columns: 1fr; }
  .service-card .placeholder-img { min-height: 180px; }
  .story-images { grid-template-columns: 1fr; }
  .area-list { grid-template-columns: 1fr; }
  .section-header h2 { font-size: 2rem; }
  .financing-card { padding: 32px 24px; }
  .contact-form { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .topbar-inner { justify-content: center; text-align: center; }
  .topbar-left { flex-wrap: wrap; justify-content: center; }
}
