/* =============================================================
   US HVAC SERVICES — Master Stylesheet
   style.css  |  All pages share this file
   ============================================================= */

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  color: #222;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

/* ===== CSS VARIABLES ===== */
:root {
  --blue:         #1a6090;
  --blue-dark:    #124568;
  --blue-light:   #2477a8;
  --red:          #c41e2a;
  --red-dark:     #a01820;
  --white:        #ffffff;
  --gray-light:   #f4f6f8;
  --gray:         #6b7280;
  --text-dark:    #1a1a1a;
  --section-pad:  80px 0;
}

/* ===== UTILITIES ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  border: none;
}
.btn:hover { transform: translateY(-1px); }
.btn-red  { background: var(--red);  color: var(--white); }
.btn-red:hover  { background: var(--red-dark); }
.btn-blue { background: var(--blue); color: var(--white); }
.btn-blue:hover { background: var(--blue-dark); }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline-white:hover { background: var(--white); color: var(--blue); }

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
.section-label::after {
  content: '';
  display: inline-block;
  width: 40px;
  height: 2px;
  background: var(--red);
  vertical-align: middle;
  margin-left: 10px;
}

/* ===== TOP BAR ===== */
#top-bar {
  background: var(--white);
  border-bottom: 1px solid #e8e8e8;
  padding: 16px 0;
}
#top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.top-bar-logos {
  display: flex;
  align-items: center;
  gap: 20px;
}
.top-bar-logos .site-logo img { height: 90px; width: auto; }
.top-bar-logos .rheem-logo img { height: 80px; width: auto; }
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 36px;
}
.top-bar-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.top-bar-icon {
  width: 52px; height: 52px;
  background: var(--blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 20px;
  flex-shrink: 0;
}
.top-bar-item strong {
  display: block;
  font-size: 12px;
  color: var(--gray);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.top-bar-item span {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
}

/* ===== MAIN HEADER / NAV ===== */
#main-header {
  background: var(--blue);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}
#main-header .container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 64px;
}

/* Mobile logo (hidden by default, shows on mobile) */
.mobile-logo { display: none; }
.mobile-logo img { height: 46px; width: auto; }

/* Nav */
#main-nav { display: flex; align-items: center; }
#main-nav > ul { display: flex; list-style: none; }
#main-nav > ul > li { position: relative; }
#main-nav > ul > li > a {
  display: block;
  padding: 0 18px;
  height: 64px;
  line-height: 64px;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: background 0.2s;
}
#main-nav > ul > li > a:hover,
#main-nav > ul > li.has-dropdown:hover > a { background: var(--blue-dark); }

/* Active nav state */
#main-nav > ul > li > a.active { background: var(--blue-dark); }

/* Dropdown */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 64px; left: 0;
  background: var(--white);
  min-width: 220px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  z-index: 100;
  border-top: 3px solid var(--red);
}
.dropdown-menu li a {
  display: block;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.15s, color 0.15s;
}
.dropdown-menu li a:hover { background: var(--blue); color: var(--white); }
.has-dropdown:hover .dropdown-menu { display: block; }

/* Sub-dropdown */
.sub-dropdown { position: relative; }
.sub-dropdown-menu {
  display: none;
  position: absolute;
  left: 100%; top: 0;
  background: var(--white);
  min-width: 240px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  border-top: 3px solid var(--red);
}
.sub-dropdown:hover .sub-dropdown-menu { display: block; }
.sub-dropdown > a::after { content: ' ›'; }

/* Nav CTA button */
.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 10px 20px !important;
  border-radius: 4px;
  margin-left: 20px;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px !important;
  line-height: 1 !important;
  height: auto !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--red-dark) !important; }
.nav-cta i { margin-right: 6px; }

/* Hamburger */
#hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
#hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: 0.3s;
}

/* ===== PAGE HERO BANNER (inner pages) ===== */
.page-hero {
  position: relative;
  background: center/cover no-repeat;
  min-height: 300px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 50px;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(10, 25, 45, 0.65);
}
.page-hero-inner {
  position: relative;
  z-index: 2;
  padding: 0 20px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 2px;
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--white); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb i { font-size: 10px; }
.page-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.4);
}

