:root {
  --red: #e31e24;
  --red-dark: #c4181e;
  --topbar: #303031;
  --black: #111111;
  --heading: #1a1a1a;
  --text: #555555;
  --muted: #7a7a7a;
  --border: #ececec;
  --bg: #f5f5f5;
  --white: #ffffff;
  --container: 1200px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: 0.25s ease;
}

ul {
  list-style: none;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.container-wide {
  width: min(100% - 40px, 1280px);
  margin-inline: auto;
}

.red {
  color: var(--red);
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: 0;
  cursor: pointer;
  padding: 14px 28px;
  line-height: 1;
  transition: 0.25s ease;
}

.btn-red {
  background: var(--red);
  color: #fff;
}

.btn-red:hover {
  background: var(--red-dark);
  color: #fff;
}

.btn-black {
  background: var(--black);
  color: #fff;
}

.btn-black:hover {
  background: var(--red);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--red);
  border: 2px solid var(--red);
}

.btn-outline:hover {
  background: var(--red);
  color: #fff;
}

.btn-white-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.btn-white-outline:hover {
  background: #fff;
  color: var(--black);
}

/* ========== TOP BAR ========== */
.topbar {
  background: var(--topbar);
  color: #fff;
  height: 44px;
  overflow: hidden;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 44px;
  width: 100%;
  max-width: none;
  padding-left: max(20px, calc((100% - 1200px) / 2));
  padding-right: 0;
}

.topbar-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.topbar-social a {
  width: 26px;
  height: 26px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 11px;
}

.topbar-social a:hover {
  background: var(--red);
  border-color: var(--red);
}

.topbar-emergency {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: #fff;
  height: 44px;
  padding: 0 22px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.topbar-emergency:hover {
  background: var(--red-dark);
  color: #fff;
}

.topbar-emergency i {
  font-size: 14px;
}

/* ========== HEADER ========== */
.site-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 92px;
  gap: 20px;
}

.logo img {
  height: 72px;
  width: auto;
  object-fit: contain;
}

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

.main-nav > ul > li > a {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--heading);
  position: relative;
  padding: 6px 0;
}

.main-nav > ul > li > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: 0.25s ease;
}

.main-nav > ul > li > a:hover,
.main-nav > ul > li > a.active {
  color: var(--red);
}

.main-nav > ul > li > a:hover::after,
.main-nav > ul > li > a.active::after {
  width: 100%;
}

.has-dropdown {
  position: relative;
}

.has-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.has-dropdown > a i {
  font-size: 10px;
  transition: transform 0.2s ease;
}

.has-dropdown:hover > a i,
.has-dropdown.open > a i {
  transform: rotate(180deg);
}

.has-dropdown:hover > a,
.has-dropdown:focus-within > a {
  color: var(--red);
}

.has-dropdown:hover > a::after,
.has-dropdown:focus-within > a::after {
  width: 100%;
}

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 540px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  border-top: 3px solid var(--red);
  padding: 12px 8px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.2s ease;
  z-index: 30;
}

.dropdown::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}

.has-dropdown:hover > .dropdown,
.has-dropdown:focus-within > .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown a {
  display: block;
  padding: 9px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--heading);
  line-height: 1.35;
}

.dropdown a:hover,
.dropdown a.active {
  color: var(--red);
  background: #fff3f3;
}

.header-cta {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid #ddd;
  background: #fff;
  color: var(--heading);
  font-size: 20px;
  cursor: pointer;
}

/* ========== HERO SLIDER ========== */
.hero {
  position: relative;
  height: 640px;
  overflow: hidden;
  background: #111;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(8, 8, 8, 0.88) 0%,
    rgba(8, 8, 8, 0.62) 46%,
    rgba(8, 8, 8, 0.35) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 760px;
  padding-top: 20px;
}

.hero-badge {
  display: inline-flex;
  align-self: flex-start;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 14px;
  margin-bottom: 22px;
}

.hero h1 {
  color: #fff;
  font-size: clamp(32px, 4.4vw, 54px);
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 18px;
}

.hero p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  max-width: 620px;
  margin-bottom: 28px;
}

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

.hero-location {
  position: absolute;
  right: max(20px, calc((100% - 1200px) / 2));
  bottom: 28px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}

.hero-location i {
  color: var(--red);
  font-size: 18px;
}

.hero-nav {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

.hero-arrow {
  pointer-events: auto;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(0, 0, 0, 0.25);
  color: #fff;
  cursor: pointer;
}

.hero-arrow:hover {
  background: var(--red);
  border-color: var(--red);
}

.hero-arrow.prev {
  left: 24px;
}

.hero-arrow.next {
  right: 24px;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 8px;
}

.hero-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
}

.hero-dots button.active {
  background: var(--red);
}

