/* =============================================
   Mid-County Collision — Shared Stylesheet
   COLOR PALETTE: Charcoal + Deep Red
   ============================================= */

/* --- Variables --- */
:root {
  --primary:  #1e2327;
  --accent:   #ba0000;
  --gold:     #f5a623;
  --light:    #f5f3ef;
  --white:    #ffffff;
  --dark:     #1a1a1a;
  --gray:     #6b7280;
  --border:   #e5e7eb;
  --shadow:   0 2px 20px rgba(0,0,0,0.08);
  --radius:   6px;
}

/* --- Reset --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Segoe UI', Arial, sans-serif; color: var(--dark); line-height: 1.6; }
img { max-width: 100%; display: block; }
a { color: inherit; }

/* =============================================
   ANNOUNCEMENT BAR
   ============================================= */
.announcement-bar {
  background: var(--accent);
  color: var(--white);
  text-align: center;
  padding: 9px 20px;
  font-size: 0.88rem;
  font-weight: 500;
}
.announcement-bar a {
  color: var(--white);
  font-weight: 700;
  text-decoration: underline;
  margin-left: 8px;
}

/* =============================================
   HEADER / NAV
   ============================================= */
header {
  background: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 999;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}

.logo {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
  text-decoration: none;
  letter-spacing: -0.3px;
  line-height: 1.2;
}
.logo span { color: var(--accent); }
.logo small { display: block; font-size: 0.65rem; font-weight: 400; color: var(--gray); letter-spacing: 1.5px; text-transform: uppercase; }

header nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 28px;
}
header nav ul li a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  font-size: 0.92rem;
  transition: color 0.2s;
}
header nav ul li a:hover { color: var(--accent); }
header nav ul li a.nav-cta {
  background: var(--accent);
  color: var(--white);
  padding: 9px 22px;
  border-radius: var(--radius);
  font-weight: 700;
}
header nav ul li a.nav-cta:hover { background: #960000; color: var(--white); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span { width: 24px; height: 2px; background: var(--dark); display: block; border-radius: 2px; transition: all 0.3s; }

/* Mobile Nav */
.mobile-nav {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--border);
}
.mobile-nav.open { display: block; }
.mobile-nav ul { list-style: none; padding: 8px 24px 20px; }
.mobile-nav ul li { padding: 12px 0; border-bottom: 1px solid var(--border); }
.mobile-nav ul li:last-child { border-bottom: none; }
.mobile-nav ul li a { text-decoration: none; color: var(--dark); font-weight: 500; font-size: 0.95rem; }

/* =============================================
   HERO
   ============================================= */
.hero {
  background: #1a1e22;
  color: var(--white);
  padding: 100px 24px 90px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(17,20,24,0.45) 0%, rgba(30,35,39,0.35) 55%, rgba(37,45,52,0.30) 100%),
    url('Assets/images/mid-county-collision-header.webp') center/cover no-repeat;
  opacity: 1;
}
.hero-inner {
  max-width: 720px;
  position: relative;
  z-index: 1;
  text-align: center;
  margin: 0 auto;
}
.hero-eyebrow {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: 4px 14px;
  border-radius: 30px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.65), 0 1px 3px rgba(0,0,0,0.55);
}
.hero h1 em { color: var(--gold); font-style: normal; }
.hero p {
  font-size: 1.1rem;
  opacity: 0.88;
  max-width: 560px;
  margin: 0 auto 38px;
  line-height: 1.75;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: 14px 32px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: background 0.2s, transform 0.1s;
}
.btn-primary:hover { background: #960000; transform: translateY(-1px); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--white);
  padding: 14px 32px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid rgba(255,255,255,0.55);
  transition: all 0.2s;
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.8); }