/* ===== HERO (homepage) ===== */
#hero {
  position: relative;
  background: url('images/photo-truck.jpg') center/cover no-repeat;
  min-height: 600px;
  display: flex;
  align-items: center;
}
#hero::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(10, 30, 50, 0.72);
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  gap: 40px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}
.hero-content { flex: 1; color: var(--white); padding-top: 20px; }
.google-guaranteed { width: 160px; margin-bottom: 28px; }
.hero-content h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(42px, 5vw, 66px);
  font-weight: 900;
  line-height: 1.05;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
  margin-bottom: 16px;
}
.hero-content p {
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 30px;
  color: rgba(255,255,255,0.9);
}
.hero-content .btn { margin-right: 12px; font-size: 15px; }

/* Hero Form */
.hero-form {
  background: var(--white);
  width: 380px;
  flex-shrink: 0;
  border-radius: 4px;
  padding: 36px 32px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}
.hero-form h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.2;
}
.hero-form .form-group { margin-bottom: 14px; }
.hero-form input,
.hero-form textarea,
.hero-form select {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  color: var(--text-dark);
  transition: border-color 0.2s;
  outline: none;
  background: #fff;
}
.hero-form input:focus,
.hero-form textarea:focus { border-color: var(--blue); }
.hero-form textarea { resize: vertical; min-height: 80px; }
.hero-form .btn { width: 100%; text-align: center; padding: 15px; font-size: 16px; }
.hero-form-note { font-size: 12px; color: var(--gray); text-align: center; margin-top: 10px; }

/* Trust Band */
.trust-band { background: #1a1a2e; padding: 18px 0; }
.trust-band .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}
.trust-band-item {
  display: flex; align-items: center; gap: 10px;
  color: var(--white); font-size: 14px; font-weight: 600;
}
.trust-band-item i { color: var(--red); font-size: 18px; }

/* ===== ABOUT SECTION (homepage) ===== */
#about { padding: var(--section-pad); background: var(--white); }
#about .container { display: flex; align-items: center; gap: 60px; }
.about-video {
  flex: 0 0 440px;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}
.about-video img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.play-btn {
  position: absolute;
  top: 20px; left: 20px;
  width: 60px; height: 60px;
  background: var(--blue);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 22px;
  cursor: pointer;
  transition: background 0.2s;
}
.play-btn:hover { background: var(--red); }
.about-content h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 20px;
}
.about-content p { color: var(--gray); font-size: 16px; line-height: 1.75; margin-bottom: 24px; }
.about-list { list-style: none; margin-bottom: 32px; }
.about-list li {
  display: flex; align-items: center; gap: 12px;
  font-size: 15px; font-weight: 600; color: var(--text-dark);
  padding: 6px 0;
}
.about-list li i { color: var(--red); font-size: 18px; width: 20px; }
.about-cta { display: flex; gap: 16px; flex-wrap: wrap; }

/* Photos Strip */
.photos-strip { display: flex; }
.photos-strip > div { flex: 1; overflow: hidden; }
.photos-strip img { width: 100%; height: 320px; object-fit: cover; display: block; }

/* ===== SERVICES CAROUSEL (homepage) ===== */
#services {
  background: var(--blue);
  padding: var(--section-pad);
}
#services .section-header { text-align: center; margin-bottom: 50px; }
#services .section-label { color: rgba(255,255,255,0.6); }
#services .section-label::after { background: rgba(255,255,255,0.4); }
#services h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 800;
  color: var(--white);
}
.services-carousel-wrap { position: relative; }
.services-carousel { display: flex; gap: 24px; overflow: hidden; }
.service-card {
  flex: 0 0 calc(33.333% - 16px);
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service-card img { width: 100%; height: 220px; object-fit: cover; display: block; }
.service-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.service-card h3 {
  font-size: 20px; font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.2;
}
.service-card p { font-size: 14px; color: var(--gray); line-height: 1.65; flex: 1; margin-bottom: 20px; }
.service-card .btn {
  align-self: flex-start;
  background: var(--red); color: var(--white);
  padding: 10px 24px; font-size: 13px; border-radius: 4px;
}
.service-card .btn:hover { background: var(--red-dark); }
.carousel-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 46px; height: 46px;
  background: var(--white);
  border: none; border-radius: 50%;
  cursor: pointer; font-size: 18px; color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: background 0.2s, color 0.2s;
  z-index: 10;
}
.carousel-btn:hover { background: var(--red); color: var(--white); }
.carousel-btn.prev { left: -23px; }
.carousel-btn.next { right: -23px; }

