/* ============================================================
   D&K Electric LLC — style.css v3
   Light / white-dominant design system
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800;900&family=Barlow:wght@400;500;600&display=swap');

/* ============================================
   SITE SETTINGS — EDIT HERE FIRST
   Change colors, fonts, and sizes in this block
   ============================================ */

:root {
  /* COLORS */
  --color-navy:    #0B1829;   /* Main dark color — nav, footer, headings */
  --color-yellow:  #F5C500;   /* Accent color — buttons, icons, highlights */
  --color-white:   #FFFFFF;   /* Page background */
  --color-light:   #F7F9FC;   /* Light section background */
  --color-card:    #FFFFFF;   /* Card background */
  --color-border:  #E8ECF0;   /* Card and input borders */
  --color-text:    #4A5568;   /* Body text */
  --color-heading: #0B1829;   /* Headline text */

  /* FONTS */
  --font-heading: 'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;

  /* SIZES */
  --font-size-body:  15px;
  --max-width:       1100px;
  --section-padding: 80px;
  --border-radius:   4px;
}

/* === INTERNAL VARIABLES (reference the settings above — do not edit here) === */
:root {
  --white:       var(--color-white);
  --navy:        var(--color-navy);
  --navy-mid:    #162236;
  --yellow:      var(--color-yellow);
  --yellow-dark: #D4A800;
  --bg-alt:      var(--color-light);
  --border:      var(--color-border);
  --text:        var(--color-text);
  --text-muted:  #718096;
  --text-light:  #A0AEC0;
  --shadow-sm:   0 1px 4px rgba(11,24,41,0.06);
  --shadow:      0 2px 12px rgba(11,24,41,0.07);
  --shadow-md:   0 6px 24px rgba(11,24,41,0.09);
  --shadow-lg:   0 12px 40px rgba(11,24,41,0.12);

  --font-h: var(--font-heading);
  --font-b: var(--font-body);

  --max-w:  var(--max-width);
  --pad-x:  24px;
  --radius: var(--border-radius);
  --ease:   0.2s ease;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-b);
  font-size: var(--font-size-body);
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-b); border: none; background: none; }

/* === CONTAINER === */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* === SECTIONS === */
.section      { padding: var(--section-padding) 0; }
.section--alt { background: var(--bg-alt); }

/* === EYEBROW LABELS === */
.eyebrow {
  display: inline-block;
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yellow-dark);
  margin-bottom: 12px;
}

/* === SECTION HEADINGS === */
.section-title {
  font-family: var(--font-h);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin-bottom: 14px;
  text-transform: uppercase;
}
.section-sub {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 500px;
  line-height: 1.65;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-h);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: background var(--ease), color var(--ease), border-color var(--ease), box-shadow var(--ease), transform var(--ease);
  white-space: nowrap;
  cursor: pointer;
}
.btn--primary {
  background: var(--yellow);
  color: var(--navy);
  border-color: var(--yellow);
}
.btn--primary:hover {
  background: var(--yellow-dark);
  border-color: var(--yellow-dark);
  box-shadow: 0 4px 16px rgba(245,197,0,0.3);
  transform: translateY(-1px);
}
.btn--secondary {
  background: var(--white);
  color: var(--navy);
  border-color: var(--navy);
}
.btn--secondary:hover {
  background: var(--navy);
  color: var(--white);
}
.btn--white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn--white:hover {
  background: var(--yellow);
  border-color: var(--yellow);
}
.btn--lg { padding: 15px 36px; font-size: 15px; }
.btn--full { width: 100%; justify-content: center; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  box-shadow: var(--shadow-sm);
}
.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  height: 68px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav__logo {
  font-family: var(--font-h);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: var(--navy);
  text-transform: uppercase;
  flex-shrink: 0;
}
.nav__logo span { color: var(--yellow-dark); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.nav__links a {
  font-family: var(--font-h);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  padding-bottom: 2px;
  transition: color var(--ease);
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--yellow);
  transition: width var(--ease);
}
.nav__links a:hover { color: var(--yellow-dark); }
.nav__links a.active::after,
.nav__links a:hover::after { width: 100%; }
.nav__links a.active { color: var(--white); }

.nav__cta { flex-shrink: 0; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
  cursor: pointer;
}
.nav__hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
}
.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); }

.nav__mobile {
  display: none;
  flex-direction: column;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px var(--pad-x) 28px;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-family: var(--font-h);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: color var(--ease);
}
.nav__mobile a.active,
.nav__mobile a:hover { color: var(--yellow-dark); }
.nav__mobile .btn { margin-top: 16px; width: 100%; justify-content: center; }

