/* ===================================================
   Allied Fence of Southern Utah — Main Stylesheet
   =================================================== */

/* --- CSS Variables / Design Tokens --- */
:root {
  --navy:        #1B2D45;
  --navy-dark:   #111D2B;
  --navy-mid:    #243A58;
  --gold:        #C99200;
  --gold-light:  #E5A800;
  --gold-pale:   #FFF4D6;
  --white:       #FFFFFF;
  --off-white:   #F8F7F4;
  --light-gray:  #EDE9E3;
  --mid-gray:    #8B8580;
  --dark-text:   #1A1A1A;
  --muted-text:  #5B6470;
  --border:      #E0DAD2;
  --success:     #2E6B2A;
  --shadow-sm:   0 1px 4px rgba(0,0,0,0.10);
  --shadow-md:   0 4px 16px rgba(0,0,0,0.12);
  --shadow-lg:   0 8px 32px rgba(0,0,0,0.15);
  --radius:      6px;
  --radius-lg:   12px;
  --max-w:       1160px;
  --font-head:   'Oswald', 'Arial Narrow', Arial, sans-serif;
  --font-body:   'Open Sans', 'Helvetica Neue', Arial, sans-serif;
  --transition:  0.22s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--dark-text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }

ul { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.15rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.text-muted { color: var(--muted-text); }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }

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

.section { padding: 72px 0; }
.section-sm { padding: 48px 0; }
.section-lg { padding: 96px 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--navy-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(201,146,0,0.35);
}

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

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-mid);
  border-color: var(--navy-mid);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-lg { padding: 18px 36px; font-size: 1.1rem; }
.btn-sm { padding: 10px 20px; font-size: 0.88rem; }

.btn-phone {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-phone:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--navy-dark);
  transform: translateY(-1px);
}

/* --- Section Labels --- */
.section-label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  margin-bottom: 16px;
}

.section-intro {
  font-size: 1.1rem;
  color: var(--muted-text);
  max-width: 640px;
}

.section-header {
  margin-bottom: 48px;
}

.section-header.centered {
  text-align: center;
}

.section-header.centered .section-intro {
  margin: 0 auto;
}

/* ==========================================
   HEADER
   ========================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy-dark);
  box-shadow: 0 2px 16px rgba(0,0,0,0.25);
}

.header-top-bar {
  background: var(--navy);
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.header-top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
}

.header-top-bar a {
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
}
.header-top-bar a:hover { color: var(--gold); }

.header-hours { display: flex; align-items: center; gap: 6px; }
.header-hours-icon { opacity: 0.6; }

.header-main {
  padding: 14px 0;
}

.header-main .container {
  display: flex;
  align-items: center;
  gap: 24px;
}

/* Logo */
.site-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  text-decoration: none;
  flex-shrink: 0;
}

.site-logo-name {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.site-logo-tagline {
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

/* Main Nav */
.main-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a {
  display: block;
  padding: 8px 14px;
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--gold);
  background: rgba(201,146,0,0.10);
}

/* Header CTA */
.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.header-phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.2;
}

.header-phone-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.header-phone-number {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.header-phone-number:hover { color: var(--gold-light); }

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: none;
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* Mobile Sticky Call Bar */
.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--gold);
  padding: 14px 20px;
  text-align: center;
}

.mobile-call-bar a {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy-dark);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* ==========================================
   HERO
   ========================================== */

.hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  background-color: var(--navy-dark);
  background-image: linear-gradient(to right, rgba(17,29,43,0.92) 45%, rgba(17,29,43,0.6) 100%),
                    url('../../Images/background.png');
  background-size: cover;
  background-position: center 40%;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, var(--white), transparent);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 72px 0;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.hero-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--gold);
}

.hero h1 {
  color: var(--white);
  margin-bottom: 18px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.88);
  margin-bottom: 32px;
  max-width: 540px;
  line-height: 1.65;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.80);
  font-size: 0.88rem;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero-trust-item svg { color: var(--gold); }

