/* ========================================
   AVILA III ELECTRIC — styles.css
   Mobile-first, plain CSS
======================================== */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:   #1c1c1c;
  --navy2:  #2d2d2d;
  --yellow: #aa0000;
  --yellow2:#880000;
  --white:  #FFFFFF;
  --gray1:  #F4F6F9;
  --gray2:  #E2E6EC;
  --gray3:  #8A94A6;
  --text:   #1c1c1c;
  --radius: 10px;
  --shadow: 0 4px 24px rgba(13,27,42,0.10);
  --transition: 0.22s ease;
  --max-w:  1160px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2rem, 6vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 3vw, 1.35rem); }
p  { color: #3D4F66; line-height: 1.7; }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--yellow);
  padding: 4px 12px;
  border-radius: 99px;
  margin-bottom: 14px;
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}

section { padding: 64px 0; }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}
.section-header p { margin-top: 12px; font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), transform var(--transition);
  text-align: center;
}
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--yellow);
  color: var(--white);
  border-color: var(--yellow);
}
.btn-primary:hover { background: var(--yellow2); border-color: var(--yellow2); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

.btn-dark {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-dark:hover { background: var(--navy2); }

/* ---------- HEADER / NAV ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  box-shadow: 0 2px 16px rgba(0,0,0,0.18);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo .logo-icon {
  width: 42px;
  height: 42px;
  background: var(--yellow);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-logo .logo-icon svg { width: 24px; height: 24px; }

.nav-logo .logo-text { color: var(--white); }
.nav-logo .logo-text strong { display: block; font-size: 1.05rem; line-height: 1.1; }
.nav-logo .logo-text span { font-size: 0.7rem; color: var(--gray3); letter-spacing: 0.06em; text-transform: uppercase; }

.nav-links {
  display: none;
  gap: 4px;
}

.nav-links a {
  color: rgba(255,255,255,0.8);
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); background: rgba(255,255,255,0.08); }

.nav-cta {
  display: none;
}

.nav-hamburger {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--navy2);
  padding: 16px 20px 24px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: rgba(255,255,255,0.85);
  padding: 13px 0;
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--yellow); }
.mobile-menu .mobile-cta {
  margin-top: 16px;
  background: var(--yellow);
  color: var(--white);
  border-radius: var(--radius);
  padding: 14px;
  text-align: center;
  font-weight: 700;
  border-bottom: none;
}
.mobile-menu .mobile-cta:hover { background: var(--yellow2); color: var(--white); }

/* Desktop nav */
@media (min-width: 768px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-hamburger { display: none; }
}

/* ---------- HERO (Home) ---------- */
.hero {
  background: url('../images/montebello-electrician-avila-iii.jpg') center center / cover no-repeat;
  color: var(--white);
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.70);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero .section-label { margin-bottom: 20px; }

.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 span { color: var(--yellow); }

.hero p {
  color: rgba(255,255,255,0.78);
  font-size: 1.15rem;
  max-width: 560px;
  margin-bottom: 36px;
}

.hero-btns { display: flex; flex-wrap: wrap; gap: 12px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 99px;
  padding: 8px 16px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  margin-top: 40px;
}
.hero-badge strong { color: var(--white); }

/* ---------- TRUST BAR ---------- */
.trust-bar {
  background: var(--gray1);
  border-top: 3px solid var(--yellow);
  border-bottom: 1px solid var(--gray2);
  padding: 0;
}

.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 24px;
  border-right: 1px solid rgba(0,0,0,0.08);
  flex: 1 1 160px;
  min-width: 140px;
}
.trust-item:last-child { border-right: none; }

.trust-item svg { flex-shrink: 0; color: var(--yellow); }
.trust-item .trust-text strong { display: block; font-size: 0.95rem; font-weight: 700; color: var(--navy); }
.trust-item .trust-text span { font-size: 0.75rem; color: var(--gray3); }

/* ---------- SERVICES PREVIEW (Home) ---------- */
.services-preview { background: var(--gray1); }

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--gray2);
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(13,27,42,0.13); }

.service-card .card-icon {
  width: 52px;
  height: 52px;
  background: var(--yellow);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}
.service-card .card-icon svg { width: 26px; height: 26px; }
.service-card h3 { color: var(--navy); }
.service-card p { font-size: 0.92rem; }
.service-card .card-link {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--yellow2);
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.service-card .card-link:hover { color: var(--navy); }

@media (min-width: 540px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

/* ---------- WHY CHOOSE US ---------- */
.why-us { background: var(--white); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.why-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.why-item .why-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
}
.why-item .why-icon svg { width: 22px; height: 22px; }
.why-item h3 { color: var(--navy); margin-bottom: 6px; }
.why-item p { font-size: 0.93rem; }

@media (min-width: 700px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }

/* ---------- SERVICE AREA ---------- */
.service-area {
  background: url('../images/east-la-electrician-avila-iii.jpg') center center / cover no-repeat;
  color: var(--white);
  position: relative;
}
.service-area::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.60);
}
.service-area .container { position: relative; z-index: 1; }