/* ============================================================
   HERO — HOME
   ============================================================ */
.hero {
  background: var(--white);
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yellow-dark);
  margin-bottom: 16px;
}
.hero__eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px; height: 2px;
  background: var(--yellow);
}
.hero__h1 {
  font-family: var(--font-h);
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 900;
  line-height: 0.97;
  letter-spacing: -0.02em;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero__sub {
  font-size: 16px;
  color: var(--text);
  margin-bottom: 32px;
  max-width: 440px;
  line-height: 1.7;
}
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero__photo {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  aspect-ratio: 6/5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-h);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.trust-bar__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-h);
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.trust-item svg {
  width: 18px; height: 18px;
  color: var(--yellow-dark);
  flex-shrink: 0;
}

/* ============================================================
   SERVICE CARDS — HOMEPAGE
   ============================================================ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px 32px;
  box-shadow: var(--shadow);
  position: relative;
  transition: box-shadow var(--ease), transform var(--ease), border-color var(--ease);
}
.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.card--featured {
  border-left: 4px solid var(--yellow);
}
.card__badge {
  display: inline-block;
  font-family: var(--font-h);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--yellow);
  color: var(--navy);
  padding: 3px 8px;
  border-radius: 2px;
  margin-bottom: 14px;
}
.card__icon {
  width: 44px; height: 44px;
  background: rgba(245,197,0,0.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.card__icon svg { width: 22px; height: 22px; stroke: var(--yellow-dark); }

.card__title {
  font-family: var(--font-h);
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 10px;
  line-height: 1.1;
}
.card__desc {
  font-size: 14px;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 18px;
}
.card__link {
  font-family: var(--font-h);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yellow-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--ease);
}
.card__link:hover { gap: 10px; }

/* ============================================================
   SERVICES PAGE CARDS (with images)
   ============================================================ */
.svc-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.svc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
  transition: box-shadow var(--ease), transform var(--ease);
}
.svc-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.svc-card--featured { border-left: 4px solid var(--yellow); }

.svc-card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.svc-card__body { padding: 28px 28px 32px; }
.svc-card__badge {
  display: inline-block;
  font-family: var(--font-h);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--yellow);
  color: var(--navy);
  padding: 3px 8px;
  border-radius: 2px;
  margin-bottom: 12px;
}
.svc-card__title {
  font-family: var(--font-h);
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 10px;
  line-height: 1.1;
}
.svc-card__desc {
  font-size: 14px;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 20px;
}

/* ============================================================
   SECTION PHOTO PLACEHOLDER
   ============================================================ */
.section-photo {
  width: 100%;
  height: 360px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-top: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-h);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
}

/* ============================================================
   WHY D&K — TWO COLUMN
   ============================================================ */
