/* ============================================
   Bob Rohrman Collision Repair Center
   Modern Collision Center Website
   ============================================ */

/* --- CSS Custom Properties ---
   Unified design tokens. Button system below uses ONLY these.
   Do not introduce new colors via inline styles — extend this block instead.
*/
:root {
  --primary: #2D2D2D;
  --primary-light: #3D3D3D;
  --accent: #E8912D;            /* Brand orange — single primary CTA color */
  --accent-hover: #D07A1F;
  --accent-light: #FFF3E6;
  /* Purdue co-brand (only for Purdue-themed surfaces) */
  --purdue-gold: #CFB991;
  --purdue-black: #000000;
  /* Aliases (kept for backwards-compat; new code should use --accent) */
  --gold: #E8912D;
  --gold-hover: #D07A1F;
  --text: #333333;
  --text-light: #777777;
  --text-white: #F8FAFC;
  --bg: #FFFFFF;
  --bg-light: #F5F5F5;
  --bg-dark: #2D2D2D;
  --border: #EEEEEE;
  --shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.1), 0 4px 6px rgba(0,0,0,0.05);
  --shadow-xl: 0 20px 25px rgba(0,0,0,0.1), 0 10px 10px rgba(0,0,0,0.04);
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --transition: all 0.3s ease;
  --max-width: 1200px;
  --header-height: 80px;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul, ol {
  list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }

p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

/* --- Layout --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section-dark {
  background: var(--bg-dark);
  color: var(--text-white);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--text-white);
}

.section-dark p {
  color: #CBD5E1;
}

.section-light {
  background: var(--bg-light);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header .label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* --- Grid System --- */
.grid {
  display: grid;
  gap: 2rem;
}

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

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* === Unified Button System ===
   Use one of these classes per CTA. Do not override colors inline.

   Hierarchy (one .btn-primary per viewport ideally):
   .btn-primary    Highest-conversion action (orange filled, white text)
   .btn-secondary  Supporting action on dark/colored backgrounds (white outline)
   .btn-outline-gold  Supporting action on light backgrounds (orange outline)
   .btn-tertiary   Low-priority text link with arrow (no background, no border)
   .btn-purdue     Purdue co-brand variant (black + Old Gold) — only on Purdue surfaces

   Sizes:
   .btn-lg   Hero / banner
   (default) In-content
   .btn-sm   Header / floating bar / compact

   Aliases (deprecated, retained so existing HTML keeps rendering):
   .btn-gold     identical to .btn-primary
   .btn-outline  identical to .btn-outline-gold
*/

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

.btn-primary,
.btn-gold {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

.btn-primary:hover,
.btn-gold:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: transparent;
  color: white;
  border-color: white;
}

.btn-secondary:hover {
  background: white;
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-outline-gold,
.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.btn-outline-gold:hover,
.btn-outline:hover {
  background: var(--accent);
  color: white;
  transform: translateY(-2px);
}

.btn-tertiary {
  background: transparent;
  color: var(--accent);
  border-color: transparent;
  padding: 0.5rem 0.75rem;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 600;
}

.btn-tertiary:hover {
  color: var(--accent-hover);
  text-decoration: underline;
  text-underline-offset: 4px;
  transform: none;
  box-shadow: none;
}

.btn-purdue {
  background: var(--purdue-black);
  color: var(--purdue-gold);
  border-color: var(--purdue-black);
}

.btn-purdue:hover {
  background: var(--purdue-gold);
  color: var(--purdue-black);
  border-color: var(--purdue-gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1rem;
}

.btn-sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.8rem;
}

.btn svg, .btn i {
  width: 18px;
  height: 18px;
}

/* --- Pulse Animation for CTAs --- */
.btn-pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(232, 145, 45, 0.5); }
  70% { box-shadow: 0 0 0 15px rgba(232, 145, 45, 0); }
  100% { box-shadow: 0 0 0 0 rgba(232, 145, 45, 0); }
}