/* ===== SERVICE GRID (services page) ===== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-tile {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  display: block;
  cursor: pointer;
}
.service-tile img {
  width: 100%; height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.service-tile:hover img { transform: scale(1.05); }
.service-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,30,55,0.85) 0%, rgba(10,30,55,0.2) 60%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 24px 20px;
  transition: background 0.3s;
}
.service-tile:hover .service-tile-overlay {
  background: linear-gradient(to top, rgba(196,30,42,0.85) 0%, rgba(10,30,55,0.4) 70%, transparent 100%);
}
.service-tile-overlay h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
}

/* ===== WHY CHOOSE US (intro — services page variation) ===== */
.why-intro { padding: var(--section-pad); background: var(--white); }
.why-intro-inner {
  display: flex;
  align-items: center;
  gap: 80px;
  position: relative;
}
.why-intro-inner::before {
  content: '';
  position: absolute;
  right: -20px; top: -40px;
  width: 320px; height: 320px;
  background-image: radial-gradient(circle, #e0e7ef 1.5px, transparent 1.5px);
  background-size: 22px 22px;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}
.why-intro-left { flex: 1; position: relative; z-index: 1; }
.why-intro-right { flex: 1; position: relative; z-index: 1; }
.why-intro-left h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(28px, 3vw, 46px);
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.05;
  margin-bottom: 8px;
}
.why-intro-right p { color: var(--gray); font-size: 16px; line-height: 1.75; margin-bottom: 24px; }
.check-list { list-style: none; }
.check-list li {
  display: flex; align-items: center; gap: 12px;
  font-size: 15px; font-weight: 600; color: var(--text-dark);
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
}
.check-list li:last-child { border-bottom: none; }
.check-list li i { color: var(--blue); font-size: 18px; flex-shrink: 0; }

/* ===== PROCESS STEPS ===== */
.process-section { padding: var(--section-pad); background: var(--gray-light); }
.process-section .section-header { text-align: center; margin-bottom: 60px; }
.process-section h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 900;
  color: var(--text-dark);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
/* Connecting arrow line */
.process-grid::before {
  content: '';
  position: absolute;
  top: 68px;
  left: calc(12.5% + 10px);
  right: calc(12.5% + 10px);
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--blue) 0, var(--blue) 10px, transparent 10px, transparent 20px);
  z-index: 0;
}
.process-step {
  text-align: center;
  padding: 0 20px 0;
  position: relative;
  z-index: 1;
}
.process-icon-wrap {
  width: 80px; height: 80px;
  background: var(--blue);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 8px;
  position: relative;
}
.process-icon-wrap img { width: 44px; height: 44px; filter: brightness(0) invert(1); object-fit: contain; }
.process-icon-wrap i { font-size: 30px; color: var(--white); }
/* Triangle pointer */
.process-icon-wrap::after {
  content: '';
  position: absolute;
  bottom: -10px; left: 50%;
  transform: translateX(-50%);
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid var(--blue);
}
.process-step-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--gray);
  margin: 20px 0 12px;
  text-transform: uppercase;
}
.process-step h4 {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.process-step p { font-size: 14px; color: var(--gray); line-height: 1.7; }
.process-step .btn {
  margin-top: 24px;
  font-size: 12px;
  padding: 10px 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  background: none;
  border-radius: 0;
  color: var(--text-dark);
  border-top: 2px solid var(--blue);
}
.process-step .btn-num {
  background: var(--blue);
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
  padding: 8px 14px;
  border-radius: 2px;
  flex-shrink: 0;
}
.process-step .btn-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ===== BRAND/PROMISE SECTION ===== */
#brand { padding: var(--section-pad); background: var(--white); }
#brand .container { display: flex; align-items: center; gap: 60px; }
.brand-flag-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(60px, 8vw, 110px);
  line-height: 0.9;
  text-transform: uppercase;
  background-image: url('images/flag-usa.png');
  background-size: cover;
  background-position: center;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex: 1;
}
.brand-content { flex: 1; }
.brand-content h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 20px;
}
.brand-content p { font-size: 16px; color: var(--gray); line-height: 1.75; margin-bottom: 24px; }
.brand-list { list-style: none; }
.brand-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px; font-weight: 600; color: var(--text-dark);
  padding: 7px 0;
}
.brand-list li i { color: var(--blue); font-size: 18px; }

/* ===== CTA BAND ===== */
.cta-band { background: var(--red); padding: 0; }
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 20px;
}
.cta-band h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 32px; font-weight: 800;
  color: var(--white);
}
.cta-band-icon {
  width: 80px; height: 80px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 32px;
}
.cta-band-phone { text-align: right; }
.cta-band-phone p { color: rgba(255,255,255,0.85); font-size: 14px; font-weight: 600; }
.cta-band-phone a {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 38px; font-weight: 900;
  color: var(--white);
  letter-spacing: 1px;
}