.btn-white {
  display: inline-block;
  background: #ffffff;
  color: #111418;
  padding: 14px 32px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid #ffffff;
  transition: all 0.2s;
  box-shadow: 0 2px 10px rgba(0,0,0,0.25);
}
.btn-white:hover { background: #f1f1f1; transform: translateY(-1px); }

/* Hero stats strip */
.hero-stats {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 18px;
  margin-top: 55px;
  flex-wrap: nowrap;
  justify-content: center;
}
.hero-stat {
  border: 1px solid rgba(255,255,255,0.45);
  background: rgba(17,20,24,0.45);
  border-radius: var(--radius);
  padding: 16px 12px;
  flex: 1;
  min-width: 0;
  text-align: center;
}
.hero-stat strong { display: block; font-size: 1.8rem; font-weight: 800; color: var(--gold); text-shadow: 0 1px 8px rgba(0,0,0,0.6); }
.hero-stat span { font-size: 0.82rem; color: #ffffff; text-transform: uppercase; letter-spacing: 1px; text-shadow: 0 1px 8px rgba(0,0,0,0.7); }

/* =============================================
   HERO INTRO STRIP
   ============================================= */
.hero-intro-strip {
  background: linear-gradient(135deg, #111418, #1e2327);
  padding: 28px 24px;
  text-align: center;
}
.hero-intro-strip p {
  max-width: 860px;
  margin: 0 auto;
  color: #ffffff;
  font-size: 1.08rem;
  line-height: 1.7;
}

/* =============================================
   SECTION BASE
   ============================================= */
.section { padding: 80px 24px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-header { margin-bottom: 50px; }
.section-label {
  display: inline-block;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 15px;
}
.section-sub { color: var(--gray); font-size: 1rem; max-width: 580px; line-height: 1.75; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }

/* =============================================
   ABOUT SECTION
   ============================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.about-img {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0,0,0,0.15);
  position: relative;
}
.about-img img { width: 100%; height: 430px; object-fit: cover; }
.about-img-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--accent);
  color: var(--white);
  padding: 14px 20px;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 1rem;
  line-height: 1.3;
}
.about-img-badge small { display: block; font-size: 0.75rem; font-weight: 400; opacity: 0.85; }
.about-content p { color: var(--gray); line-height: 1.85; margin-bottom: 18px; }
.about-features { list-style: none; padding: 0; margin-top: 30px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.about-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--primary);
}
.about-feat::before { content: '✓'; color: var(--accent); font-weight: 900; font-size: 1rem; }

/* =============================================
   WHY CHOOSE US
   ============================================= */
.why-bg { background: var(--light); }
.why-grid {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-grid > li { display: flex; }
.why-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: var(--white);
  border-radius: 10px;
  padding: 36px 24px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s;
  border-top: 3px solid transparent;
}
.why-card:hover { transform: translateY(-6px); box-shadow: 0 12px 35px rgba(0,0,0,0.12); border-top-color: var(--accent); }
.why-icon { font-size: 2.6rem; margin-bottom: 16px; }
.why-card h3 { font-size: 1.05rem; color: var(--primary); font-weight: 700; margin-bottom: 10px; }
.why-card p { color: var(--gray); font-size: 0.88rem; line-height: 1.7; }

/* =============================================
   SERVICES PREVIEW
   ============================================= */
.services-grid {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.services-grid > li { display: flex; }
.service-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
}
.service-card:hover { transform: translateY(-5px); box-shadow: 0 12px 35px rgba(0,0,0,0.12); }
.service-card-img { height: 190px; overflow: hidden; background: var(--primary); flex-shrink: 0; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.service-card:hover .service-card-img img { transform: scale(1.06); }
.service-card-body { flex: 1; display: flex; flex-direction: column; padding: 26px; }
.service-card-body .icon { font-size: 1.6rem; margin-bottom: 10px; }
.service-card-body h3 { color: var(--primary); font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.service-card-body p { color: var(--gray); font-size: 0.88rem; line-height: 1.7; margin-top: auto; }

/* =============================================
   GALLERY
   ============================================= */
.gallery-grid {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  cursor: pointer;
  outline-offset: 3px;
}
.gallery-item:focus-visible { outline: 3px solid var(--accent); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; display: block; }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 24, 28, 0.55);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item:hover .overlay { opacity: 1; }
.gallery-zoom-icon {
  display: block;
  width: 44px;
  height: 44px;
  border: 2.5px solid #fff;
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cline x1='16.5' y1='16.5' x2='22' y2='22'/%3E%3Cline x1='11' y1='8' x2='11' y2='14'/%3E%3Cline x1='8' y1='11' x2='14' y2='11'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 22px;
}

/* =============================================
   LIGHTBOX
   ============================================= */
body.lb-lock { overflow: hidden; }

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(10, 12, 14, 0.96);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 20px 10px;
  gap: 14px;
  animation: lbFadeIn 0.22s ease;
}
.lightbox.open { display: flex; }

@keyframes lbFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.lb-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 0;
  width: 100%;
}

.lb-img {
  max-width: 100%;
  max-height: calc(100vh - 220px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 6px;
  display: block;
  box-shadow: 0 8px 48px rgba(0,0,0,0.7);
  transition: opacity 0.18s;
}

.lb-caption {
  color: rgba(255,255,255,0.65);
  font-size: 0.82rem;
  text-align: center;
  margin: 0;
  max-width: 600px;
}

/* Nav buttons */
.lb-close,
.lb-nav {
  position: fixed;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  line-height: 1;
  font-family: inherit;
}
.lb-close:hover, .lb-nav:hover { background: var(--accent); border-color: var(--accent); }

.lb-close {
  top: 16px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9010;
}

.lb-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9010;
}
.lb-prev { left: 16px; }
.lb-next { right: 16px; }
.lb-nav:hover { transform: translateY(-50%) scale(1.08); }

/* Thumbnail strip */
.lb-thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 6px 4px 10px;
  max-width: 100%;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.2) transparent;
}
.lb-thumbs::-webkit-scrollbar { height: 4px; }
.lb-thumbs::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.2); border-radius: 2px; }