/* --- Top Bar --- */
.top-bar {
  background: var(--primary);
  color: var(--text-white);
  padding: 0.5rem 0;
  font-size: 0.8rem;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.top-bar a {
  color: var(--text-white);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.top-bar a:hover {
  color: var(--gold);
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.top-bar-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.top-bar-badge svg {
  stroke: var(--gold);
  flex-shrink: 0;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lang-switch {
  background: rgba(255,255,255,0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.75rem;
}

.lang-switch:hover {
  background: rgba(255,255,255,0.2);
}

/* --- Header / Navigation --- */
.header {
  background: white;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--header-height);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.logo img {
  height: 60px;
  width: auto;
  max-width: none;
  flex-shrink: 0;
}

.logo-icon {
  width: 48px;
  height: 48px;
  background: var(--accent);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 900;
  font-size: 1.25rem;
  font-family: 'Montserrat', sans-serif;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-text .name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.logo-text .tagline {
  font-size: 0.7rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.footer .logo img {
  height: 40px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav a {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  position: relative;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
}

.nav a:hover::after,
.nav a.active::after {
  width: 60%;
}

.nav a:hover {
  color: var(--accent);
}

/* --- Nav Dropdowns --- */
.nav-dropdown {
  position: relative;
  display: inline-block;
}

.nav-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  cursor: pointer;
}

.nav-dropdown-caret {
  width: 10px;
  height: 10px;
  transition: transform 0.2s ease;
  opacity: 0.7;
}

.nav-dropdown:hover .nav-dropdown-caret,
.nav-dropdown:focus-within .nav-dropdown-caret {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% - 4px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 260px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.04);
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 1000;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* Invisible bridge so dropdown doesn't close when moving cursor to menu */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 10px;
  display: none;
}

.nav-dropdown:hover::before {
  display: block;
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.65rem 1.25rem;
  color: var(--text);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.15s ease;
  border-left: 3px solid transparent;
}

.nav-dropdown-menu a::after {
  display: none;
}

.nav-dropdown-menu a:hover {
  background: var(--accent-light);
  color: var(--accent);
  border-left-color: var(--accent);
  padding-left: 1.5rem;
}

.nav-dropdown-menu a.view-all {
  border-top: 1px solid #f0f0f0;
  margin-top: 0.35rem;
  padding-top: 0.75rem;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.85rem;
}

.nav-dropdown-menu a.view-all:hover {
  border-left-color: transparent;
  padding-left: 1.5rem;
}

/* --- Mobile Nav Dropdowns (using <details>) --- */
.mobile-nav details {
  border-bottom: 1px solid var(--border);
}

.mobile-nav details summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.mobile-nav details summary::-webkit-details-marker {
  display: none;
}

.mobile-nav details summary::after {
  content: '';
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  margin-right: 0.5rem;
}

.mobile-nav details[open] summary::after {
  transform: rotate(-135deg);
}

.mobile-nav details a {
  padding: 0.65rem 0 0.65rem 1.25rem;
  font-size: 1rem;
  font-weight: 500;
  border-bottom: none;
  color: var(--text-light);
}

.mobile-nav details a:hover {
  color: var(--accent);
}

.mobile-nav details a.view-all {
  color: var(--accent);
  font-weight: 700;
  border-top: 1px solid var(--border);
  margin-top: 0.35rem;
  padding-top: 0.75rem;
}

/* Mobile nav CTA buttons — match desktop style */
.mobile-nav-ctas {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mobile-nav-ctas .btn {
  width: 100%;
  justify-content: center;
  padding: 0.875rem 1.25rem;
  font-size: 0.95rem;
}

.header-ctas {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.header-ctas .btn {
  padding: 0.45rem 0.85rem;
  font-size: 0.72rem;
  gap: 0.35rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.header-ctas .btn svg {
  width: 13px;
  height: 13px;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--primary);
}

.mobile-toggle svg {
  width: 28px;
  height: 28px;
}

/* --- Mobile Navigation --- */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: white;
  z-index: 9999;
  padding: 2rem;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.mobile-nav-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  font-size: 1.5rem;
  color: var(--primary);
}

.mobile-nav a {
  display: block;
  padding: 1rem 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
  border-bottom: 1px solid var(--border);
}

.mobile-nav a:hover {
  color: var(--accent);
}

.mobile-nav-ctas {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav-ctas .btn {
  justify-content: center;
  width: 100%;
}

@media (max-width: 1024px) {
  .nav, .header-ctas { display: none; }
  .mobile-toggle { display: block; }
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2D2D2D 0%, #3D3D3D 50%, #4A4A4A 100%);
  overflow: hidden;
  padding: 0.5rem 0;
}

.hero > .container {
  width: 100%;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff08" d="M0,160L48,170.7C96,181,192,203,288,197.3C384,192,480,160,576,165.3C672,171,768,213,864,229.3C960,245,1056,235,1152,208C1248,181,1344,139,1392,117.3L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"/></svg>') no-repeat bottom;
  background-size: cover;
  opacity: 0.3;
}

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

.hero-logo {
  max-width: 550px;
  width: 100%;
  height: auto;
  margin: 0 auto 0.5rem;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  color: white;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(232, 145, 45, 0.15);
  border: 1px solid rgba(232, 145, 45, 0.3);
  color: var(--gold);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero h1 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
}

.hero h1 span {
  color: var(--gold);
}

.hero p {
  font-size: 1.2rem;
  color: #CBD5E1;
  margin-bottom: 2.5rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  justify-content: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.hero-stat {
  text-align: center;
}

.hero-stat .number {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: white;
}

.hero-stat .label {
  font-size: 0.8rem;
  color: #94A3B8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-image {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 50%;
  height: 80%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  opacity: 0.3;
}

@media (max-width: 768px) {
  .hero { min-height: auto; padding: 3rem 0; }
  .hero-stats { gap: 1.5rem; }
  .hero-stat .number { font-size: 1.5rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
}

/* --- Floating CTA Bar --- */
.floating-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary);
  padding: 0.75rem 0;
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
}

.floating-cta.visible {
  transform: translateY(0);
}

.floating-cta .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.floating-cta .btn {
  padding: 0.625rem 1.5rem;
  font-size: 0.8rem;
}

@media (max-width: 640px) {
  .floating-cta .container { flex-direction: column; }
  .floating-cta .btn { width: 100%; justify-content: center; font-size: 0.75rem; padding: 0.5rem 1rem; }
}

/* --- Trust Bar --- */
.trust-bar {
  background: white;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}

.trust-bar .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
}

.trust-item svg {
  width: 24px;
  height: 24px;
  color: var(--gold);
  flex-shrink: 0;
}

/* --- Service Cards --- */
.service-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
  color: inherit;
}

.service-card:hover {
  text-decoration: none;
  color: inherit;
}

.service-card-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: transform 0.2s ease;
}

.service-card:hover .service-card-link {
  transform: translateX(4px);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent);
  transform: scaleX(0);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card-icon {
  width: 56px;
  height: 56px;
  background: var(--accent-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--accent);
}

.service-card-icon svg {
  width: 28px;
  height: 28px;
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.9rem;
  line-height: 1.7;
}

/* --- Why Choose Us --- */
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.why-item {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.1);
  transition: var(--transition);
}

.why-item:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

.why-icon {
  width: 48px;
  height: 48px;
  background: rgba(232, 145, 45, 0.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}

.why-icon svg {
  width: 24px;
  height: 24px;
}

.why-item h4 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.why-item p {
  font-size: 0.85rem;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .why-choose-grid { grid-template-columns: 1fr; }
}

/* --- Purdue / West Lafayette Section --- */
.purdue-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.purdue-card {
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  border-radius: 16px;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94A3B8;
  padding: 2rem;
  text-align: center;
}

@media (max-width: 768px) {
  .purdue-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .purdue-card {
    aspect-ratio: 16/10;
    max-width: 100%;
  }
}

/* --- 24/7 Estimates Banner --- */
.estimates-banner {
  background: linear-gradient(135deg, var(--accent) 0%, #B86A15 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.estimates-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.estimates-banner .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
  position: relative;
  z-index: 2;
}

.estimates-content {
  max-width: 600px;
}

.estimates-content .label {
  color: white !important;
  font-size: 0.95rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.15em;
  display: block;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.estimates-content h2 {
  color: white;
  margin-bottom: 1rem;
}

/* White CTA button on the orange estimates banner */
.estimates-banner .btn-gold {
  background: white;
  color: var(--accent);
  border-color: white;
  font-weight: 700;
}

.estimates-banner .btn-gold:hover {
  background: #fff8ed;
  color: var(--accent-hover);
  border-color: #fff8ed;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.estimates-banner .btn-gold svg {
  stroke: var(--accent);
}

.estimates-content p {
  color: #FFFFFF;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.estimates-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.estimate-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  font-size: 0.9rem;
  font-weight: 500;
}

.estimate-feature svg {
  width: 20px;
  height: 20px;
  color: #FFFFFF;
  flex-shrink: 0;
}

.estimates-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .estimates-banner .container { flex-direction: column; text-align: center; }
  .estimates-features { justify-content: center; }
  .estimates-cta { justify-content: center; }
}

/* --- Reviews / Testimonials --- */
.review-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.review-card:hover {
  box-shadow: var(--shadow-lg);
}

.review-stars {
  display: flex;
  gap: 0.125rem;
  margin-bottom: 1rem;
  color: var(--gold);
}

.review-stars svg {
  width: 18px;
  height: 18px;
  fill: var(--gold);
}

.review-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 1.25rem;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1rem;
}

.review-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary);
}

.review-source {
  font-size: 0.75rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.google-rating {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: white;
  padding: 1.5rem 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin-bottom: 2rem;
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.google-logo {
  font-size: 1.5rem;
  font-weight: 700;
}

.google-logo span:nth-child(1) { color: #4285F4; }
.google-logo span:nth-child(2) { color: #EA4335; }
.google-logo span:nth-child(3) { color: #FBBC05; }
.google-logo span:nth-child(4) { color: #4285F4; }
.google-logo span:nth-child(5) { color: #34A853; }
.google-logo span:nth-child(6) { color: #EA4335; }

.google-rating-score {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.google-rating-details {
  display: flex;
  flex-direction: column;
}

/* --- Before/After Gallery --- */
.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.gallery-comparison {
  position: relative;
  aspect-ratio: 16/10;
  background: var(--bg-light);
  overflow: hidden;
}

.gallery-comparison .before,
.gallery-comparison .after {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-light);
}

.gallery-label {
  position: absolute;
  bottom: 0.75rem;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 5;
}

.gallery-label.before-label {
  left: 0.75rem;
  background: var(--accent);
  color: white;
}

.gallery-label.after-label {
  right: 0.75rem;
  background: #16A34A;
  color: white;
}

.gallery-info {
  padding: 1.25rem;
  background: white;
}

.gallery-info h4 {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.gallery-info p {
  font-size: 0.8rem;
  margin-bottom: 0;
}

/* --- Blog Cards --- */
.blog-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.blog-card-image {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  font-size: 3rem;
  position: relative;
}

.blog-card-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--accent);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.blog-card-body {
  padding: 1.5rem;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}

.blog-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.blog-card h3 a:hover {
  color: var(--accent);
}

.blog-card p {
  font-size: 0.9rem;
  line-height: 1.6;
}

.blog-card .read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.85rem;
  margin-top: 0.5rem;
}

.blog-card .read-more:hover {
  gap: 0.6rem;
}

/* --- Blog Post Content --- */
.blog-post {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.blog-post-header {
  margin-bottom: 2.5rem;
}

.blog-post-header .category {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.blog-post-header h1 {
  margin-bottom: 1rem;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
}

.blog-post-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-light);
}

.blog-post-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.blog-post-content h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.blog-post-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.blog-post-content ul, .blog-post-content ol {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
}

.blog-post-content li {
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text);
  list-style: disc;
}

.blog-post-content ol li {
  list-style: decimal;
}

.blog-post-content blockquote {
  border-left: 4px solid var(--accent);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: var(--bg-light);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
}

.blog-post-content img {
  border-radius: var(--radius-lg);
  margin: 2rem 0;
}

/* --- Insurance Logos --- */
.insurance-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
}

.insurance-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.7;
  transition: var(--transition);
  padding: 1rem;
}

.insurance-logo:hover {
  opacity: 1;
  transform: scale(1.05);
}

.insurance-logo-icon {
  width: 64px;
  height: 64px;
  background: white;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  font-weight: 800;
  font-size: 0.65rem;
  color: var(--primary);
  text-align: center;
  line-height: 1.2;
}

.insurance-logo span {
  font-size: 0.75rem;
  font-weight: 500;
}

/* --- Contact / Map --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info-card {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: var(--radius);
  background: var(--bg-light);
  margin-bottom: 1rem;
  transition: var(--transition);
}

.contact-info-card:hover {
  background: var(--accent-light);
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  background: var(--accent);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 20px;
  height: 20px;
}

.contact-info-card h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.contact-info-card p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

.contact-info-card a {
  color: var(--accent);
  font-weight: 500;
}

.map-placeholder {
  width: 100%;
  height: 400px;
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 1rem;
}

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* --- FAQ --- */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--primary);
  background: white;
  border: none;
  width: 100%;
  text-align: left;
  transition: var(--transition);
}

.faq-question:hover {
  background: var(--bg-light);
}

.faq-question svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  color: var(--text-light);
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
  color: var(--accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-light);
}

/* --- Footer --- */
.footer {
  background: var(--bg-dark);
  color: var(--text-white);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  color: #94A3B8;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94A3B8;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--accent);
  color: white;
}

.footer h4 {
  color: white;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}

.footer ul li {
  margin-bottom: 0.75rem;
}

.footer ul a {
  color: #94A3B8;
  font-size: 0.9rem;
}

.footer ul a:hover {
  color: white;
}

.footer-hours {
  font-size: 0.85rem;
}

.footer-hours table {
  width: 100%;
  border-collapse: collapse;
}

.footer-hours td {
  padding: 0.35rem 0;
  color: #94A3B8;
}

.footer-hours td:first-child {
  font-weight: 500;
  color: #CBD5E1;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 0;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: #64748B;
  margin-bottom: 0;
}

.footer-bottom a {
  color: #94A3B8;
}

.footer-bottom a:hover {
  color: white;
}

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* --- Certifications Section --- */
.cert-badges {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.cert-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}

.cert-badge-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(232, 145, 45, 0.1);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
  line-height: 1.2;
  padding: 0.5rem;
}

.cert-badge span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
}

.cert-badge p {
  font-size: 0.8rem;
  max-width: 180px;
}

/* --- Page Header --- */
.page-header {
  background: linear-gradient(135deg, #2D2D2D 0%, #4A4A4A 100%);
  padding: 4rem 0 3rem;
  text-align: center;
}

.page-header h1 {
  color: white;
  margin-bottom: 0.75rem;
}

.page-header p {
  color: #CBD5E1;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
}

.breadcrumb a {
  color: #94A3B8;
}

.breadcrumb a:hover {
  color: white;
}

.breadcrumb .separator {
  color: #475569;
}

.breadcrumb .current {
  color: var(--gold);
}

/* --- Virtual Tour --- */
.tour-section {
  position: relative;
  background: var(--bg-light);
}

.tour-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.tour-item {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: linear-gradient(135deg, #1e293b, #334155);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.tour-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.tour-item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: white;
}

.tour-item-overlay h4 {
  color: white;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.tour-item-overlay p {
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .tour-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .tour-grid { grid-template-columns: 1fr; }
}

/* --- Comparison Table --- */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.comparison-table thead {
  background: var(--primary);
  color: white;
}

.comparison-table th {
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.comparison-table th:first-child {
  width: 40%;
}

.comparison-table td {
  padding: 1rem 1.5rem;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border);
}

.comparison-table tr:nth-child(even) {
  background: var(--bg-light);
}

.comparison-table .check {
  color: #16A34A;
  font-size: 1.25rem;
}

.comparison-table .cross {
  color: #DC2626;
  font-size: 1.25rem;
}

.comparison-table .highlight-col {
  background: rgba(232, 145, 45, 0.08);
  font-weight: 600;
}

/* --- Animations --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Utility Classes --- */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-accent { color: var(--accent); }
.text-gold { color: var(--gold); }
.text-white { color: white; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }

/* --- Print Styles --- */
@media print {
  .top-bar, .header, .floating-cta, .footer { display: none; }
  .hero { min-height: auto; padding: 2rem 0; }
  .section { padding: 2rem 0; }
  body { font-size: 12pt; }
}

/* ============================================
   ACTIONABLE TOP BAR (v2)
   ============================================ */
.top-bar {
  padding: 0.5rem 0;
  position: relative;
  z-index: 1001;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  position: relative;
}

.top-bar-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  position: relative;
}

.top-bar-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.95rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--text-white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.15s ease;
  line-height: 1;
  white-space: nowrap;
}

.top-bar-btn:hover,
.top-bar-btn:focus-visible {
  background: rgba(255, 255, 255, 0.22);
  border-color: var(--gold);
  color: var(--gold);
  outline: none;
}

.top-bar-btn svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  stroke-width: 2.2;
}

.top-bar-btn-call {
  background: #16a34a;
  border-color: #16a34a;
  color: #fff;
}

.top-bar-btn-call:hover,
.top-bar-btn-call:focus-visible {
  background: #15803d;
  border-color: #15803d;
  color: #fff;
}

.top-bar-hours-caret {
  width: 10px;
  height: 10px;
  transition: transform 0.2s ease;
  opacity: 0.8;
}

.top-bar-hours-toggle[aria-expanded="true"] .top-bar-hours-caret {
  transform: rotate(180deg);
}

.top-bar-hours-panel {
  position: absolute;
  top: calc(100% + 0.6rem);
  left: 0;
  background: #fff;
  color: var(--primary);
  padding: 1rem 1.25rem;
  border-radius: 10px;
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.28);
  min-width: 280px;
  z-index: 2000;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  line-height: 1.5;
  animation: topBarHoursIn 0.15s ease;
}

.top-bar-hours-panel[hidden] { display: none; }

.top-bar-hours-panel::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 24px;
  width: 12px;
  height: 12px;
  background: #fff;
  transform: rotate(45deg);
  box-shadow: -2px -2px 4px rgba(0, 0, 0, 0.05);
}

