/*
Theme Name: Leicester Locksmiths
Theme URI: https://leicesterlocksmith.uk
Description: Custom theme for Leicester Locksmiths — 24/7 Emergency Locksmith Service
Version: 1.5
Author: Leicester Locksmiths
Text Domain: ll
*/

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  overflow-x: hidden;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: #ffffff;
  color: #1e293b;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
  color: #0a1628;
}
p { margin: 0 0 1rem; line-height: 1.65; color: #475569; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { margin: 0; padding: 0; list-style: none; }

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --navy:        #0a1628;
  --navy-mid:    #112040;
  --amber:       #f59e0b;
  --amber-dark:  #d97706;
  --white:       #ffffff;
  --off-white:   #f8fafc;
  --slate-100:   #f1f5f9;
  --slate-200:   #e2e8f0;
  --slate-600:   #475569;
  --slate-800:   #1e293b;
  --green:       #10b981;
  --border:      rgba(10,22,40,0.12);
  --radius:      10px;
  --radius-lg:   20px;
  --shadow:      0 4px 20px rgba(0,0,0,.10);
  --shadow-lg:   0 12px 48px rgba(0,0,0,.15);
  --max-w:       1140px;
  --section-pad: clamp(3.5rem, 8vw, 6rem);
}

/* ============================================================
   UTILITIES
   ============================================================ */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.25rem; }
.section    { padding: var(--section-pad) 0; }
.section--dark    { background: var(--navy); }
.section--grey    { background: var(--slate-100); }
.section-heading  { margin-bottom: 3rem; }
.text-center      { text-align: center; }
.section-label    { display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--amber); margin-bottom: .5rem; }
.section-headline { font-size: clamp(1.75rem, 4vw, 2.75rem); color: var(--navy); margin-bottom: .75rem; }
.section-body     { font-size: 1.05rem; color: var(--slate-600); max-width: 560px; }
.em               { color: var(--amber); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: box-shadow .2s;
}
.site-header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.4); }

.header-main {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.site-logo {
  font-size: 1.15rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
  white-space: nowrap;
  flex-shrink: 0;
}
.site-logo .em { color: var(--amber); }

/* Desktop nav — all links flat, no dropdown */
.header-nav {
  display: none;
  align-items: center;
  gap: 0;
  flex: 1;
}
@media (min-width: 1060px) { .header-nav { display: flex; } }

.nav-link {
  font-family: inherit;
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255,255,255,.72);
  padding: .45rem .6rem;
  border-radius: 6px;
  white-space: nowrap;
  transition: color .15s, background .15s;
}
.nav-link:hover { color: #fff; background: rgba(255,255,255,.07); }
.nav-link.active { color: #fff; }
.nav-link.active::after {
  content: '';
  display: block;
  height: 2px;
  background: var(--amber);
  border-radius: 2px;
  margin-top: 2px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: .65rem;
  margin-left: auto;
  flex-shrink: 0;
}

/* Phone button — desktop */
.header-phone-btn {
  display: none;
  align-items: center;
  gap: .5rem;
  background: var(--amber);
  color: var(--navy);
  font-weight: 800;
  font-size: .875rem;
  padding: .55rem 1.1rem;
  border-radius: 8px;
  white-space: nowrap;
  transition: background .15s;
}
.header-phone-btn:hover { background: var(--amber-dark); }
.header-phone-btn span { display: inline; }
@media (min-width: 1060px) { .header-phone-btn { display: flex; } }

/* Phone icon — mobile only */
.header-phone-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  background: var(--amber);
  color: var(--navy);
  border-radius: 8px;
  flex-shrink: 0;
}
@media (min-width: 1060px) { .header-phone-icon { display: none; } }

.hamburger {
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
  padding: .35rem;
  display: flex;
  align-items: center;
  border-radius: 6px;
  flex-shrink: 0;
}
@media (min-width: 1060px) { .hamburger { display: none; } }

/* Mobile phone bar — always visible strip (Derby addition) */
.mobile-phone-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  background: rgba(245,158,11,.1);
  border-top: 1px solid rgba(245,158,11,.18);
  padding: .55rem 1.25rem;
}
@media (min-width: 1060px) { .mobile-phone-bar { display: none; } }

