/* ============================================================
   รถยก.thai-dd.com — ช่างซ่อมรถใกล้ฉัน 24 ชม.
   Theme: Premium Red / Yellow / Gold
   Bulletproof Thai font stack
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { margin: 0; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

:root {
  /* Brand palette: Premium Red + Yellow Gold */
  --red-deep:       #8b0000;
  --red-main:       #c8102e;
  --red-bright:     #e63946;
  --red-soft:       #fce4e4;
  --yellow-deep:    #c9920a;
  --yellow-main:    #f4c10f;
  --yellow-light:   #ffd84d;
  --yellow-pale:    #fff8d4;
  --gold-main:      #d4a83a;

  --white:          #ffffff;
  --bg-cream:       #fffaf0;
  --bg-cream-soft:  #fff8e6;
  --bg-light:       #fcfcfc;
  --bg-dark:        #1a0707;
  --bg-dark-2:      #2a0e0e;
  --bg-overlay:     rgba(26,7,7,0.97);

  --text-main:      #1a0707;
  --text-body:      #3d1a1a;
  --text-muted:     #7a3535;
  --text-light:     rgba(255,255,255,0.85);
  --text-dim:       rgba(255,255,255,0.6);

  --line-green:     #06c755;
  --line-green-dk:  #05a647;

  --border-red:     rgba(200,16,46,0.3);
  --border-yellow:  rgba(244,193,15,0.4);

  --shadow-sm:      0 2px 10px rgba(200,16,46,0.08);
  --shadow-md:      0 6px 22px rgba(200,16,46,0.15);
  --shadow-lg:      0 14px 40px rgba(200,16,46,0.2);
  --shadow-red:     0 6px 20px rgba(200,16,46,0.4);
  --shadow-yellow:  0 6px 20px rgba(244,193,15,0.4);

  --container-max:  1200px;
  --radius-sm:      8px;
  --radius-md:      12px;
  --radius-lg:      16px;
  --radius-pill:    50px;

  /* Bulletproof Thai font stack */
  --font-thai: 'Prompt', 'Noto Sans Thai', 'Sarabun',
               'Sukhumvit Set', -apple-system, BlinkMacSystemFont,
               'Segoe UI', 'Tahoma', sans-serif;
}

html, body {
  font-family: var(--font-thai);
}
body {
  color: var(--text-body);
  background: var(--bg-cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
* { font-family: inherit; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-thai);
  font-weight: 800;
  line-height: 1.4;
  margin: 0 0 0.6em;
  color: var(--text-main);
}
h1 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 900; line-height: 1.3; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 900; }
h3 { font-size: clamp(1.05rem, 2vw, 1.3rem); font-weight: 700; }
h4 { font-size: 1.05rem; font-weight: 700; }

p { margin: 0 0 1em; line-height: 1.7; }
a:hover { color: var(--red-main); }

.container, .cb-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

.section { padding: 70px 20px; }
.section-white { background: var(--white); }
.section-cream { background: var(--bg-cream-soft); }
.section-dark {
  background: linear-gradient(160deg, var(--bg-dark) 0%, var(--bg-dark-2) 50%, var(--bg-dark) 100%);
  color: #fff;
}
.section-dark h2, .section-dark h3 { color: var(--yellow-light); }

