/* ============================================
   WE KILL TERMITES — Master Stylesheet
   Brand: Red (#C41E24) + Black (#0B0B0B)
   Font: Open Sans (matching existing brand)
   Mobile-first responsive design
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
  --red: #C41E24;
  --red-dark: #9E181D;
  --red-light: #E8353C;
  --black: #0B0B0B;
  --dark-gray: #1A1A1A;
  --mid-gray: #333333;
  --text-gray: #555555;
  --light-gray: #F5F5F5;
  --white: #FFFFFF;
  --border-gray: #E0E0E0;
  --shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
  --radius: 8px;
  --radius-lg: 12px;
  --transition: 0.25s ease;
  --max-width: 1200px;
  --font: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  color: var(--mid-gray);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--red); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--red-dark); }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; }
h1, h2, h3, h4, h5, h6 { color: var(--black); line-height: 1.25; font-weight: 700; }

/* ---------- Typography ---------- */
h1 { font-size: 2.25rem; }
h2 { font-size: 1.875rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
p { margin-bottom: 1rem; }
.lead { font-size: 1.125rem; line-height: 1.8; color: var(--text-gray); }

@media (min-width: 768px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.25rem; }
  h3 { font-size: 1.75rem; }
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}
.section { padding: 4rem 0; }
.section--gray { background: var(--light-gray); }
.section--dark { background: var(--black); color: var(--white); }
.section--dark h2, .section--dark h3, .section--dark h4 { color: var(--white); }
.section--red { background: var(--red); color: var(--white); }
.section--red h2, .section--red h3 { color: var(--white); }

.grid { display: grid; gap: 2rem; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr 1fr; }

@media (min-width: 768px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr 1fr 1fr; }
  .section { padding: 5rem 0; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: all var(--transition);
  text-align: center;
  line-height: 1.2;
}
.btn--primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn--primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(196, 30, 36, 0.35);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn--outline:hover {
  background: var(--white);
  color: var(--black);
}
.btn--outline-dark {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}
.btn--outline-dark:hover {
  background: var(--black);
  color: var(--white);
}
.btn--white {
  background: var(--white);
  color: var(--red);
  border-color: var(--white);
}
.btn--white:hover {
  background: var(--light-gray);
  color: var(--red-dark);
}
.btn--lg {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
}
.btn--block { width: 100%; }
.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ---------- Header / Navbar ---------- */
.topbar {
  background: var(--black);
  color: var(--white);
  font-size: 0.85rem;
  padding: 0.5rem 0;
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.topbar a { color: var(--white); }
.topbar a:hover { color: var(--red-light); }
.topbar__rating { display: flex; align-items: center; gap: 0.35rem; }
.topbar__stars { color: #FFC107; }

.header {
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
}
.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.logo span { color: var(--red); }

/* Desktop nav */
.nav { display: none; }
.nav__list { display: flex; gap: 0; align-items: center; }
.nav__item { position: relative; }
.nav__link {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--mid-gray);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color var(--transition);
}
.nav__link:hover { color: var(--red); }
.nav__link--active { color: var(--red); }

/* Dropdown */
.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius);
  min-width: 240px;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition);
  z-index: 100;
}
.nav__item:hover .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__dropdown a {
  display: block;
  padding: 0.625rem 1.25rem;
  color: var(--mid-gray);
  font-size: 0.9rem;
  font-weight: 500;
}
.nav__dropdown a:hover { background: var(--light-gray); color: var(--red); }

.header__cta { display: none; }

@media (min-width: 992px) {
  .nav { display: block; }
  .header__cta { display: flex; align-items: center; gap: 1rem; }
  .mobile-toggle { display: none !important; }
}