.service-area .section-header { text-align: left; margin-bottom: 28px; }
.service-area h2 { color: var(--white); }
.service-area .section-header p { color: rgba(255,255,255,0.7); }

.area-inner {
  display: grid;
  gap: 40px;
}

.city-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.city-tag {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 99px;
  padding: 6px 14px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
}

.area-cta {
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 28px;
  align-self: flex-start;
}
.area-cta h3 { color: var(--yellow); margin-bottom: 10px; }
.area-cta p { color: rgba(255,255,255,0.7); font-size: 0.92rem; margin-bottom: 18px; }

@media (min-width: 768px) { .area-inner { grid-template-columns: 1fr 1fr; } }

/* ---------- TESTIMONIALS ---------- */
.testimonials { background: var(--gray1); }

.testimonials-grid {
  display: grid;
  gap: 20px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray2);
  position: relative;
}
.testimonial-card::before { display: none; }
.testimonial-card p { padding-top: 0; font-size: 0.95rem; font-style: italic; }
.testimonial-meta { margin-top: 16px; display: flex; align-items: center; gap: 10px; }
.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.testimonial-meta strong { display: block; font-size: 0.9rem; color: var(--navy); }
.testimonial-meta span { font-size: 0.78rem; color: var(--gray3); }
.stars { color: var(--yellow); font-size: 0.85rem; letter-spacing: 2px; }

@media (min-width: 700px)  { .testimonials-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

/* ---------- CTA BANNER ---------- */
.cta-banner {
  background: var(--navy);
  padding: 56px 0;
  text-align: center;
  border-top: 4px solid var(--yellow);
}
.cta-banner h2 { color: var(--white); margin-bottom: 10px; }
.cta-banner p { color: rgba(255,255,255,0.7); margin-bottom: 28px; font-size: 1.05rem; }
.cta-banner .btn-group { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }
.cta-banner .btn-dark { background: var(--yellow); color: var(--white); border-color: var(--yellow); }
.cta-banner .btn-dark:hover { background: var(--yellow2); border-color: var(--yellow2); }

/* ---------- PAGE HERO (inner pages) ---------- */
.page-hero {
  background: url('../images/montebello-electrician-avila-iii.jpg') center center / cover no-repeat;
  color: var(--white);
  padding: 64px 0 56px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.70);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,0.72); font-size: 1.1rem; max-width: 600px; }

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--yellow); }
.breadcrumb span { color: rgba(255,255,255,0.35); }

/* ---------- SERVICES PAGE ---------- */
.services-full { background: var(--gray1); }

.services-full-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}

.service-full-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray2);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: transform var(--transition);
}
.service-full-card:hover { transform: translateY(-3px); }

.service-full-card .card-icon {
  width: 60px;
  height: 60px;
  background: var(--yellow);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}
.service-full-card .card-icon svg { width: 30px; height: 30px; }
.service-full-card h3 { color: var(--navy); margin-bottom: 8px; }
.service-full-card ul { margin-top: 12px; display: flex; flex-direction: column; gap: 6px; }
.service-full-card ul li {
  font-size: 0.88rem;
  color: #4a5568;
  padding-left: 16px;
  position: relative;
}
.service-full-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--yellow2);
  font-weight: 700;
  font-size: 0.8rem;
}

@media (min-width: 700px) { .services-full-grid { grid-template-columns: 1fr 1fr; } }

.services-bottom-cta {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  color: var(--white);
  margin-top: 20px;
}
.services-bottom-cta h3 { color: var(--white); font-size: 1.4rem; margin-bottom: 10px; }
.services-bottom-cta p { color: rgba(255,255,255,0.7); margin-bottom: 24px; }

/* ---------- ABOUT PAGE ---------- */
.about-story { background: var(--white); }

.about-story-inner {
  display: grid;
  gap: 48px;
  align-items: center;
}

.story-image {
  background: url('../images/montebello-electrician-avila-iii.jpg') center center / cover no-repeat;
  border-radius: 16px;
  padding: 48px 32px;
  color: var(--white);
  text-align: center;
}
.story-image .story-year {
  font-size: 5rem;
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 8px;
}
.story-image p { color: rgba(255,255,255,0.72); font-size: 0.95rem; }

.story-content .section-label { text-align: left; }
.story-content h2 { margin-bottom: 16px; }
.story-content p + p { margin-top: 16px; }

.story-stat-row {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.stat-box {
  border-left: 3px solid var(--yellow);
  padding-left: 14px;
}
.stat-box strong { display: block; font-size: 1.8rem; color: var(--navy); font-weight: 800; }
.stat-box span { font-size: 0.82rem; color: var(--gray3); }

@media (min-width: 768px) { .about-story-inner { grid-template-columns: 1fr 1fr; } }

/* Values */
.about-values { background: var(--gray1); }

.values-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
.value-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--gray2);
  box-shadow: var(--shadow);
}
.value-card .val-icon {
  width: 52px;
  height: 52px;
  background: var(--yellow);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: 16px;
}
.value-card .val-icon svg { width: 24px; height: 24px; }
.value-card h3 { color: var(--navy); margin-bottom: 8px; }
.value-card p { font-size: 0.92rem; }