/* Page Hero (non-home) */
.page-hero {
  background-color: var(--navy-dark);
  background-image: linear-gradient(to right, rgba(17,29,43,0.95) 50%, rgba(17,29,43,0.75) 100%),
                    url('../../Images/background.png');
  background-size: cover;
  background-position: center 40%;
  padding: 64px 0 56px;
  border-bottom: 3px solid var(--gold);
}

.page-hero h1 { color: var(--white); margin-bottom: 14px; }

.page-hero .hero-sub {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  margin-bottom: 24px;
}

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

/* ==========================================
   TRUST BAR
   ========================================== */

.trust-bar {
  background: var(--navy);
  padding: 20px 0;
  border-bottom: 2px solid var(--gold);
}

.trust-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 16px;
  flex-wrap: wrap;
}

.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.trust-bar-item svg { color: var(--gold); flex-shrink: 0; }

.trust-divider {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.2);
}

/* ==========================================
   QUICK ANSWER (AEO)
   ========================================== */

.quick-answer {
  background: var(--gold-pale);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin-bottom: 40px;
}

.quick-answer-label {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.quick-answer p {
  color: var(--dark-text);
  font-size: 1rem;
  margin: 0;
}

/* ==========================================
   SERVICE CARDS
   ========================================== */

.services-section { background: var(--off-white); }

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--gold);
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 52px;
  height: 52px;
  background: var(--navy);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.service-icon svg { color: var(--gold); }

.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--navy);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--muted-text);
  line-height: 1.6;
  margin: 0;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  margin-top: 14px;
  transition: gap var(--transition), color var(--transition);
}

.service-card-link:hover { color: var(--gold); gap: 10px; }

/* ==========================================
   ABOUT SECTION
   ========================================== */

.about-section { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--navy);
}

.about-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.about-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--gold);
  color: var(--navy-dark);
  padding: 14px 20px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-weight: 700;
  text-align: center;
}

.about-badge-number { font-size: 2rem; line-height: 1; display: block; }
.about-badge-text { font-size: 0.75rem; letter-spacing: 0.06em; text-transform: uppercase; }

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 28px 0;
}

.about-stat {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 16px;
  border-left: 3px solid var(--gold);
}

.about-stat-number {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}

.about-stat-label { font-size: 0.82rem; color: var(--muted-text); }

/* ==========================================
   GALLERY PREVIEW
   ========================================== */

.gallery-section { background: var(--off-white); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--navy);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img { transform: scale(1.06); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,29,43,0.75) 0%, transparent 55%);
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

/* Gallery placeholder for no-image state */
.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
  gap: 10px;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.gallery-placeholder svg { opacity: 0.3; }

/* ==========================================
   SERVICE AREAS
   ========================================== */

.areas-section { background: var(--navy); }

.areas-section .section-label { color: var(--gold); }
.areas-section h2 { color: var(--white); }
.areas-section .section-intro { color: rgba(255,255,255,0.75); }

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
  margin-top: 32px;
}

.area-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  transition: all var(--transition);
}

.area-tag:hover {
  background: rgba(201,146,0,0.15);
  border-color: var(--gold);
  color: var(--gold);
}

.area-tag svg { color: var(--gold); flex-shrink: 0; }

/* ==========================================
   FAQ SECTION
   ========================================== */

.faq-section { background: var(--white); }
.faq-section.alt { background: var(--off-white); }

.faq-list { max-width: 800px; }
.faq-list.centered { margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 4px;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  transition: color var(--transition);
}

.faq-question:hover { color: var(--gold); }

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
  border: 1px solid var(--border);
}

.faq-icon svg { transition: transform var(--transition); }

.faq-item.open .faq-icon {
  background: var(--gold);
  border-color: var(--gold);
}

.faq-item.open .faq-icon svg { transform: rotate(45deg); color: var(--navy-dark); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
  padding: 0 4px;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding-bottom: 20px;
}

.faq-answer p {
  color: var(--muted-text);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ==========================================
   CTA BANNER
   ========================================== */

.cta-banner {
  background: var(--navy);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.cta-banner .container { position: relative; z-index: 1; }

.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 8px;
}

.cta-banner p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  margin: 0;
  max-width: 480px;
}