/* Mobile menu toggle */
.mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 0.5rem;
}
.mobile-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--black);
  border-radius: 3px;
  transition: var(--transition);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  z-index: 2000;
  padding: 1.5rem;
  overflow-y: auto;
}
.mobile-nav.active { display: block; }
.mobile-nav__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--black);
}
.mobile-nav__list { padding-top: 3rem; }
.mobile-nav__list a {
  display: block;
  padding: 1rem 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--black);
  border-bottom: 1px solid var(--border-gray);
}
.mobile-nav__list a:hover { color: var(--red); }
.mobile-nav__cta {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* ---------- Sticky CTA (Mobile) ---------- */
.sticky-cta {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.15);
}
.sticky-cta__call {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
}
.sticky-cta__quote {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  background: var(--black);
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
}

@media (min-width: 992px) {
  .sticky-cta { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(135deg, rgba(11,11,11,0.88) 0%, rgba(26,26,26,0.85) 100%), url('../images/hero-technician.jpg') center/cover no-repeat;
  color: var(--white);
  padding: 3.5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(196, 30, 36, 0.12) 100%);
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(196, 30, 36, 0.15);
  color: var(--red-light);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.hero h1 { color: var(--white); margin-bottom: 1rem; }
.hero h1 span { color: var(--red-light); }
.hero__text {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2rem;
  line-height: 1.8;
}
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero__stat-value {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--red-light);
}
.hero__stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (min-width: 768px) {
  .hero { padding: 5rem 0 6rem; }
  .hero__inner { grid-template-columns: 1fr 1fr; }
  .hero__stat-value { font-size: 2.25rem; }
}

/* Hero trust form */
.hero__form-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}
.hero__form-box h3 { color: var(--black); margin-bottom: 0.5rem; font-size: 1.25rem; }
.hero__form-box .subtitle { color: var(--text-gray); font-size: 0.9rem; margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--mid-gray);
  margin-bottom: 0.35rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border-gray);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: var(--font);
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ---------- Trust Bar ---------- */
.trust-bar {
  padding: 1.5rem 0;
  background: var(--white);
  border-bottom: 1px solid var(--border-gray);
}
.trust-bar__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem 3rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--mid-gray);
}
.trust-item svg { flex-shrink: 0; color: var(--red); }

/* ---------- Service Cards ---------- */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-gray);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--red);
}
.service-card__icon {
  width: 56px;
  height: 56px;
  background: rgba(196, 30, 36, 0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--red);
}
.service-card h3 { margin-bottom: 0.75rem; font-size: 1.25rem; }
.service-card p { color: var(--text-gray); font-size: 0.95rem; margin-bottom: 1.25rem; }
.service-card__price {
  font-size: 0.85rem;
  color: var(--text-gray);
  margin-bottom: 1rem;
}
.service-card__price strong { color: var(--red); font-size: 1.25rem; }
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--red);
}
.service-card__link:hover { gap: 0.6rem; }

/* ---------- Why Choose Us / USP ---------- */
.usp-card {
  text-align: center;
  padding: 1.5rem;
}
.usp-card__icon {
  width: 64px;
  height: 64px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--white);
}
.usp-card h4 { margin-bottom: 0.5rem; }
.usp-card p { color: var(--text-gray); font-size: 0.9rem; }

/* ---------- Process Steps ---------- */
.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  counter-reset: step;
}
.process-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  counter-increment: step;
}
.process-step__number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.25rem;
}
.process-step h4 { margin-bottom: 0.35rem; }
.process-step p { color: var(--text-gray); font-size: 0.95rem; }

@media (min-width: 768px) {
  .process-steps { grid-template-columns: 1fr 1fr; }
}