.lb-thumb {
  flex-shrink: 0;
  width: 70px;
  height: 52px;
  border-radius: 4px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  padding: 0;
  background: none;
  opacity: 0.55;
  transition: opacity 0.2s, border-color 0.2s;
}
.lb-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lb-thumb:hover { opacity: 0.85; }
.lb-thumb.active { border-color: var(--accent); opacity: 1; }

/* =============================================
   REVIEWS
   ============================================= */
.reviews-bg { background: var(--primary); }
.reviews-bg .section-title { color: var(--white); }
.reviews-bg .section-sub { color: rgba(255,255,255,0.65); }
.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 8px 18px;
  border-radius: 30px;
  color: var(--white);
  font-size: 0.9rem;
  margin-bottom: 30px;
}
.rating-badge strong { font-size: 1.1rem; }
.stars-gold { color: var(--gold); }
.reviews-grid { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.reviews-grid > li { display: flex; }
.review-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 30px;
  transition: background 0.2s;
}
.review-card:hover { background: rgba(255,255,255,0.11); }
.review-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 14px; }
.review-text { flex: 1; color: rgba(255,255,255,0.85); font-size: 0.92rem; line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--white);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.reviewer-name { font-weight: 700; color: var(--white); font-size: 0.9rem; }
.reviewer-source { font-size: 0.78rem; color: rgba(255,255,255,0.5); }

.btn-review {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.35);
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
  letter-spacing: 0.2px;
}
.btn-review:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-1px);
}

/* =============================================
   CONTACT SECTION
   ============================================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: start; }
.contact-info h3 { color: var(--primary); font-size: 1.6rem; font-weight: 800; margin-bottom: 12px; }
.contact-info > p { color: var(--gray); margin-bottom: 30px; line-height: 1.75; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 22px; }
.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(232,96,10,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  color: var(--accent);
}
.contact-item-text strong { display: block; color: var(--primary); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 3px; }
.contact-item-text a { color: var(--gray); text-decoration: none; font-size: 0.95rem; }
.contact-item-text a:hover { color: var(--accent); }
.contact-item-text span { color: var(--gray); font-size: 0.95rem; }

.contact-form-box {
  background: var(--white);
  border-radius: 10px;
  padding: 42px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.1);
}
.contact-form-box h3 { color: var(--primary); font-size: 1.3rem; font-weight: 800; margin-bottom: 6px; }
.contact-form-box p { color: var(--gray); font-size: 0.88rem; margin-bottom: 28px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 600; font-size: 0.85rem; color: var(--primary); margin-bottom: 6px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: inherit;
  background: var(--white);
  color: var(--dark);
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
}
.form-group textarea { height: 125px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.btn-submit {
  width: 100%;
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 14px;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  font-family: inherit;
}
.btn-submit:hover { background: #960000; transform: translateY(-1px); }

/* =============================================
   FAQ
   ============================================= */