.cta-banner-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ==========================================
   COMPARISON TABLE
   ========================================== */

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.comparison-table th {
  background: var(--navy);
  color: var(--white);
  padding: 14px 16px;
  text-align: left;
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.comparison-table th:first-child { background: var(--navy-dark); }

.comparison-table td {
  padding: 13px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
  color: var(--dark-text);
}

.comparison-table tr:nth-child(even) td { background: var(--off-white); }

.comparison-table tr:last-child td { border-bottom: none; }

.comparison-table td:first-child {
  font-weight: 600;
  color: var(--navy);
  background: var(--light-gray);
}

.check { color: var(--success); font-weight: 700; }
.partial { color: var(--gold); font-weight: 700; }
.cross { color: #c0392b; font-weight: 700; }

/* ==========================================
   FEATURE LIST
   ========================================== */

.feature-list { list-style: none; }

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}

.feature-list li:last-child { border-bottom: none; }

.feature-list .icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.feature-list .icon svg { color: var(--navy-dark); }

/* ==========================================
   PROCESS STEPS
   ========================================== */

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(to right, var(--border), var(--gold), var(--border));
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step-num {
  width: 60px;
  height: 60px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  border: 3px solid var(--gold);
  position: relative;
  z-index: 1;
}

.process-step h4 { font-size: 1rem; margin-bottom: 6px; color: var(--navy); }
.process-step p { font-size: 0.85rem; color: var(--muted-text); margin: 0; }

/* ==========================================
   CONTACT FORM
   ========================================== */

.contact-section { background: var(--off-white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
}

.contact-info-block { padding-top: 8px; }

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg { color: var(--gold); }

.contact-info-label {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.contact-info-value {
  font-size: 1rem;
  color: var(--dark-text);
  line-height: 1.5;
}

.contact-info-value a { color: var(--navy); font-weight: 600; }
.contact-info-value a:hover { color: var(--gold); }

/* Form */
.quote-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
}

.form-title {
  font-size: 1.5rem;
  margin-bottom: 6px;
  color: var(--navy);
}

.form-subtitle {
  color: var(--muted-text);
  font-size: 0.9rem;
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 6px;
  font-family: var(--font-head);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-label .req { color: var(--gold); margin-left: 2px; }

.form-control {
  display: block;
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--dark-text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.form-control:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27,45,69,0.12);
}

.form-control::placeholder { color: var(--mid-gray); }

textarea.form-control { resize: vertical; min-height: 110px; }

select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%235B6470' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-note {
  font-size: 0.78rem;
  color: var(--muted-text);
  margin-top: 14px;
}

/* ==========================================
   GALLERY PAGE — Full Grid
   ========================================== */

.gallery-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-full-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--navy);
}

.gallery-full-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-full-item:hover img { transform: scale(1.05); }

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(17,29,43,0.88), transparent);
  padding: 20px 16px 14px;
  color: var(--white);
  font-size: 0.85rem;
  opacity: 0;
  transform: translateY(4px);
  transition: all var(--transition);
}

.gallery-full-item:hover .gallery-caption { opacity: 1; transform: none; }

/* ==========================================
   CUSTOMER VALUE (no-fake-review section)
   ========================================== */

.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
}

.value-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  left: 20px;
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.3;
}

.value-card p {
  font-size: 1rem;
  color: var(--dark-text);
  line-height: 1.7;
  font-style: italic;
  padding-top: 20px;
  margin: 0;
}

/* ==========================================
   FOOTER
   ========================================== */

.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  padding: 56px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand {}

.footer-logo-name {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.footer-logo-tagline {
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
  max-width: 280px;
}

.footer-nap {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.88rem;
}

.footer-nap-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: rgba(255,255,255,0.7);
}

.footer-nap-item svg { color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.footer-nap-item a { color: var(--gold-light); }
.footer-nap-item a:hover { color: var(--white); }

.footer-heading {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-links li { margin-bottom: 8px; }

.footer-links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--gold); }