.mobile-phone-bar a {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: #fff;
  font-weight: 700;
  font-size: .85rem;
}
.mobile-phone-bar a svg { color: var(--amber); }
.mobile-phone-bar-badge {
  font-size: .7rem;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  white-space: nowrap;
}

/* Mobile drawer */
.mobile-menu {
  display: none;
  background: var(--navy-mid);
  border-top: 1px solid rgba(255,255,255,.06);
}
.mobile-menu.open { display: block; }

.mobile-nav { padding: .5rem 1.25rem; }
.mobile-nav-link {
  display: block;
  color: rgba(255,255,255,.8);
  font-weight: 600;
  font-size: .95rem;
  padding: .8rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color .12s;
}
.mobile-nav-link:hover, .mobile-nav-link.active { color: var(--amber); }
.mobile-nav-link:last-child { border-bottom: none; }

/* Full-width call button at the bottom of drawer */
.mobile-nav-cta {
  padding: 1rem 1.25rem 1.25rem;
  border-top: 1px solid rgba(255,255,255,.06);
}
.mobile-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  width: 100%;
  background: var(--amber);
  color: var(--navy);
  font-weight: 900;
  font-size: 1rem;
  padding: .85rem 1rem;
  border-radius: 10px;
  transition: background .15s;
}
.mobile-cta-btn:hover { background: var(--amber-dark); }

.chevron-svg { transition: transform .2s; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--navy);
  background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 28px 28px;
  overflow: hidden;
  position: relative;
}
.hero-noise {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(245,158,11,.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  padding: 4.5rem 0 4rem;
  position: relative;
  z-index: 2;
}
@media (min-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr 460px;
    gap: 5rem;
    padding: 5rem 0;
    min-height: calc(100vh - 100px);
  }
}

.hero-status {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(16,185,129,.1);
  border: 1px solid rgba(16,185,129,.25);
  border-radius: 100px;
  padding: .35rem .9rem;
  margin-bottom: 1.25rem;
}
.hero-status-dot {
  position: relative;
  width: 8px; height: 8px;
  flex-shrink: 0;
}
.hero-status-dot-ping {
  position: absolute; inset: 0;
  background: var(--green);
  border-radius: 50%;
  animation: ping 1.5s ease infinite;
  opacity: .6;
}
.hero-status-dot-inner {
  position: relative;
  display: block;
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
}
@keyframes ping { 0%,100% { transform: scale(1); opacity:.6; } 50% { transform: scale(1.8); opacity:0; } }
.hero-status-text { font-size: .78rem; font-weight: 600; color: rgba(255,255,255,.8); }

.hero-label {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: .75rem;
}
.hero-text h1 {
  font-size: clamp(2.4rem, 6vw, 3.75rem);
  color: #fff;
  margin-bottom: 1.25rem;
  line-height: 1.05;
}
.hero-text h1 .em { color: var(--amber); }
.hero-sub { font-size: clamp(1rem, 2.2vw, 1.15rem); color: rgba(255,255,255,.72); margin-bottom: 2rem; max-width: 480px; }

.hero-phone-btn {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  background: var(--amber);
  color: var(--navy);
  font-weight: 900;
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  padding: 1rem 1.75rem;
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(245,158,11,.4);
  transition: background .15s, transform .15s;
  margin-bottom: 1.75rem;
}
.hero-phone-btn:hover { background: var(--amber-dark); transform: translateY(-2px); }

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.8);
  font-size: .78rem;
  font-weight: 600;
  padding: .35rem .75rem;
  border-radius: 100px;
}
.hero-pill-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
}