/* ---------- Testimonials ---------- */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-gray);
}
.testimonial-card__stars {
  color: #FFC107;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}
.testimonial-card blockquote {
  font-size: 1rem;
  color: var(--mid-gray);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
}
.testimonial-card__author {
  font-weight: 700;
  color: var(--black);
  font-size: 0.95rem;
}
.testimonial-card__source {
  font-size: 0.8rem;
  color: var(--text-gray);
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: var(--red);
  color: var(--white);
  padding: 3.5rem 0;
  text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p { color: rgba(255,255,255,0.9); margin-bottom: 2rem; font-size: 1.1rem; }
.cta-banner .btn-group { justify-content: center; }

/* ---------- FAQ ---------- */
.faq-item {
  border-bottom: 1px solid var(--border-gray);
  padding: 1.25rem 0;
}
.faq-item__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 700;
  color: var(--black);
  font-size: 1.05rem;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 0;
  font-family: var(--font);
}
.faq-item__question svg {
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item.active .faq-item__question svg { transform: rotate(180deg); }
.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  color: var(--text-gray);
  line-height: 1.7;
}
.faq-item.active .faq-item__answer {
  max-height: 500px;
  padding-top: 1rem;
}

/* ---------- Service Area ---------- */
.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.area-tag {
  background: var(--light-gray);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--mid-gray);
  transition: all var(--transition);
}
.area-tag:hover {
  background: var(--red);
  color: var(--white);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 1rem;
}
.footer h4 { color: var(--white); margin-bottom: 1rem; font-size: 1rem; text-transform: uppercase; letter-spacing: 0.05em; }
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}
.footer a { color: rgba(255,255,255,0.7); }
.footer a:hover { color: var(--white); }
.footer__links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer__links a { font-size: 0.95rem; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
}

@media (min-width: 768px) {
  .footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

/* ---------- Interior Page Hero ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 100%);
  color: var(--white);
  padding: 3rem 0;
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero h1 span { color: var(--red-light); }
.page-hero p { color: rgba(255,255,255,0.75); max-width: 600px; margin: 0 auto; }
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}
.breadcrumb a { color: rgba(255,255,255,0.5); }
.breadcrumb a:hover { color: var(--white); }

/* ---------- Content Blocks ---------- */
.content-block { margin-bottom: 2rem; }
.content-block h2 { margin-bottom: 1rem; }
.content-block h3 { margin-bottom: 0.75rem; }
.content-block ul { margin-left: 1rem; margin-bottom: 1rem; }
.content-block ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-gray);
}
.content-block ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
}

/* ---------- Sidebar ---------- */
.page-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 992px) {
  .page-layout { grid-template-columns: 2fr 1fr; }
}

.sidebar-box {
  background: var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 1.5rem;
}
.sidebar-box h4 { margin-bottom: 1rem; }
.sidebar-box--red {
  background: var(--red);
  color: var(--white);
}
.sidebar-box--red h4 { color: var(--white); }
.sidebar-box--red p { color: rgba(255,255,255,0.9); }
.sidebar-box--dark {
  background: var(--black);
  color: var(--white);
}
.sidebar-box--dark h4 { color: var(--white); }

/* ---------- Text + Image Section ---------- */
.text-image {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 768px) {
  .text-image { grid-template-columns: 1fr 1fr; }
  .text-image--reverse .text-image__content { order: 2; }
  .text-image--reverse .text-image__media { order: 1; }
}
.text-image__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--light-gray);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-gray);
  font-size: 0.9rem;
}
.text-image__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Photo Gallery ---------- */
.photo-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .photo-gallery { grid-template-columns: 1fr 1fr; }
  .photo-gallery--3 { grid-template-columns: 1fr 1fr 1fr; }
}
.photo-gallery__item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.photo-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.photo-gallery__item:hover img {
  transform: scale(1.03);
}
.photo-gallery__item--tall {
  aspect-ratio: 3/4;
}

/* ---------- Team Photo ---------- */
.team-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 700px;
  margin: 2rem auto 0;
  box-shadow: var(--shadow-lg);
}
.team-photo img {
  width: 100%;
  height: auto;
  display: block;
}