.why-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.why-list { margin-top: 24px; display: flex; flex-direction: column; gap: 16px; }
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.why-check {
  width: 24px; height: 24px;
  background: rgba(245,197,0,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.why-check svg { width: 13px; height: 13px; stroke: var(--yellow-dark); stroke-width: 2.5; }
.why-item p { font-size: 15px; color: var(--text); line-height: 1.5; }
.why-item strong { color: var(--navy); font-weight: 600; }

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  text-align: center;
}
.stat-card__num {
  font-family: var(--font-h);
  font-size: 40px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-card__label {
  font-family: var(--font-h);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  transition: box-shadow var(--ease);
}
.review-card:hover { box-shadow: var(--shadow-md); }
.review-stars { color: var(--yellow); font-size: 17px; letter-spacing: 2px; margin-bottom: 14px; }
.review-text { font-size: 14px; color: var(--text); line-height: 1.7; margin-bottom: 20px; }
.review-author__name {
  font-family: var(--font-h);
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
}
.review-author__meta { font-size: 12px; color: var(--text-light); margin-top: 3px; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--navy);
  padding: 64px 0;
}
.cta-banner__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta-banner__headline {
  font-family: var(--font-h);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.cta-banner__sub { font-size: 14px; color: rgba(255,255,255,0.6); }
.cta-banner__right { display: flex; flex-direction: column; align-items: flex-end; gap: 12px; flex-shrink: 0; }
.cta-banner__phone {
  font-family: var(--font-h);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  color: var(--yellow);
  letter-spacing: -0.02em;
  line-height: 1;
}
.cta-banner__phone:hover { color: var(--yellow-dark); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 60px 0 0;
}
.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 48px;
}
.footer__logo {
  font-family: var(--font-h);
  font-size: 22px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.footer__logo span { color: var(--yellow); }
.footer__tagline { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.65; max-width: 260px; margin-bottom: 20px; }
.footer__contact a {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 6px;
  transition: color var(--ease);
}
.footer__contact a:hover { color: var(--yellow); }

.footer__heading {
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yellow-dark);
  margin-bottom: 18px;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  transition: color var(--ease);
}
.footer__links a:hover { color: var(--white); }

.footer__cities { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.8; }
.footer__cities strong { color: rgba(255,255,255,0.8); display: block; margin-bottom: 4px; }

.footer__bottom {
  max-width: var(--max-w);
  margin: 48px auto 0;
  padding: 18px var(--pad-x);
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  padding: 56px 0 48px;
}
.page-hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.page-hero__crumb {
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 14px;
}
.page-hero__crumb a { color: var(--yellow-dark); }
.page-hero__h1 {
  font-family: var(--font-h);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.page-hero__sub { font-size: 15px; color: var(--text-muted); max-width: 480px; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 64px;
  align-items: start;
}
.about-photo {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  width: 100%;
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  position: sticky;
  top: 84px;
}
.about-bio .section-title { margin-bottom: 20px; }
.about-bio p {
  font-size: 15px;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 18px;
}

.creds-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 32px;
}
.cred-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 14px;
  transition: box-shadow var(--ease);
}
.cred-card:hover { box-shadow: var(--shadow-md); }
.cred-icon {
  width: 36px; height: 36px;
  background: rgba(245,197,0,0.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cred-icon svg { width: 18px; height: 18px; stroke: var(--yellow-dark); }
.cred-label {
  font-size: 11px;
  color: var(--text-light);
  margin-bottom: 2px;
  font-family: var(--font-h);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.cred-value {
  font-family: var(--font-h);
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}
.contact-cards { display: flex; flex-direction: column; gap: 12px; }
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-card__icon {
  width: 40px; height: 40px;
  background: rgba(245,197,0,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-card__icon svg { width: 18px; height: 18px; stroke: var(--yellow-dark); }
.contact-card__label {
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 4px;
}
.contact-card__value {
  font-size: 15px;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.5;
}
.contact-card__value a { color: var(--navy); transition: color var(--ease); }
.contact-card__value a:hover { color: var(--yellow-dark); }

/* Form */
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-md);
}
.form-title {
  font-family: var(--font-h);
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.form-subtitle { font-size: 13px; color: var(--text-muted); margin-bottom: 28px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 16px; }
.form-label {
  display: block;
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.form-label span { color: #e53e3e; }
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  font-family: var(--font-b);
  font-size: 15px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid #D1D5DB;
  border-radius: var(--radius);
  padding: 13px 15px;
  outline: none;
  appearance: none;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-light); }
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(245,197,0,0.15);
}
.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234A5568' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  padding-right: 38px;
}
.form-textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
.form-direct {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 12px;
}
.form-direct a { color: var(--yellow-dark); font-weight: 600; }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }
.delay-5 { transition-delay: 0.40s; }

/* ============================================================
   RESPONSIVE — TABLET ≤1024px
   ============================================================ */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__photo { display: none; }
  .why-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-photo { position: static; aspect-ratio: 16/9; }
  .contact-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   GOOGLE TRANSLATE WIDGET
   ============================================================ */
#google_translate_element {
  display: flex;
  align-items: center;
}
#google_translate_element .goog-te-gadget-simple {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 4px 10px;
  font-family: var(--font-h);
  font-size: 13px;
}

/* ============================================================
   RESPONSIVE — MOBILE ≤768px
   ============================================================ */
@media (max-width: 768px) {
  :root { --pad-x: 20px; }
  .section { padding: 56px 0; }

  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .nav__inner { gap: 0; }

  .cards-grid { grid-template-columns: 1fr; }
  .svc-cards-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }

  .trust-bar__inner { gap: 20px; justify-content: flex-start; }

  .stats-grid { grid-template-columns: 1fr 1fr; }

  .cta-banner__inner { flex-direction: column; }
  .cta-banner__right { align-items: flex-start; width: 100%; }
  .cta-banner__right .btn { width: 100%; justify-content: center; }

  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 6px; text-align: center; }

  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }

  .creds-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 24px 20px; }

  .page-hero { padding: 40px 0 32px; }
}

@media (max-width: 480px) {
  .hero__h1 { font-size: 36px; }
  .cta-banner__phone { font-size: 28px; }
  .section-title { font-size: 1.7rem; }
}