.section-title { text-align: center; margin-bottom: 50px; }
.section-title .eyebrow {
  display: inline-block;
  color: var(--red-main);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.section-title h2 { margin: 0 0 12px; }
.section-title p {
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
  font-size: 1rem;
}
.section-dark .section-title p { color: var(--text-light); }
.accent { color: var(--red-main); }
.section-dark .accent { color: var(--yellow-light); }
.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--red-main), var(--yellow-main));
  margin: 14px auto 0;
  border-radius: 2px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  font-weight: 800;
  font-size: 0.95rem;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  font-family: var(--font-thai);
  line-height: 1.2;
  transition: transform .25s, box-shadow .25s, background .25s, color .25s;
}
.btn-red {
  background: linear-gradient(135deg, var(--red-main), var(--red-bright));
  color: #fff;
  box-shadow: var(--shadow-red);
}
.btn-red:hover {
  background: linear-gradient(135deg, var(--red-deep), var(--red-main));
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(200,16,46,0.55);
}
.btn-red-large {
  padding: 16px 36px;
  font-size: 1.05rem;
  background: linear-gradient(135deg, var(--red-main), var(--red-bright));
  color: #fff;
  border-radius: var(--radius-pill);
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  box-shadow: var(--shadow-red);
}
.btn-yellow {
  background: linear-gradient(135deg, var(--yellow-main), var(--yellow-light));
  color: var(--text-main);
  box-shadow: var(--shadow-yellow);
}
.btn-yellow:hover {
  background: linear-gradient(135deg, var(--yellow-deep), var(--yellow-main));
  color: var(--text-main);
  transform: translateY(-2px);
}
.btn-line {
  background: var(--line-green);
  color: #fff;
}
.btn-line:hover { background: var(--line-green-dk); color: #fff; transform: translateY(-2px); }
.btn-line-large {
  padding: 16px 36px;
  font-size: 1.05rem;
  background: var(--line-green);
  color: #fff;
  border-radius: var(--radius-pill);
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.btn-outline {
  background: transparent;
  color: var(--red-main);
  border: 2px solid var(--red-main);
}
.btn-outline:hover {
  background: var(--red-main);
  color: #fff;
}
.section-dark .btn-outline {
  color: var(--yellow-light);
  border-color: var(--yellow-light);
}
.btn-sm { padding: 9px 18px; font-size: 0.82rem; }

/* ── Navbar ── */
.cb-navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--red-main);
  transition: box-shadow .3s;
}
.cb-navbar.scrolled { box-shadow: 0 4px 22px rgba(200,16,46,0.15); }
.cb-navbar-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.cb-brand { display: flex; align-items: center; gap: 10px; }
.cb-brand img {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--red-main);
}
.cb-brand-name {
  color: var(--red-deep);
  font-weight: 800;
  font-size: 1rem;
  line-height: 1.1;
}
.cb-brand-tag {
  color: var(--text-muted);
  font-size: 0.7rem;
}
.cb-nav-links { display: none; gap: 6px; }
.cb-nav-links a {
  color: var(--text-body);
  font-size: 0.85rem;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: background .2s, color .2s;
}
.cb-nav-links a:hover {
  background: var(--red-soft);
  color: var(--red-main);
}
.cb-nav-cta { display: flex; gap: 8px; }

/* ── Hero ── */
.cb-hero {
  min-height: 100vh;
  background: linear-gradient(160deg, #fff 0%, var(--yellow-pale) 50%, var(--red-soft) 100%);
  display: flex;
  align-items: center;
  padding: 100px 20px 60px;
  position: relative;
  overflow: hidden;
}
.cb-hero::before, .cb-hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.cb-hero::before {
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(200,16,46,0.18) 0%, transparent 65%);
}
.cb-hero::after {
  bottom: -50px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(244,193,15,0.18) 0%, transparent 65%);
}
.cb-hero-grid {
  max-width: var(--container-max);
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
.cb-hero h1 {
  color: var(--text-main);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin: 0 0 16px;
  line-height: 1.3;
}
.cb-hero h1 .accent { color: var(--red-main); }
.cb-hero h1 .hero-sub {
  display: block;
  margin-top: 8px;
  font-size: 0.55em;
  color: var(--text-muted);
  font-weight: 700;
}
.cb-hero-lead {
  color: var(--text-body);
  font-size: 1.05rem;
  margin: 0 0 28px;
  border-left: 3px solid var(--red-main);
  padding-left: 14px;
  max-width: 520px;
}
.cb-hero-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 3px solid var(--yellow-main);
  box-shadow: 0 20px 60px rgba(200,16,46,0.25);
  aspect-ratio: 1/1;
}
.cb-hero-img img {
  width: 100%; height: 100%; object-fit: cover;
}
.cb-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(90deg, var(--red-main), var(--yellow-main));
  color: #fff;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 20px;
  box-shadow: var(--shadow-red);
}
.cb-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}
.cb-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.cb-hero-stat-num {
  color: var(--red-main);
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1.1;
}
.cb-hero-stat-label {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* ── Trust Strip ── */
.trust-strip {
  background: var(--white);
  padding: 50px 20px;
  border-top: 1px solid var(--border-red);
  border-bottom: 1px solid var(--border-red);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  text-align: center;
}
.trust-item { padding: 20px; }
.trust-icon { font-size: 2.4rem; margin-bottom: 10px; }
.trust-item h4 {
  color: var(--red-deep);
  margin: 0 0 6px;
  font-size: 1rem;
}
.trust-item p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.5;
}