/* Hero photo panel */
.hero-photo-panel { display: none; position: relative; }
@media (min-width: 960px) { .hero-photo-panel { display: block; } }
.hero-photo-panel-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 40px 80px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.06);
}
.hero-live-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: rgba(10,22,40,.8);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
  border-radius: 100px;
  padding: .45rem 1rem;
  font-size: .75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: .45rem;
  z-index: 2;
}
.hero-live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(16,185,129,.25);
  animation: blink 1.4s ease infinite;
  flex-shrink: 0;
}
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:.4;} }
.hero-stat-card {
  position: absolute;
  bottom: -24px; left: -32px;
  background: var(--amber);
  color: var(--navy);
  border-radius: 20px;
  padding: 1.25rem 1.75rem;
  box-shadow: 0 12px 40px rgba(245,158,11,.5);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 2;
}
.hero-stat-card-num { font-size: 2.5rem; font-weight: 900; line-height: 1; letter-spacing: -.05em; }
.hero-stat-card-divider { width: 1px; height: 44px; background: rgba(10,22,40,.2); flex-shrink: 0; }
.hero-stat-card-label { font-size: .75rem; font-weight: 700; line-height: 1.4; max-width: 90px; opacity: .8; }

/* ============================================================
   STATS BAND
   ============================================================ */
.stats-band { background: var(--amber); padding: 1.5rem 0; }
.stats-band-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  text-align: center;
}
@media (min-width: 640px) { .stats-band-grid { grid-template-columns: repeat(4, 1fr); } }
.stats-band-num { font-size: clamp(1.75rem, 4vw, 2.25rem); font-weight: 900; color: var(--navy); line-height: 1; }
.stats-band-label { font-size: .8rem; font-weight: 800; color: var(--navy); text-transform: uppercase; letter-spacing: .06em; margin-top: .25rem; }
.stats-band-sub { font-size: .72rem; color: rgba(10,22,40,.6); margin-top: .15rem; }

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }

.service-card {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  transition: box-shadow .2s, transform .2s, border-color .2s;
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--amber);
}
.service-card-icon {
  width: 52px; height: 52px;
  background: rgba(245,158,11,.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber-dark);
  flex-shrink: 0;
}
.service-card h3 { font-size: 1.05rem; color: var(--navy); margin: 0; }
.service-card p  { font-size: .9rem; color: var(--slate-600); flex: 1; margin: 0; }
.service-card-more {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .8rem;
  font-weight: 700;
  color: var(--amber-dark);
  margin-top: auto;
}

/* ============================================================
   PROCESS / HOW IT WORKS
   ============================================================ */
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}
@media (min-width: 640px) { .process-grid { grid-template-columns: repeat(3, 1fr); } }
.process-step { text-align: center; }
.process-badge {
  width: 56px; height: 56px;
  background: var(--amber);
  color: var(--navy);
  border-radius: 50%;
  font-size: 1.4rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}
.process-step h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.process-step p  { font-size: .9rem; }

/* ============================================================
   WHY GRID
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .why-grid { grid-template-columns: repeat(4, 1fr); } }

.why-card {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
}
.why-stat { font-size: 2rem; font-weight: 900; color: var(--amber); line-height: 1; }
.why-stat-label { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--slate-600); margin-bottom: 1rem; }
.why-icon { margin-bottom: .75rem; color: var(--navy); }
.why-card h3 { font-size: 1rem; margin-bottom: .5rem; }
.why-card p  { font-size: .875rem; color: var(--slate-600); margin: 0; }

/* ============================================================
   MEGA CTA (Leicester style)
   ============================================================ */