/* ===== WHY CHOOSE US (homepage full section) ===== */
#why-choose-us { display: flex; }
.why-content {
  background: var(--blue);
  flex: 1;
  padding: 80px 60px 80px 40px;
  display: flex; align-items: flex-start;
  flex-direction: column; justify-content: center;
}
.why-content .section-label { color: rgba(255,255,255,0.6); }
.why-content .section-label::after { background: rgba(255,255,255,0.4); }
.why-content h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 900; color: var(--white);
  line-height: 1.05; margin-bottom: 16px;
}
.why-content > p {
  font-size: 15px; color: rgba(255,255,255,0.8);
  line-height: 1.7; margin-bottom: 36px; max-width: 440px;
}
.why-cards { display: flex; flex-direction: column; gap: 20px; width: 100%; }
.why-card {
  background: var(--white);
  border-radius: 6px;
  padding: 24px 28px;
  display: flex; align-items: flex-start; gap: 20px;
  max-width: 520px;
}
.why-card-icon {
  width: 54px; height: 54px;
  background: var(--gray-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 22px; color: var(--blue);
}
.why-card h4 { font-size: 18px; font-weight: 800; color: var(--text-dark); margin-bottom: 8px; }
.why-card p { font-size: 14px; color: var(--gray); line-height: 1.65; }
.why-photo { flex: 1; overflow: hidden; min-height: 600px; }
.why-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

/* ===== FAQ ===== */
#faq { display: flex; }
.faq-photo { flex: 0 0 45%; overflow: hidden; }
.faq-photo img { width: 100%; height: 100%; object-fit: cover; }
.faq-content {
  flex: 1;
  background: var(--gray-light);
  padding: 80px 60px;
}
.faq-content .section-label { margin-bottom: 6px; }
.faq-content h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 800; color: var(--text-dark);
  line-height: 1.15; margin-bottom: 40px;
}
.faq-item { border-bottom: 1px solid #ddd; padding: 18px 0; }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 16px; font-weight: 700;
  color: var(--text-dark); gap: 16px;
}
.faq-question:hover { color: var(--blue); }
.faq-icon { font-size: 18px; color: var(--blue); flex-shrink: 0; transition: transform 0.3s; }
.faq-answer {
  display: none;
  padding-top: 14px;
  font-size: 15px; color: var(--gray); line-height: 1.75;
}
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-item.open .faq-answer { display: block; }

/* ===== REVIEWS ===== */
#reviews { padding: var(--section-pad); background: var(--white); }
.reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
}
.reviews-header h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 800; color: var(--text-dark); line-height: 1.1;
}
.reviews-inner { display: flex; gap: 32px; align-items: flex-start; }
.reviews-aggregate {
  flex: 0 0 200px;
  text-align: center;
  padding: 30px 20px;
  border: 1px solid #eee;
  border-radius: 6px;
}
.reviews-aggregate .rating-label { font-size: 20px; font-weight: 800; color: var(--text-dark); margin-bottom: 8px; }
.stars-gold { color: #f59e0b; font-size: 22px; margin-bottom: 8px; }
.reviews-aggregate .review-count { font-size: 13px; color: var(--gray); }
.reviews-aggregate img { width: 80px; margin: 14px auto 0; }
.reviews-slider-wrap { flex: 1; position: relative; overflow: hidden; }
.reviews-track { display: flex; transition: transform 0.4s ease; gap: 20px; }
.review-card {
  flex: 0 0 calc(33.333% - 14px);
  border: 1px solid #eee;
  border-radius: 6px;
  padding: 24px;
}
.review-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
}
.reviewer-info { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 800; color: var(--white);
  flex-shrink: 0;
}
.reviewer-name { font-size: 15px; font-weight: 700; color: var(--text-dark); }
.review-date { font-size: 12px; color: var(--gray); }
.review-stars { color: #f59e0b; font-size: 14px; margin-bottom: 10px; }
.review-text { font-size: 14px; color: var(--gray); line-height: 1.7; }
.google-g { font-size: 22px; color: #4285f4; font-weight: 900; font-family: serif; }
.reviews-nav { display: flex; gap: 10px; justify-content: center; margin-top: 28px; }
.rev-btn {
  width: 42px; height: 42px;
  border: 2px solid var(--blue);
  border-radius: 50%;
  background: none; cursor: pointer;
  color: var(--blue); font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  transition: 0.2s;
}
.rev-btn:hover { background: var(--blue); color: var(--white); }

/* ===== FOOTER ===== */
#footer {
  background: var(--blue);
  padding: 70px 0 0;
  color: rgba(255,255,255,0.85);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 50px;
}
.footer-logo img { height: 80px; margin-bottom: 18px; }
.footer-tagline { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.75); margin-bottom: 18px; }
.footer-phone {
  display: flex; align-items: center; gap: 10px;
  font-size: 20px; font-weight: 800; color: var(--white);
  margin-bottom: 20px;
}
.footer-phone i { color: var(--red); }
.footer-google-g img { width: 180px; }
.footer-col h4 {
  font-size: 16px; font-weight: 800;
  color: var(--white); margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(255,255,255,0.15);
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.75); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-cta-col .btn { width: 100%; text-align: center; margin-bottom: 12px; display: block; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  width: 40px; height: 40px;
  background: var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 16px;
  transition: background 0.2s;
}
.footer-social a:hover { background: var(--red-dark); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  text-align: center;
  padding: 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

/* ===== BACK TO TOP ===== */
#back-top {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 46px; height: 46px;
  background: var(--red); color: var(--white);
  border-radius: 50%; border: none;
  font-size: 18px; cursor: pointer;
  display: none; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  z-index: 999;
  transition: background 0.2s;
}
#back-top.show { display: flex; }
#back-top:hover { background: var(--red-dark); }