.top-bar-hours-panel .hours-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.top-bar-hours-panel .hours-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.25rem 0;
  border-bottom: 1px dashed #eee;
}

.top-bar-hours-panel .hours-row:last-of-type { border-bottom: none; }

.top-bar-hours-panel .hours-row strong {
  font-weight: 700;
  color: var(--primary);
}

.top-bar-hours-panel .hours-row span { color: #555; }

.top-bar-hours-panel .hours-note {
  display: block;
  margin-top: 0.75rem;
  padding-top: 0.6rem;
  border-top: 1px solid #eee;
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: color 0.15s ease;
}

.top-bar-hours-panel a.hours-note:hover {
  color: var(--accent-hover);
  text-decoration: underline;
}

@keyframes topBarHoursIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Prominent language switch */
.top-bar .lang-switch {
  background: var(--gold);
  color: var(--primary);
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  line-height: 1;
  border: 1px solid var(--gold);
  box-shadow: 0 0 0 0 rgba(249, 197, 69, 0.6);
  animation: langPulse 2.4s ease-in-out infinite;
}

.top-bar .lang-switch:hover,
.top-bar .lang-switch:focus-visible {
  background: #fff;
  border-color: #fff;
  color: var(--primary);
  outline: none;
  animation: none;
}

.top-bar .lang-switch .lang-flag {
  font-size: 1rem;
  line-height: 1;
}

@keyframes langPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(249, 197, 69, 0.55); }
  50%      { box-shadow: 0 0 0 6px rgba(249, 197, 69, 0); }
}