.mega-cta {
  background: var(--navy);
  padding: 5rem 0;
  text-align: center;
  position: relative;
}
.mega-cta-eyebrow {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: .75rem;
}
.mega-cta h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #fff;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: none;
  margin-bottom: 1rem;
}
.mega-cta-desc { color: rgba(255,255,255,.7); font-size: 1.05rem; margin-bottom: 2rem; max-width: 540px; margin-left: auto; margin-right: auto; }
.mega-cta-phone {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  background: var(--amber);
  color: var(--navy);
  font-weight: 900;
  font-size: clamp(1.2rem, 3.5vw, 1.65rem);
  padding: 1rem 2rem;
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(245,158,11,.4);
  transition: background .15s;
  margin-bottom: 1.25rem;
}
.mega-cta-phone:hover { background: var(--amber-dark); }
.mega-cta-sub-text { font-size: .8rem; color: rgba(255,255,255,.5); margin: 0; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

.testimonial-card {
  background: var(--off-white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}
.testimonial-stars { color: var(--amber); font-size: 1.1rem; margin-bottom: .75rem; }
.testimonial-text { font-size: .9rem; color: var(--slate-800); font-style: italic; margin-bottom: 1.25rem; }
.testimonial-author { display: flex; align-items: center; gap: .75rem; }
.testimonial-avatar {
  width: 40px; height: 40px;
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 800;
  flex-shrink: 0;
}
.testimonial-name { font-size: .85rem; font-weight: 700; color: var(--navy); }
.testimonial-location { font-size: .75rem; color: var(--slate-600); }

/* ============================================================
   AREAS GRID
   ============================================================ */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem;
  margin-top: 2.5rem;
}
@media (min-width: 640px) { .areas-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 960px) { .areas-grid { grid-template-columns: repeat(4, 1fr); } }

.area-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  padding: .65rem .9rem;
  font-size: .85rem;
  color: rgba(255,255,255,.85);
  font-weight: 500;
}
.area-item svg { color: var(--amber); flex-shrink: 0; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--slate-200); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  text-align: left;
}
.faq-question-text { flex: 1; }
.faq-icon { font-size: 1.25rem; font-weight: 300; color: var(--amber); flex-shrink: 0; transition: transform .2s; }
.faq-answer {
  display: none;
  padding-bottom: 1.25rem;
  font-size: .95rem;
  color: var(--slate-600);
  line-height: 1.7;
}
.faq-answer.open { display: block; }

/* ============================================================
   PAGE HERO
   ============================================================ */
.page-hero {
  background: var(--navy);
  background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 28px 28px;
  padding: 4rem 0 3.5rem;
  text-align: center;
}
.page-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}
.page-hero-dot {
  width: 7px; height: 7px;
  background: var(--amber);
  border-radius: 50%;
}
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  color: #fff;
  margin-bottom: 1rem;
}
.page-hero-sub { font-size: 1.05rem; color: rgba(255,255,255,.7); max-width: 600px; margin: 0 auto; }

/* ============================================================
   SERVICE PAGE LAYOUT
   ============================================================ */
.service-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 900px) { .service-layout { grid-template-columns: 1fr 320px; } }

.service-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 2rem;
}
.service-content { color: var(--slate-600); line-height: 1.8; }
.service-content h2 { color: var(--navy); margin-bottom: .75rem; }
.service-content p  { margin-bottom: 1rem; }