/* ── Service Cards ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-red);
  box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--red-main);
}
.service-card-img {
  aspect-ratio: 1/1;
  overflow: hidden;
}
.service-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.service-card:hover .service-card-img img { transform: scale(1.05); }
.service-card-body { padding: 22px; }
.service-card h3 {
  margin: 0 0 10px;
  color: var(--text-main);
}
.service-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin: 0 0 14px;
}
.service-card .more {
  color: var(--red-main);
  font-weight: 700;
  font-size: 0.88rem;
}
.service-card .more:hover { color: var(--red-deep); }

/* ── Process ── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.process-step {
  background: rgba(255,255,255,0.05);
  padding: 28px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-yellow);
  text-align: center;
}
.process-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red-main), var(--yellow-main));
  color: #fff;
  font-size: 1.3rem;
  font-weight: 900;
  margin-bottom: 14px;
  box-shadow: var(--shadow-red);
}
.process-step h3 {
  color: var(--yellow-light);
  font-size: 1.05rem;
  margin: 0 0 8px;
}
.process-step p {
  color: var(--text-light);
  font-size: 0.88rem;
  margin: 0;
}

/* ── Promo ── */
.promo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
.promo-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 3px solid var(--yellow-main);
  box-shadow: var(--shadow-md);
  aspect-ratio: 1/1;
}
.promo-img img { width: 100%; height: 100%; object-fit: cover; }
.promo-text .eyebrow {
  display: inline-block;
  color: var(--red-main);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.promo-text h2 { margin: 0 0 16px; color: var(--text-main); }
.check-list {
  list-style: none;
  padding: 0;
  margin: 18px 0;
}
.check-list li {
  padding: 6px 0;
  color: var(--text-body);
  font-size: 0.95rem;
}
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }

/* ── Gallery ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
}
.gallery-item {
  aspect-ratio: 1/1;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-red);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform .3s, border-color .3s, box-shadow .3s;
}
.gallery-item:hover {
  transform: translateY(-3px);
  border-color: var(--red-main);
  box-shadow: var(--shadow-md);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.gallery-item:hover img { transform: scale(1.08); }

/* ── Calculator ── */
.calc-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--red-main);
  max-width: 760px;
  margin: 0 auto;
}
.calc-wrap h3 {
  margin: 0 0 8px;
  color: var(--red-deep);
  font-size: 1.3rem;
}
.calc-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 20px 0;
}
.calc-field label {
  display: block;
  font-weight: 700;
  color: var(--text-main);
  font-size: 0.9rem;
  margin-bottom: 6px;
}
.calc-field input,
.calc-field select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border-red);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: var(--font-thai);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
}
.calc-field input:focus,
.calc-field select:focus {
  outline: none;
  border-color: var(--red-main);
  box-shadow: 0 0 0 3px rgba(200,16,46,0.15);
}
.calc-result {
  margin-top: 20px;
  padding: 22px;
  background: linear-gradient(135deg, var(--bg-cream), var(--yellow-pale));
  border: 2px solid var(--red-main);
  border-radius: var(--radius-md);
}
.calc-note {
  margin-top: 14px;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ── Knowledge ── */
.knowledge-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.knowledge-card {
  background: var(--white);
  padding: 28px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-red);
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.knowledge-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--red-main);
}
.knowledge-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--red-main);
  margin-bottom: 8px;
  line-height: 1;
}
.knowledge-card h3 {
  font-size: 1.05rem;
  margin: 0 0 10px;
  color: var(--text-main);
}
.knowledge-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin: 0;
  line-height: 1.65;
}

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--red-deep) 0%, var(--red-main) 50%, var(--yellow-main) 100%);
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}
.cta-banner h2 {
  color: #fff;
  margin: 0 0 14px;
}
.cta-banner p {
  color: rgba(255,255,255,0.9);
  max-width: 680px;
  margin: 0 auto 26px;
  font-size: 1.05rem;
}
.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-banner .btn-red-large {
  background: #fff;
  color: var(--red-deep);
}
.cta-banner .btn-red-large:hover {
  background: var(--text-main);
  color: var(--yellow-light);
}

/* ── Reviews ── */
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.review-card {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-red);
  box-shadow: var(--shadow-sm);
}
.review-stars {
  color: var(--yellow-main);
  letter-spacing: 2px;
  margin-bottom: 10px;
  font-size: 1.1rem;
}
.review-text {
  color: var(--text-body);
  font-size: 0.95rem;
  margin: 0 0 20px;
  line-height: 1.7;
  font-style: italic;
}
.review-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--red-main);
  flex-shrink: 0;
}
.review-avatar img { width: 100%; height: 100%; object-fit: cover; }
.review-name {
  display: block;
  color: var(--text-main);
  font-weight: 700;
  font-size: 0.95rem;
}
.review-place {
  color: var(--text-muted);
  font-size: 0.82rem;
}