@media (max-width: 640px) {
  .top-bar { padding: 0.4rem 0; }
  .top-bar .container { gap: 0.4rem; justify-content: center; }
  .top-bar-actions { gap: 0.35rem; justify-content: center; flex: 1 1 100%; }
  .top-bar-btn {
    padding: 0.4rem 0.7rem;
    font-size: 0.68rem;
    letter-spacing: 0.05em;
  }
  .top-bar-hours-panel {
    left: 50%;
    transform: translateX(-50%);
    min-width: min(300px, calc(100vw - 2rem));
  }
  .top-bar-hours-panel::before { left: 50%; margin-left: -6px; }
  .top-bar .lang-switch {
    padding: 0.35rem 0.75rem;
    font-size: 0.7rem;
  }
}

/* ============================================
   CTA HIERARCHY ENHANCEMENTS (v2)
   ============================================ */
/* Extra-large button — reserved for primary "24/7 Estimate" hero CTA */
.btn-xl {
  padding: 0.75rem 1.6rem;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  gap: 0.5rem;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(232, 145, 45, 0.3);
}

.btn-xl svg { width: 17px; height: 17px; }

.btn-xl:hover { box-shadow: 0 10px 26px rgba(232, 145, 45, 0.45); }

/* Scale down CTA clusters so buttons read like compact action pills */
.hero-ctas .btn,
.estimates-cta .btn {
  padding: 0.55rem 1.15rem;
  font-size: 0.78rem;
  gap: 0.45rem;
}