/* ===== SHARED JS SNIPPET ===== */
/* nav.js is referenced from each page; see /js/nav.js */

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 1024px) {
  .service-card       { flex: 0 0 calc(50% - 12px); }
  .footer-grid        { grid-template-columns: 1fr 1fr; gap: 36px; }
  #brand .container   { flex-direction: column; gap: 30px; }
  .brand-flag-text    { font-size: 70px; }
  .process-grid       { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-grid::before { display: none; }
  .service-grid       { grid-template-columns: repeat(2, 1fr); }
  .why-intro-inner    { gap: 40px; }
}

@media (max-width: 768px) {
  #top-bar                { display: none; }
  #main-header .container { justify-content: space-between; }
  .mobile-logo            { display: flex !important; }
  #main-nav {
    display: none;
    position: absolute; top: 64px; left: 0; right: 0;
    background: var(--blue-dark); padding: 10px 0;
  }
  #main-nav.open          { display: block; }
  #main-nav > ul          { flex-direction: column; }
  #main-nav > ul > li > a { height: auto; line-height: 1; padding: 14px 20px; }
  .dropdown-menu          { position: static; display: none; box-shadow: none; border-top: none; background: rgba(0,0,0,0.2); }
  .has-dropdown.open .dropdown-menu { display: block; }
  .sub-dropdown-menu      { position: static; display: none; box-shadow: none; border-top: none; background: rgba(0,0,0,0.2); }
  .sub-dropdown.open .sub-dropdown-menu { display: block; }
  #hamburger              { display: block; }
  .nav-cta                { margin: 10px 20px; display: inline-block; }

  /* Homepage */
  .hero-inner             { flex-direction: column; }
  .hero-form              { width: 100%; }
  #about .container       { flex-direction: column; }
  .about-video            { flex: none; width: 100%; }
  .service-card           { flex: 0 0 100%; }
  #why-choose-us          { flex-direction: column; }
  .why-photo              { min-height: 300px; }
  #faq                    { flex-direction: column; }
  .faq-photo              { flex: none; height: 280px; }
  .faq-content            { padding: 50px 24px; }
  .reviews-inner          { flex-direction: column; }
  .review-card            { flex: 0 0 100%; }
  .reviews-header         { flex-direction: column; gap: 16px; }
  .why-content            { padding: 60px 24px; }
  .cta-band-inner         { flex-direction: column; gap: 16px; text-align: center; }
  .cta-band-icon          { display: none; }
  .cta-band-phone         { text-align: center; }

  /* Services page */
  .service-grid           { grid-template-columns: 1fr; }
  .why-intro-inner        { flex-direction: column; gap: 30px; }
  .process-grid           { grid-template-columns: 1fr; }

  /* General */
  .footer-grid            { grid-template-columns: 1fr; gap: 30px; }
  .photos-strip           { flex-direction: column; }
}