.footer-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.footer-area {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
}

.footer-area::after { content: '·'; margin-left: 6px; opacity: 0.4; }
.footer-area:last-child::after { content: ''; }

.footer-bottom {
  padding: 18px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  margin: 0;
}

/* ==========================================
   INLINE NAP (Schema microdata block)
   ========================================== */

.nap-block {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  color: rgba(255,255,255,0.85);
}

.nap-block-name {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.nap-block-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.nap-block-item svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.nap-block-item a { color: var(--gold-light); }
.nap-block-item a:hover { color: var(--white); }

/* ==========================================
   MISC / SHARED
   ========================================== */

.bg-light { background: var(--off-white); }
.bg-white { background: var(--white); }
.bg-navy { background: var(--navy); }

.divider {
  border: none;
  height: 1px;
  background: var(--border);
  margin: 40px 0;
}

.badge {
  display: inline-block;
  background: var(--gold-pale);
  color: var(--gold);
  border: 1px solid rgba(201,146,0,0.3);
  border-radius: 100px;
  padding: 3px 10px;
  font-size: 0.75rem;
  font-weight: 600;
  font-family: var(--font-head);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.badge-navy {
  background: var(--navy);
  color: var(--gold);
  border-color: rgba(201,146,0,0.3);
}

/* Map placeholder */
.map-placeholder {
  width: 100%;
  height: 320px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  margin-top: 24px;
}

.map-placeholder svg { opacity: 0.4; }

/* Skip link (accessibility) */
.skip-link {
  position: absolute;
  top: -50px;
  left: 20px;
  background: var(--gold);
  color: var(--navy-dark);
  padding: 8px 16px;
  border-radius: 0 0 var(--radius) var(--radius);
  font-weight: 700;
  z-index: 9999;
  transition: top 0.2s;
}

.skip-link:focus { top: 0; }

/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .about-grid { gap: 40px; }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .section-lg { padding: 72px 0; }

  .grid-2,
  .grid-3,
  .grid-4 { grid-template-columns: 1fr; }

  .gallery-grid,
  .gallery-full-grid { grid-template-columns: repeat(2, 1fr); }

  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .comparison-table { font-size: 0.82rem; }
  .comparison-table th,
  .comparison-table td { padding: 10px 12px; }

  /* Header mobile */
  .header-top-bar .header-hours { display: none; }
  .main-nav { display: none; }
  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy-dark);
    padding: 16px;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    border-top: 2px solid var(--gold);
  }
  .main-nav.open ul { flex-direction: column; width: 100%; }
  .main-nav.open a { padding: 12px 16px; font-size: 1rem; }
  .mobile-menu-toggle { display: flex; }
  .header-main .container { position: relative; }

  /* Phone display on mobile */
  .header-phone { display: none; }

  /* Hero mobile */
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; text-align: center; }
  .hero-trust { gap: 16px; }

  /* CTA banner */
  .cta-banner-inner { flex-direction: column; text-align: center; }
  .cta-banner-actions { justify-content: center; }

  /* Process */
  .process-steps { grid-template-columns: 1fr; }

  /* Show mobile call bar */
  .mobile-call-bar { display: block; }
  body { padding-bottom: 60px; }

  /* Form */
  .form-row { grid-template-columns: 1fr; }
  .quote-form { padding: 24px 20px; }

  /* Trust bar */
  .trust-bar .container { justify-content: flex-start; gap: 20px; }
  .trust-divider { display: none; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.85rem; }
  h2 { font-size: 1.5rem; }
  .gallery-grid,
  .gallery-full-grid { grid-template-columns: 1fr; }
  .hero { min-height: 480px; }
  .hero-content { padding: 52px 0; }
}

/* ==========================================
   PRINT
   ========================================== */
@media print {
  .site-header, .mobile-call-bar, .cta-banner, .site-footer { display: none; }
  .section { padding: 24px 0; }
  a { color: var(--dark-text); }
}