/* Sidebar */
.service-sidebar { display: flex; flex-direction: column; gap: 1.25rem; }
.sidebar-card {
  background: var(--off-white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.sidebar-card h3 { font-size: 1rem; color: var(--navy); margin-bottom: .5rem; }
.sidebar-card p  { font-size: .875rem; margin-bottom: 1rem; }
.sidebar-card--alt { background: rgba(245,158,11,.06); border-color: rgba(245,158,11,.25); }
.sidebar-card--dark { background: var(--navy); border-color: rgba(255,255,255,.08); }
.sidebar-card--dark p { color: rgba(255,255,255,.7); }

.sidebar-phone {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: var(--amber);
  color: var(--navy);
  font-weight: 900;
  font-size: 1.05rem;
  padding: .75rem 1rem;
  border-radius: 10px;
  margin-bottom: 1rem;
  transition: background .15s;
}
.sidebar-phone:hover { background: var(--amber-dark); }

.sidebar-list { display: flex; flex-direction: column; gap: .5rem; }
.sidebar-list li {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  color: var(--slate-600);
}
.sidebar-card--alt .sidebar-list li { color: var(--slate-800); }
.sidebar-list svg { color: var(--green); flex-shrink: 0; }

.sidebar-service-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .6rem 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-size: .875rem;
  color: rgba(255,255,255,.75);
  transition: color .12s;
}
.sidebar-service-link:last-child { border-bottom: none; }
.sidebar-service-link:hover { color: var(--amber); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 900px) { .contact-layout { grid-template-columns: 1fr 340px; } }

.contact-form-col h2 { margin-bottom: .5rem; }
.contact-form-col p  { margin-bottom: 1.5rem; }

.contact-info-col { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-info-card {
  background: var(--off-white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.contact-info-card h3 { font-size: .95rem; margin-bottom: .5rem; }
.contact-info-card p  { font-size: .875rem; margin: 0; }

.contact-phone {
  display: flex;
  align-items: center;
  gap: .6rem;
  background: var(--amber);
  color: var(--navy);
  font-weight: 900;
  font-size: 1.15rem;
  padding: .85rem 1.1rem;
  border-radius: 10px;
  margin-bottom: .75rem;
  transition: background .15s;
}
.contact-phone:hover { background: var(--amber-dark); }

.contact-list { display: flex; flex-direction: column; gap: .5rem; margin-top: .75rem; }
.contact-list li {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  color: var(--slate-600);
}
.contact-list svg { color: var(--green); flex-shrink: 0; }

/* ============================================================
   PAGE CONTENT (generic page.php)
   ============================================================ */
.page-content {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1rem;
  color: var(--slate-600);
  line-height: 1.8;
}
.page-content h2, .page-content h3 { color: var(--navy); margin-top: 2rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.8);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr; } }

.footer-logo {
  font-size: 1.2rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
  display: block;
  margin-bottom: 1.25rem;
}
.footer-logo .em { color: var(--amber); }

.footer-nap { font-style: normal; }
.footer-nap-row {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  margin-bottom: .75rem;
  color: rgba(255,255,255,.6);
  font-size: .875rem;
}
.footer-nap-row svg { margin-top: 2px; flex-shrink: 0; color: var(--amber); }
.footer-nap-phone { color: var(--amber); font-weight: 700; font-size: 1rem; }

.footer-col-label { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--amber); margin-bottom: 1rem; }
.footer-links { display: flex; flex-direction: column; gap: .5rem; }
.footer-link { font-size: .875rem; color: rgba(255,255,255,.6); transition: color .12s; }
.footer-link:hover { color: var(--amber); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 3rem;
  padding: 1.25rem 1.25rem;
  text-align: center;
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
}
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.4); margin: .2rem 0; }

/* ============================================================
   WPFORMS OVERRIDES
   ============================================================ */
.wpforms-form .wpforms-field-label { font-weight: 600; font-size: .875rem; color: var(--navy); margin-bottom: .4rem; }
.wpforms-form input[type="text"],
.wpforms-form input[type="email"],
.wpforms-form input[type="tel"],
.wpforms-form select,
.wpforms-form textarea {
  width: 100%;
  border: 1px solid var(--slate-200);
  border-radius: 8px;
  padding: .75rem 1rem;
  font-family: inherit;
  font-size: .95rem;
  color: var(--navy);
  background: #fff;
  transition: border-color .15s, box-shadow .15s;
}
.wpforms-form input:focus,
.wpforms-form select:focus,
.wpforms-form textarea:focus {
  outline: none;
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(245,158,11,.15);
}
.wpforms-form .wpforms-submit {
  background: var(--amber);
  color: var(--navy);
  border: none;
  border-radius: 8px;
  padding: .85rem 1.75rem;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  font-family: inherit;
  transition: background .15s;
}
.wpforms-form .wpforms-submit:hover { background: var(--amber-dark); }

/* ============================================================
   SITE MAIN WRAPPER
   ============================================================ */
.site-main { min-height: 60vh; }

/* ============================================================
   SKIP LINK
   ============================================================ */
.skip-link {
  position: absolute;
  top: -999px;
  left: 0;
  background: var(--amber);
  color: var(--navy);
  padding: .5rem 1rem;
  font-weight: 700;
  z-index: 9999;
}
.skip-link:focus { top: 0; }