@media (min-width: 600px) { .values-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .values-grid { grid-template-columns: repeat(3, 1fr); } }

/* Credentials */
.credentials { background: var(--navy); color: var(--white); }
.credentials .section-header h2 { color: var(--white); }
.credentials .section-header p { color: rgba(255,255,255,0.65); }

.cred-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
.cred-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
}
.cred-card .cred-icon {
  width: 56px;
  height: 56px;
  background: var(--yellow);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--white);
}
.cred-card .cred-icon svg { width: 28px; height: 28px; }
.cred-card strong { display: block; color: var(--white); font-size: 1rem; margin-bottom: 4px; }
.cred-card span { font-size: 0.82rem; color: rgba(255,255,255,0.55); }

@media (min-width: 600px) { .cred-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .cred-grid { grid-template-columns: repeat(4, 1fr); } }

/* ---------- CONTACT PAGE ---------- */
.contact-section { background: var(--gray1); }

.contact-inner {
  display: grid;
  gap: 40px;
}

/* Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray2);
}
.contact-form-wrap h3 { color: var(--navy); margin-bottom: 6px; }
.contact-form-wrap > p { font-size: 0.9rem; margin-bottom: 24px; }

.form-row { display: grid; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--navy); }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--gray2);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--yellow2);
  box-shadow: 0 0 0 3px rgba(245,197,24,0.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group input.error,
.form-group select.error,
.form-group textarea.error { border-color: #e53e3e; }
.field-error { font-size: 0.78rem; color: #e53e3e; margin-top: 2px; }

@media (min-width: 540px) { .form-row.two-col { grid-template-columns: 1fr 1fr; } }

.form-submit { margin-top: 8px; width: 100%; justify-content: center; }

.form-success {
  display: none;
  background: #e6f9f0;
  border: 1px solid #68d391;
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  color: #276749;
  font-weight: 600;
  margin-top: 16px;
}

/* Contact Info */
.contact-info-wrap { display: flex; flex-direction: column; gap: 20px; }

.contact-detail-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray2);
}
.contact-detail-card h3 { color: var(--navy); margin-bottom: 16px; font-size: 1.05rem; }

.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray2);
}
.contact-item:last-child { border-bottom: none; padding-bottom: 0; }
.contact-item .ci-icon {
  width: 38px;
  height: 38px;
  background: var(--yellow);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}
.contact-item .ci-icon svg { width: 18px; height: 18px; }
.contact-item .ci-text strong { display: block; font-size: 0.8rem; color: var(--gray3); text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; }
.contact-item .ci-text span, .contact-item .ci-text a { font-size: 0.95rem; color: var(--text); }
.contact-item .ci-text a:hover { color: var(--yellow2); }

/* Emergency callout */
.emergency-callout {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  border: 2px solid var(--yellow);
}
.emergency-callout .emerg-icon {
  width: 48px; height: 48px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  color: var(--white);
}
.emergency-callout h3 { color: var(--yellow); margin-bottom: 6px; font-size: 1rem; }
.emergency-callout p { color: rgba(255,255,255,0.7); font-size: 0.85rem; margin-bottom: 14px; }
.emergency-callout a {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.02em;
}
.emergency-callout a:hover { color: var(--yellow); }

@media (min-width: 900px) { .contact-inner { grid-template-columns: 1fr 380px; } }

/* ---------- FOOTER ---------- */
.site-footer {
  background: #111111;
  color: rgba(255,255,255,0.65);
  padding: 52px 0 0;
}

.footer-inner {
  display: grid;
  gap: 40px;
}

.footer-brand .logo-icon {
  width: 44px;
  height: 44px;
  background: var(--yellow);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--navy);
}
.footer-brand .logo-icon svg { width: 24px; height: 24px; }
.footer-brand strong { display: block; color: var(--white); font-size: 1.05rem; margin-bottom: 4px; }
.footer-brand p { font-size: 0.88rem; max-width: 280px; margin-top: 10px; line-height: 1.6; }

.footer-col h4 { color: var(--white); font-size: 0.9rem; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 0.9rem; color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--yellow); }

.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; font-size: 0.88rem; }
.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; color: var(--yellow); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  margin-top: 40px;
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
}
.footer-bottom a:hover { color: var(--yellow); }
.lic { color: rgba(255,255,255,0.4); }

@media (min-width: 540px)  { .footer-inner { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px)  { .footer-inner { grid-template-columns: 2fr 1fr 1fr 1.5fr; } }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-0  { margin-bottom: 0; }

/* Fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}