.faq-inner { list-style: none; padding: 0; max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-family: inherit;
}
.faq-arrow { font-size: 1.1rem; color: var(--accent); transition: transform 0.25s; flex-shrink: 0; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a { display: none; padding-bottom: 22px; color: var(--gray); line-height: 1.8; font-size: 0.95rem; }
.faq-item.open .faq-a { display: block; }

/* =============================================
   HOURS TABLE
   ============================================= */
.hours-table { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
.hours-table tr { border-bottom: 1px solid var(--border); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td { padding: 10px 0; color: var(--gray); }
.hours-table td:first-child { font-weight: 600; color: var(--dark); }
.hours-open { color: #16a34a !important; font-weight: 600 !important; }
.hours-closed { color: #dc2626 !important; }

/* =============================================
   INSURANCE LOGOS STRIP
   ============================================= */
.insurance-strip { background: var(--light); padding: 40px 24px; }
.insurance-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.insurance-inner p { color: var(--gray); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 28px; font-weight: 600; }
.insurance-logos { list-style: none; padding: 0; display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.insurance-logos li {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  opacity: 0.6;
  transition: opacity 0.2s;
  letter-spacing: 0.5px;
}
.insurance-logos li:hover { opacity: 1; }

/* =============================================
   PAGE HERO (Inner Pages)
   ============================================= */
.page-hero {
  background: linear-gradient(135deg, #111418, #1e2327);
  color: var(--white);
  padding: 75px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('Assets/images/mid-county-collision-header.webp') center/cover no-repeat;
  opacity: 0.08;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; margin-bottom: 12px; }
.page-hero p { font-size: 1.05rem; opacity: 0.8; max-width: 480px; margin: 0 auto; }
.breadcrumb { font-size: 0.82rem; color: rgba(255,255,255,0.55); margin-bottom: 16px; }
.breadcrumb a { color: rgba(255,255,255,0.55); text-decoration: none; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { margin: 0 7px; }

/* =============================================
   POLICY PAGES (Privacy Policy / Terms of Use)
   ============================================= */
.policy-wrap {
  max-width: 820px;
  margin: 0 auto;
}
.policy-wrap .policy-meta {
  font-size: 0.83rem;
  color: var(--gray);
  margin-bottom: 48px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.policy-wrap h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin: 44px 0 12px;
}
.policy-wrap h2:first-of-type { margin-top: 0; }
.policy-wrap p {
  color: #374151;
  line-height: 1.8;
  margin-bottom: 14px;
}
.policy-wrap ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}
.policy-wrap ul li {
  padding: 6px 0 6px 22px;
  position: relative;
  color: #374151;
  line-height: 1.7;
}
.policy-wrap ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}
.policy-wrap a {
  color: var(--accent);
  text-decoration: none;
}
.policy-wrap a:hover { text-decoration: underline; }
.policy-section {
  border-bottom: 1px solid var(--border);
  padding-bottom: 32px;
  margin-bottom: 0;
}
.policy-section:last-child { border-bottom: none; }

/* =============================================
   CALL TO ACTION BANNER
   ============================================= */
.cta-banner {
  background: var(--accent);
  color: var(--white);
  padding: 55px 24px;
  text-align: center;
}
.cta-banner h2 { font-size: 2rem; font-weight: 800; margin-bottom: 12px; }
.cta-banner p { opacity: 0.88; margin-bottom: 28px; font-size: 1.05rem; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-white {
  display: inline-block;
  background: var(--white);
  color: var(--accent);
  padding: 13px 30px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.2s;
}
.btn-white:hover { transform: translateY(-2px); }
.btn-outline-white {
  display: inline-block;
  background: transparent;
  color: var(--white);
  padding: 13px 30px;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,0.6);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.2s;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); }

/* =============================================
   FOOTER
   ============================================= */
footer { background: #141719; }
.footer-top { padding: 65px 24px 50px; }
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: 45px;
}
.footer-brand .logo { color: var(--white); font-size: 1.2rem; }
.footer-brand .logo span { color: var(--accent); }
.footer-brand p { margin-top: 16px; color: rgba(255,255,255,0.5); font-size: 0.88rem; line-height: 1.8; }
.footer-col h4 {
  color: var(--white);
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--accent); }
.footer-contact-row { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.footer-contact-row a,
.footer-contact-row span { color: rgba(255,255,255,0.5); font-size: 0.88rem; text-decoration: none; line-height: 1.6; }
.footer-contact-row a:hover { color: var(--accent); }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.07); margin: 0 24px; }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p { color: rgba(255,255,255,0.3); font-size: 0.82rem; }
.footer-bottom a { color: rgba(255,255,255,0.4); text-decoration: none; font-size: 0.82rem; }
.footer-bottom a:hover { color: var(--accent); }
.footer-bottom-links { list-style: none; padding: 0; display: flex; gap: 20px; }

/* =============================================
   ABOUT PAGE SPECIFICS
   ============================================= */
.timeline { list-style: none; padding-left: 30px; position: relative; border-left: 2px solid var(--border); }
.timeline-item { margin-bottom: 35px; position: relative; }
.timeline-item::before {
  content: '';
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
  position: absolute;
  left: -37px;
  top: 6px;
}
.timeline-year { font-weight: 800; color: var(--accent); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.timeline-item h3 { color: var(--primary); font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.timeline-item p { color: var(--gray); font-size: 0.9rem; line-height: 1.7; }

/* Stats / At a Glance grid */
.stats-grid {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1.1;
}
.stat-label {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 8px;
}
@media (max-width: 640px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .stat-number { font-size: 2.2rem; }
}

.values-grid { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.values-grid > li { display: flex; }
.value-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: var(--light);
  border-radius: 10px;
  padding: 30px 26px;
  border-left: 4px solid var(--accent);
}
.value-card .icon { font-size: 2rem; margin-bottom: 14px; }
.value-card h3 { color: var(--primary); font-weight: 700; margin-bottom: 10px; font-size: 1.05rem; }
.value-card p { color: var(--gray); font-size: 0.88rem; line-height: 1.7; }

/* =============================================
   SERVICES PAGE SPECIFICS
   ============================================= */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid var(--border);
}
.service-detail:last-child { border-bottom: none; }
.service-detail.reverse { direction: rtl; }
.service-detail.reverse > * { direction: ltr; }
.service-detail-img { border-radius: 10px; overflow: hidden; box-shadow: 0 10px 40px rgba(0,0,0,0.12); }
.service-detail-img img { width: 100%; height: 340px; object-fit: cover; }
.service-detail-content h2 { color: var(--primary); font-size: 1.6rem; font-weight: 800; margin-bottom: 16px; }
.service-detail-content p { color: var(--gray); line-height: 1.85; margin-bottom: 16px; font-size: 0.95rem; }
.service-list { list-style: none; margin-top: 20px; }
.service-list li { padding: 7px 0; color: var(--gray); font-size: 0.92rem; display: flex; align-items: center; gap: 10px; }
.service-list li::before { content: '→'; color: var(--accent); font-weight: 700; }

/* =============================================
   CONTACT PAGE SPECIFICS
   ============================================= */
.map-embed { border-radius: 10px; overflow: hidden; box-shadow: var(--shadow); }
.map-embed iframe { width: 100%; height: 380px; border: none; display: block; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 35px; }
  .service-detail { grid-template-columns: 1fr; gap: 30px; }
  .service-detail.reverse { direction: ltr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 60px 20px; }
  header nav { display: none; }
  .hamburger { display: flex; }
  .reviews-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .hero-stat { text-align: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .about-features { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .contact-form-box { padding: 28px 20px; }
  .cta-btns { flex-direction: column; align-items: center; }
  .lb-nav { width: 36px; height: 36px; font-size: 1.4rem; }
  .lb-prev { left: 6px; }
  .lb-next { right: 6px; }
  .lb-thumb { width: 54px; height: 40px; }
  .lb-img { max-height: calc(100vh - 200px); }
}