/* ---------- Page Hero with Background Image ---------- */
.hero--inspection {
  background: linear-gradient(135deg, rgba(11,11,11,0.85) 0%, rgba(26,26,26,0.82) 100%), url('../images/team-inspection.jpg') center/cover no-repeat;
}
.hero--pest {
  background: linear-gradient(135deg, rgba(11,11,11,0.85) 0%, rgba(26,26,26,0.82) 100%), url('../images/pest-control-spraying.jpg') center/cover no-repeat;
}
.hero--about {
  background: linear-gradient(135deg, rgba(11,11,11,0.85) 0%, rgba(26,26,26,0.82) 100%), url('../images/team-collaboration.jpg') center/cover no-repeat;
}
.hero--contact {
  background: linear-gradient(135deg, rgba(11,11,11,0.85) 0%, rgba(26,26,26,0.82) 100%), url('../images/technician-arriving.jpg') center/cover no-repeat;
}

/* ---------- Contact Form ---------- */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}
.contact-form h3 { margin-bottom: 1.5rem; }

/* ---------- Animations ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Spacing for sticky mobile CTA ---------- */
@media (max-width: 991px) {
  body { padding-bottom: 64px; }
}

/* ---------- Schema / Screen Reader ---------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ---------- Section Headers ---------- */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}
.section-header p { color: var(--text-gray); }
.section-header .label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

/* ---------- About Page: Content Grid ---------- */
.content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 768px) {
  .content-grid { grid-template-columns: 1.4fr 1fr; }
}
.content-grid p {
  color: var(--text-gray);
  margin-bottom: 1rem;
  line-height: 1.8;
}

/* Quote box */
.quote-box {
  background: var(--light-gray);
  border-left: 4px solid var(--red);
  border-radius: var(--radius);
  padding: 2rem;
}
.quote-box blockquote {
  font-style: italic;
  color: var(--mid-gray);
  font-size: 1.05rem;
  line-height: 1.75;
}

/* ---------- About Page: Values Cards ---------- */
.values-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.values-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.values-card__icon {
  width: 64px;
  height: 64px;
  background: rgba(196, 30, 36, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}
.values-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}
.values-card p {
  color: var(--text-gray);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ---------- About Page: Values List ---------- */
.values-list {
  max-width: 800px;
  margin: 0 auto;
}
.values-list-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border-gray);
}
.values-list-item:last-child { border-bottom: none; }
.values-list-item__number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
}
.values-list-item h4 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}
.values-list-item p {
  color: var(--text-gray);
  line-height: 1.7;
}

/* ---------- About Page: Difference Cards ---------- */
.difference-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .difference-cards { grid-template-columns: 1fr 1fr 1fr; }
}
.difference-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.difference-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.difference-card h3 {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}
.difference-card p {
  color: var(--text-gray);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ---------- About Page: Standards Grid ---------- */
.standard-item {
  background: var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.standard-item h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}
.standard-item p {
  color: var(--text-gray);
  font-size: 0.95rem;
  line-height: 1.7;
}
.standard-item ul {
  list-style: none;
  padding: 0;
}
.standard-item ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-gray);
  font-size: 0.95rem;
}
.standard-item ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
}

/* ---------- About Page: Team Content ---------- */
.team-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 768px) {
  .team-content { grid-template-columns: 1.4fr 1fr; }
}
.team-content h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}
.team-content p {
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 0.75rem;
}
.team-content ul {
  list-style: none;
  padding: 0;
}
.team-content ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-gray);
}
.team-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
}

.team-highlight {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.highlight-box {
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  text-align: center;
}
.highlight-number {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--red-light);
  margin-bottom: 0.25rem;
}
.highlight-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ---------- About Page: CTA Content ---------- */
.cta-content {
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
}
.cta-content h2 {
  margin-bottom: 1rem;
}
.cta-content p {
  color: var(--text-gray);
  margin-bottom: 2rem;
  line-height: 1.8;
}

/* ---------- Contact Page: Map Placeholder ---------- */
.map-placeholder {
  background: var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  text-align: center;
  color: var(--text-gray);
  border: 2px dashed var(--border-gray);
}

/* ---------- Utility: Grid 2 & 3 ---------- */
.grid {
  display: grid;
  gap: 1.5rem;
}
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
@media (min-width: 768px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr 1fr; }
}