.hero-ctas .btn svg,
.estimates-cta .btn svg {
  width: 14px;
  height: 14px;
}

.hero-ctas .btn-xl,
.estimates-cta .btn-xl {
  padding: 0.7rem 1.4rem;
  font-size: 0.88rem;
}

.hero-ctas .btn-xl svg,
.estimates-cta .btn-xl svg {
  width: 16px;
  height: 16px;
}

@media (max-width: 640px) {
  .hero-ctas .btn,
  .estimates-cta .btn {
    padding: 0.6rem 0.9rem;
    font-size: 0.78rem;
  }
  .hero-ctas .btn-xl,
  .estimates-cta .btn-xl {
    padding: 0.75rem 1rem;
    font-size: 0.88rem;
  }
}

/* Top-bar green call button kept (.top-bar-btn-call) — utility chrome only.
   The previous universal a.btn[href^="tel:"] green override is removed: phone
   buttons now inherit their declared .btn-* style and follow the unified system. */

.estimates-banner .btn-call:hover {
  background: #fff;
  color: #16a34a;
  border-color: #fff;
}

/* Floating CTA: small utility call button.
   Visually subordinate to the primary Estimate + secondary Book buttons.
   Icon-led pill, compact padding, white-on-dark to match the bar. */
.floating-cta .btn-call-mini {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.85rem;
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
  text-decoration: none;
  transition: all 0.2s ease;
}
.floating-cta .btn-call-mini:hover,
.floating-cta .btn-call-mini:focus-visible {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
  transform: translateY(-1px);
}
.floating-cta .btn-call-mini svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}
@media (max-width: 480px) {
  /* On narrow phones, drop the number text — keep only the icon to save room. */
  .floating-cta .btn-call-mini .label-text { display: none; }
  .floating-cta .btn-call-mini { padding: 0.5rem 0.6rem; }
}