/* ========== SECTION HEADS ========== */
.section {
  padding: 90px 0;
}

.section-head {
  text-align: center;
  margin-bottom: 48px;
}

.section-kicker {
  color: var(--red);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-head h2,
.about-copy h2,
.page-title {
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 800;
  color: var(--heading);
  text-transform: uppercase;
  line-height: 1.2;
}

.red-line {
  width: 56px;
  height: 3px;
  background: var(--red);
  margin: 16px auto 0;
}

/* ========== ABOUT ========== */
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-visual {
  position: relative;
  padding-right: 40px;
  padding-bottom: 40px;
}

.about-visual .main-shot {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.about-visual .small-shot {
  position: absolute;
  width: 210px;
  height: 210px;
  object-fit: cover;
  right: 0;
  bottom: 0;
  border: 8px solid #fff;
  box-shadow: var(--shadow);
}

.experience-box {
  position: absolute;
  right: 28px;
  bottom: 28px;
  width: 150px;
  height: 150px;
  background: var(--red);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
  padding: 16px;
}

.experience-box strong {
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
}

.experience-box strong i {
  font-size: 36px;
}

.experience-box span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 8px;
  line-height: 1.3;
}

.about-copy .section-kicker {
  margin-bottom: 12px;
}

.about-copy p {
  margin: 16px 0 0;
  font-size: 15px;
}

.about-copy .about-lead {
  color: var(--red);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 14px;
  margin-bottom: 4px;
}

.about-copy .about-objective {
  color: var(--heading);
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.about-copy .btn {
  margin-top: 28px;
}

.about-list {
  margin: 26px 0 32px;
  display: grid;
  gap: 12px;
}

.about-list.two-col {
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
  margin-bottom: 16px;
}

.about-copy .about-subhead {
  color: var(--heading);
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  margin-top: 26px;
}

.about-topics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 22px;
  margin: 18px 0 8px;
}

.about-topics h4 {
  color: var(--heading);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.about-copy .about-topics p {
  margin: 0;
  font-size: 14px;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.about-list i {
  color: var(--red);
  margin-top: 3px;
}

/* ========== SERVICES ========== */
.services-section {
  background: var(--bg);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card {
  background: #fff;
  border: 1px solid #ececec;
  padding: 28px 22px 24px;
  min-height: 220px;
  transition: 0.25s ease;
}

a.service-card {
  color: inherit;
  display: flex;
  flex-direction: column;
}

a.detail-card {
  color: inherit;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: transparent;
}

.service-card .icon {
  width: 48px;
  height: 48px;
  color: var(--red);
  font-size: 28px;
  margin-bottom: 16px;
  display: grid;
  place-items: start;
}

.service-card h3 {
  color: var(--heading);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 10px;
  line-height: 1.3;
}

.service-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.service-card .more {
  display: inline-block;
  margin-top: auto;
  padding-top: 14px;
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.service-card.cta-card {
  background: var(--black);
  border-color: var(--black);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-card.cta-card h3 {
  color: var(--red);
  font-size: 22px;
  margin-bottom: 12px;
}

.service-card.cta-card p,
.service-card.cta-card a.phone {
  color: #fff;
}

.service-card.cta-card a.phone {
  font-size: 18px;
  font-weight: 800;
  margin-top: 8px;
}

.service-card.cta-card:hover {
  background: #000;
}

/* ========== STATS ========== */
.stats {
  background: var(--red);
  padding: 54px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
  color: #fff;
}

.stat-item .num {
  font-size: clamp(32px, 3.5vw, 42px);
  font-weight: 800;
  line-height: 1.1;
}

.stat-item .label {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ========== BRANDS ========== */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.brand-card {
  background: #fff;
  border: 1px solid #eee;
  min-height: 120px;
  display: grid;
  place-items: center;
  padding: 18px 16px 22px;
  position: relative;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

.brand-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
}

.brand-card:nth-child(1)::after { background: #003478; }
.brand-card:nth-child(2)::after { background: #000; }
.brand-card:nth-child(3)::after { background: #c8102e; }
.brand-card:nth-child(4)::after { background: #e30613; }
.brand-card:nth-child(5)::after { background: #e30613; }
.brand-card:nth-child(6)::after { background: #c8102e; }
.brand-card:nth-child(7)::after { background: #e30613; }
.brand-card:nth-child(8)::after { background: #111; }

.brand-card img,
.brand-card svg {
  max-height: 52px;
  max-width: 160px;
  width: auto;
}

.brand-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
  text-align: center;
}

.brand-feature i {
  width: 62px;
  height: 62px;
  border: 2px solid var(--red);
  color: var(--red);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 22px;
  margin: 0 auto 14px;
}

.brand-feature h4 {
  color: var(--heading);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.brand-feature p {
  font-size: 13px;
  color: var(--muted);
  margin-top: 6px;
}

/* ========== MAP ========== */
.map-wrap iframe,
.map-wrap {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

/* ========== FOOTER ========== */
.site-footer {
  background: #0e0e0e;
  color: #cfcfcf;
  position: relative;
}

.footer-top {
  padding: 72px 0 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 2.5fr 1fr;
  gap: 40px;
}

.footer-col .footer-services {
  grid-template-columns: 1fr 1fr;
  gap: 8px 18px;
  align-items: start;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 13px;
}

.footer-social a:hover {
  background: var(--red);
  border-color: var(--red);
}

.footer-col h4 {
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 22px;
  text-transform: capitalize;
}

.footer-col ul {
  display: grid;
  gap: 10px;
}

.footer-col li a {
  font-size: 14px;
  color: #cfcfcf;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-col li a i {
  color: var(--red);
  font-size: 10px;
}

.footer-col li a:hover {
  color: #fff;
  padding-left: 4px;
}

.footer-contact li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
  font-size: 14px;
}

.footer-contact i {
  color: var(--red);
  margin-top: 4px;
}

.footer-bottom {
  background: #0a0a0a;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 16px 0;
  font-size: 13px;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-bottom-inner p {
  flex: 1;
  line-height: 1.7;
}

.footer-bottom-inner p a:hover {
  color: var(--red);
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}

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

.back-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 44px;
  height: 44px;
  background: var(--red);
  color: #fff;
  display: grid;
  place-items: center;
  z-index: 50;
  opacity: 0;
  pointer-events: none;
  transition: 0.25s ease;
}

.back-top.show {
  opacity: 1;
  pointer-events: auto;
}

.back-top:hover {
  background: var(--black);
  color: #fff;
}

/* ========== INNER PAGES ========== */
.page-banner {
  height: 280px;
  background: #111 center/cover no-repeat;
  position: relative;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
}

.page-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.68);
}

.page-banner-content {
  position: relative;
  z-index: 1;
}

.page-banner h1 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  text-transform: uppercase;
}

.breadcrumb {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.breadcrumb a:hover {
  color: var(--red);
}

.breadcrumb span {
  color: var(--red);
}

/* about extras */
.values-grid,
.detail-grid,
.review-grid,
.info-grid {
  display: grid;
  gap: 22px;
}

.values-grid {
  grid-template-columns: repeat(3, 1fr);
}

.value-card,
.info-card,
.review-card,
.form-card {
  background: #fff;
  border: 1px solid var(--border);
  padding: 28px 24px;
}

.value-card i,
.info-card i {
  color: var(--red);
  font-size: 28px;
  margin-bottom: 14px;
}

.value-card h3,
.info-card h3,
.form-card h3 {
  color: var(--heading);
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
  text-transform: uppercase;
}

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

.detail-card {
  background: #fff;
  border: 1px solid var(--border);
  padding: 28px;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: start;
  scroll-margin-top: 110px;
}

.detail-card i {
  width: 52px;
  height: 52px;
  background: #fff3f3;
  color: var(--red);
  display: grid;
  place-items: center;
  font-size: 20px;
}

.detail-card h3 {
  color: var(--heading);
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 6px;
}

a.detail-card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow);
}

.service-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.service-includes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.include-card {
  background: var(--bg);
  padding: 28px 24px;
  border: 1px solid var(--border);
}

.include-card i {
  color: var(--red);
  font-size: 22px;
  margin-bottom: 12px;
}

.include-card h3 {
  color: var(--heading);
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.include-card p {
  font-size: 14px;
  color: var(--muted);
}

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

.related-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border: 1px solid var(--border);
  background: #fff;
}

.related-card:hover {
  border-color: var(--red);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.related-card i {
  color: var(--red);
  font-size: 18px;
  width: 44px;
  height: 44px;
  background: #fff3f3;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.related-card h3 {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--heading);
  margin: 0 0 4px;
}

.related-card span {
  font-size: 11px;
  color: var(--red);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.review-grid {
  grid-template-columns: repeat(3, 1fr);
}

.review-card .stars {
  color: #f5b301;
  margin-bottom: 12px;
}

.review-card p {
  font-size: 14px;
  margin-bottom: 18px;
}

.review-card h4 {
  color: var(--heading);
  font-size: 15px;
  font-weight: 800;
}

.review-card span {
  font-size: 12px;
  color: var(--muted);
}

.info-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 40px;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 30px;
}

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

.contact-form .full {
  grid-column: 1 / -1;
}

.contact-form label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--heading);
  margin-bottom: 8px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #ddd;
  background: #fafafa;
  padding: 12px 14px;
  font-size: 14px;
  outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--red);
  background: #fff;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.form-success {
  display: none;
  background: #eefaf1;
  color: #146c2e;
  border: 1px solid #b7e4c7;
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

.form-success.show {
  display: block;
}

.form-error {
  display: none;
  background: #fff3f3;
  color: #9b1c1c;
  border: 1px solid #f5c2c7;
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

.form-error.show {
  display: block;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.captcha-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.captcha-wrap img {
  width: 168px;
  height: 52px;
  background: #1a1a1a;
  display: block;
  flex-shrink: 0;
}

.captcha-entry {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 180px;
}

.captcha-entry input {
  flex: 1;
  width: auto;
  min-width: 0;
  height: 52px;
}

.captcha-refresh {
  width: 44px;
  height: 52px;
  flex-shrink: 0;
  border: 1px solid #ddd;
  background: #fff;
  color: var(--heading);
  cursor: pointer;
  font-size: 18px;
}

.captcha-refresh:hover {
  border-color: var(--red);
  color: var(--red);
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 8px;
}

.hours-table td {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  font-size: 14px;
}

.hours-table td:last-child {
  text-align: right;
  font-weight: 700;
  color: var(--heading);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  background: #fff;
}

.faq-item button {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 18px 20px;
  font-size: 16px;
  font-weight: 700;
  color: var(--heading);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.faq-item button i {
  color: var(--red);
}

.faq-item .answer {
  display: none;
  padding: 0 20px 18px;
  font-size: 14px;
}

.faq-item.open .answer {
  display: block;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: 0.25s ease;
}

.overlay.show {
  opacity: 1;
  visibility: visible;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1100px) {
  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .main-nav > ul {
    gap: 16px;
  }

  .dropdown {
    width: 480px;
    left: 0;
    transform: translateY(8px);
  }

  .has-dropdown:hover > .dropdown,
  .has-dropdown:focus-within > .dropdown {
    transform: translateY(0);
  }

  .footer-grid {
    grid-template-columns: 1fr 2fr 1fr;
    gap: 28px;
  }
}

@media (max-width: 991px) {
  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background: #fff;
    z-index: 999;
    padding: 80px 28px 28px;
    box-shadow: -8px 0 24px rgba(0, 0, 0, 0.12);
    transition: 0.3s ease;
    overflow-y: auto;
  }

  .main-nav.open {
    right: 0;
  }

  .main-nav > ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .has-dropdown {
    width: 100%;
  }

  .has-dropdown > a {
    width: 100%;
    justify-content: space-between;
  }

  .dropdown,
  .has-dropdown:hover > .dropdown,
  .has-dropdown:focus-within > .dropdown {
    position: static;
    width: 100%;
    transform: none;
    box-shadow: none;
    border-top: none;
    padding: 8px 0 0 8px;
    display: none;
    grid-template-columns: 1fr;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .has-dropdown.open > .dropdown {
    display: grid;
  }

  .dropdown::before {
    display: none;
  }

  .header-inner {
    grid-template-columns: 1fr auto auto;
    min-height: 80px;
  }

  .header-cta .btn {
    display: none;
  }

  .about-grid,
  .contact-wrap {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about-visual .main-shot {
    height: 420px;
  }

  .brand-grid,
  .values-grid,
  .review-grid,
  .info-grid,
  .detail-grid,
  .service-includes,
  .related-grid {
    grid-template-columns: 1fr 1fr;
  }

  .brand-features,
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .hero {
    height: 560px;
  }

  .hero-location {
    right: 20px;
    max-width: 220px;
  }
}

@media (max-width: 767px) {
  .topbar {
    height: auto;
  }

  .topbar-inner {
    height: auto;
    min-height: 42px;
  }

  .topbar-emergency {
    font-size: 10px;
    padding: 0 12px;
    height: 42px;
  }

  .em-full {
    display: none;
  }

  .hero-location {
    left: 20px;
    right: auto;
    bottom: 52px;
    font-size: 12px;
  }

  .logo img {
    height: 56px;
  }

  .hero {
    height: 520px;
  }

  .hero-arrow {
    display: none;
  }

  .service-grid,
  .brand-grid,
  .values-grid,
  .review-grid,
  .info-grid,
  .detail-grid,
  .brand-features,
  .stats-grid,
  .footer-grid,
  .contact-form,
  .footer-col .footer-services,
  .service-includes,
  .related-grid,
  .about-list.two-col,
  .about-topics {
    grid-template-columns: 1fr;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .about-visual {
    padding: 0 20px 20px 0;
  }

  .about-visual .small-shot {
    width: 140px;
    height: 140px;
  }

  .experience-box {
    width: 120px;
    height: 120px;
    right: 8px;
    bottom: 8px;
  }

  .experience-box strong {
    font-size: 32px;
  }

  .section {
    padding: 64px 0;
  }

  .page-banner {
    height: 220px;
  }

  .map-wrap,
  .map-wrap iframe {
    height: 300px;
  }
}