/* ── Articles ── */
.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.article-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-red);
  transition: transform .3s, box-shadow .3s;
}
.article-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.article-img {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.article-img img { width: 100%; height: 100%; object-fit: cover; }
.article-body { padding: 20px; }
.article-tag {
  display: inline-block;
  background: var(--red-soft);
  color: var(--red-deep);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.article-card h3 {
  font-size: 1.05rem;
  margin: 0 0 8px;
  line-height: 1.45;
}
.article-card h3 a { color: var(--text-main); }
.article-card h3 a:hover { color: var(--red-main); }
.article-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

/* ── FAQ ── */
.faq-list { max-width: 860px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border-red);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.faq-q {
  width: 100%;
  padding: 18px 22px;
  background: none;
  text-align: left;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-main);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-thai);
  transition: background .2s, color .2s;
}
.faq-q:hover {
  background: var(--red-soft);
  color: var(--red-deep);
}
.faq-q .toggle {
  color: var(--red-main);
  font-size: 1.4rem;
  font-weight: 700;
  margin-left: 14px;
  transition: transform .3s;
}
.faq-item.open .toggle { transform: rotate(45deg); }
.faq-a {
  display: none;
  padding: 0 22px 18px;
  color: var(--text-body);
  font-size: 0.92rem;
  line-height: 1.8;
}

/* ── Provinces ── */
.region-block { margin-bottom: 36px; }
.region-title {
  color: var(--yellow-light);
  font-size: 1.1rem;
  font-weight: 800;
  margin: 0 0 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--yellow-main);
  text-align: center;
}
.prov-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.prov-pill {
  display: inline-block;
  background: rgba(200,16,46,0.18);
  border: 1.5px solid var(--red-main);
  color: #fff;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 600;
  transition: all .2s;
}
.prov-pill:hover {
  background: var(--red-main);
  color: #fff;
  transform: translateY(-1px);
}

/* ── Footer ── */
.cb-footer {
  background: var(--text-main);
  color: var(--text-light);
  padding: 55px 20px 25px;
  border-top: 4px solid var(--red-main);
}
.cb-footer-grid {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 36px;
  margin-bottom: 30px;
}
.cb-footer h3, .cb-footer h4 { color: var(--yellow-light); }
.cb-footer h3 { font-size: 1.25rem; margin: 0 0 12px; }
.cb-footer h4 { font-size: 1rem; margin: 0 0 14px; }
.cb-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cb-footer-links li { margin-bottom: 8px; }
.cb-footer-links a {
  color: var(--text-light);
  font-size: 0.9rem;
  opacity: 0.8;
  transition: opacity .2s, color .2s;
}
.cb-footer-links a:hover {
  color: var(--yellow-light);
  opacity: 1;
}
.contact-info p { margin: 6px 0; font-size: 0.9rem; }
.contact-info a { color: var(--yellow-light); }
.contact-info a:hover { color: var(--red-bright); }
.cb-footer-bottom {
  max-width: var(--container-max);
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 22px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* ── Float CTA ── */
.float-cta {
  display: none;
  position: fixed;
  bottom: 18px;
  left: 18px;
  right: 18px;
  z-index: 999;
  gap: 10px;
}
.float-cta .btn {
  flex: 1;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* ── Lightbox ── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  padding: 30px;
}
.lightbox.active { display: flex; }
.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  border-radius: var(--radius-md);
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  color: #fff;
  font-size: 2rem;
  background: none;
  cursor: pointer;
}

/* ── Responsive ── */
@media (min-width: 768px) {
  .cb-hero-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
  .cb-nav-links { display: flex; }
  .promo-grid { grid-template-columns: 1fr 1.3fr; }
}
@media (min-width: 1024px) {
  .section { padding: 90px 20px; }
}
@media (max-width: 767px) {
  body { padding-bottom: 80px; }
  .cb-hero { min-height: auto; padding: 90px 18px 50px; }
  .cb-hero h1 { font-size: 1.6rem; }
  .cb-hero-stats { gap: 16px; }
  .cb-hero-stat-num { font-size: 1.5rem; }
  .section { padding: 50px 18px; }
  .calc-form { grid-template-columns: 1fr; }
  .calc-wrap { padding: 22px; }
  .float-cta { display: flex; }
  .cb-nav-links { display: none; }
  .cb-brand-tag { display: none; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Print ── */
@media print {
  .cb-navbar, .float-cta, .cb-hero-cta, .cta-buttons { display: none !important; }
  body { background: #fff; color: #000; }
}
