/* ========================================
   ANYTHING CABINETS LLC - Design System
   Matches actual HTML class names used across all pages
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

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

:root {
  --primary: #1A472A;
  --primary-dark: #0D2818;
  --primary-light: #E8F5E9;
  --primary-mid: #2E7D42;
  --accent: #C45A2C;
  --accent-dark: #A14422;
  --accent-light: #FBE9E0;
  --brown: #5D4037;
  --brown-light: #8D6E63;
  --gold: #BF8C2C;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;
  --white: #FFFFFF;
  --shadow-sm: 0 1px 3px 0 rgba(0,0,0,0.1), 0 1px 2px -1px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
  --shadow-green: 0 4px 12px rgba(26,71,42,0.25);
  --shadow-accent: 0 4px 12px rgba(196,90,44,0.25);
  /* Brand-tinted shadow system (5-level) */
  --shadow-brand-xs: 0 1px 2px rgba(26,71,42,0.06);
  --shadow-brand-sm: 0 2px 4px rgba(26,71,42,0.08), 0 1px 2px rgba(26,71,42,0.06);
  --shadow-brand-md: 0 4px 8px rgba(26,71,42,0.10), 0 2px 4px rgba(26,71,42,0.06);
  --shadow-brand-lg: 0 8px 24px rgba(26,71,42,0.12), 0 4px 8px rgba(26,71,42,0.06);
  --shadow-brand-xl: 0 16px 48px rgba(26,71,42,0.14), 0 8px 16px rgba(26,71,42,0.08);
  /* Gradients */
  --gradient-hero: linear-gradient(135deg, rgba(13,40,24,0.92) 0%, rgba(26,71,42,0.78) 50%, rgba(13,40,24,0.88) 100%);
  --gradient-cta: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  --gradient-warm: linear-gradient(180deg, #FAF7F2 0%, #F5EDE0 100%);
  --gradient-light: linear-gradient(180deg, var(--gray-50) 0%, #EDF2F0 100%);
  /* Animation timing */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
  /* Premium radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

html { scroll-behavior: smooth; scroll-padding-top: 72px; }

body {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; }
address { font-style: normal; }

/* ---- Container ---- */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 16px; }

/* ---- Header (.site-header) ---- */
.site-header {
  position: sticky; top: 0; z-index: 1000; height: 72px;
  background: var(--white); transition: box-shadow 0.3s ease;
  border-bottom: 1px solid var(--gray-200);
}
.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(26,71,42,0.08); border-bottom-color: transparent;
  backdrop-filter: blur(8px); background: rgba(255,255,255,0.97);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { text-decoration: none; flex-shrink: 0; }
.logo img { height: 60px; width: auto; display: block; }

/* ---- Desktop Nav ---- */
.main-nav { display: none; }
.nav-list { list-style: none; display: flex; align-items: center; gap: 24px; }
.nav-list a,
.nav-list .nav-link,
.nav-list .dropdown-toggle {
  text-decoration: none; color: var(--gray-700); font-size: 15px;
  font-weight: 500; transition: color 0.2s; padding: 4px 0;
  background: none; border: none; cursor: pointer; font-family: var(--font-sans);
  display: inline-flex; align-items: center; gap: 4px;
}
.nav-list a:hover, .nav-list a.active,
.nav-list .nav-link:hover, .nav-list .nav-link.active { color: var(--primary); }
.nav-list > li > a::after, .nav-list > li > .nav-link::after {
  content: ''; display: block; height: 2px; width: 0;
  background: var(--primary); transition: width 0.3s var(--ease-out-expo);
  border-radius: 1px; margin-top: 2px;
}
.nav-list > li > a:hover::after, .nav-list > li > a.active::after,
.nav-list > li > .nav-link:hover::after, .nav-list > li > .nav-link.active::after { width: 100%; }
.nav-list .arrow { font-size: 10px; }
.chevron-down { transition: transform 0.2s; }

/* Dropdowns */
.has-dropdown, .dropdown { position: relative; }
.dropdown-menu {
  display: none; position: absolute; top: calc(100% + 4px); left: -12px;
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-md); padding: 8px 0; min-width: 220px;
  box-shadow: var(--shadow-brand-lg); z-index: 100; list-style: none;
  animation: fadeInDown 0.2s var(--ease-out-expo);
}
.has-dropdown:hover .dropdown-menu,
.has-dropdown:hover > .dropdown,
.dropdown:hover .dropdown-menu,
.dropdown:hover > .dropdown { display: block; }
/* Also target bare .dropdown ul used by some service pages */
li.has-dropdown > ul.dropdown {
  display: none; position: absolute; top: 100%; left: -12px;
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: 8px; padding: 8px 0; min-width: 220px;
  box-shadow: var(--shadow-lg); z-index: 100; list-style: none;
}
li.has-dropdown:hover > ul.dropdown { display: block; }
.dropdown-menu a {
  display: block; padding: 10px 20px; font-size: 14px;
  white-space: nowrap; text-decoration: none; color: var(--gray-700);
}
.dropdown-menu a:hover { background: var(--gray-50); color: var(--primary); }

/* Header CTA button - desktop only */
.header-cta {
  display: none; align-items: center; gap: 6px;
  height: 40px; padding: 0 18px; font-size: 14px;
  white-space: nowrap; flex-shrink: 0;
}
/* Mobile call CTA - shown inside mobile nav */
.mobile-call-cta {
  display: none;
}
.main-nav.active .mobile-call-cta {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 24px; padding: 16px; border-radius: var(--radius-md);
  background: var(--accent); color: var(--white);
  font-size: 18px; font-weight: 600; text-decoration: none;
  box-shadow: var(--shadow-accent);
  transition: background 0.2s;
}
.main-nav.active .mobile-call-cta:hover { background: var(--accent-dark); }
.main-nav.active .mobile-call-cta svg { flex-shrink: 0; }

/* ---- Mobile Toggle (Hamburger) ---- */
.mobile-toggle {
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 10px; background: none; border: none; cursor: pointer;
}
.mobile-toggle span,
.hamburger-line {
  display: block; width: 24px; height: 2px; background: var(--gray-700); transition: all 0.3s;
}
.mobile-toggle.active span:nth-child(1),
.mobile-toggle.active .hamburger-line:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2),
.mobile-toggle.active .hamburger-line:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3),
.mobile-toggle.active .hamburger-line:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---- Mobile Nav Overlay ---- */
.main-nav.active {
  display: block; position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--white); z-index: 999; padding: 24px; overflow-y: auto;
}
.main-nav.active .nav-list {
  flex-direction: column; align-items: stretch; gap: 0;
}
.main-nav.active .nav-list > li { border-bottom: 1px solid var(--gray-200); }
.main-nav.active .nav-list a,
.main-nav.active .nav-list .dropdown-toggle {
  display: block; padding: 14px 0; font-size: 17px;
}
.main-nav.active .dropdown-menu,
.main-nav.active .has-dropdown .dropdown-menu,
.main-nav.active .has-dropdown > .dropdown,
.main-nav.active .dropdown .dropdown-menu {
  display: block; position: static; box-shadow: none; border: none;
  padding: 0 0 8px 16px; min-width: auto;
}
.main-nav.active .dropdown-menu a { padding: 8px 0; font-size: 15px; }
.main-nav.active .nav-list > li > a::after,
.main-nav.active .nav-list > li > .nav-link::after { display: none; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-sans); font-weight: 600; text-decoration: none;
  border: none; cursor: pointer; transition: all 0.2s ease; border-radius: 8px;
}
.btn-primary { background: var(--accent); color: var(--white); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--accent-dark); box-shadow: 0 6px 20px rgba(196,90,44,0.3); transform: translateY(-2px); }
.btn-green { background: var(--primary); color: var(--white); box-shadow: var(--shadow-sm); }
.btn-green:hover { background: var(--primary-dark); box-shadow: 0 6px 20px rgba(26,71,42,0.3); transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(0.98); transition-duration: 0.1s; }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline:hover { background: var(--white); color: var(--primary); }
.btn-outline-dark { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline-dark:hover { background: var(--primary); color: var(--white); }
.btn-white { background: var(--white); color: var(--primary); }
.btn-white:hover { background: var(--gray-100); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-sm { height: 40px; padding: 0 18px; font-size: 14px; }
.btn-md { height: 48px; padding: 0 24px; font-size: 16px; }
.btn-lg { height: 56px; padding: 0 32px; font-size: 18px; }
.btn-full { width: 100%; }

/* ---- Sections ---- */
.section { padding: 64px 0; }
.section-lg { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-header p,
.section-header .section-subtitle { margin: 0 auto; }
.section-label {
  display: inline-block; font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em; color: var(--primary); margin-bottom: 12px;
  padding: 6px 14px; background: rgba(26,71,42,0.06);
  border-radius: 20px; border: 1px solid rgba(26,71,42,0.10);
}
.section-title,
.section-header h2 {
  font-size: 32px; font-weight: 800; line-height: 1.15;
  letter-spacing: -0.02em; color: var(--gray-900); margin-bottom: 16px;
}
.section-subtitle,
.section-header p {
  font-size: 18px; color: var(--gray-600); max-width: 650px; line-height: 1.6;
}
.bg-warm { background: var(--gradient-warm); }
.bg-light { background: var(--gradient-light); }

/* ---- Page Hero (internal pages) ---- */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, #1B5E2E 100%);
  color: var(--white); padding: 60px 0;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--gold), var(--accent));
}
.page-hero h1 {
  font-size: 36px; font-weight: 800; line-height: 1.1; letter-spacing: -0.025em; margin-bottom: 12px;
}
.page-hero p { font-size: 18px; color: rgba(255,255,255,0.85); max-width: 650px; line-height: 1.6; }
.page-hero .hero-rating { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.page-hero .stars { color: var(--gold); font-size: 20px; }
.page-hero .rating-text { font-size: 16px; color: rgba(255,255,255,0.9); }
.breadcrumb {
  display: flex; flex-wrap: wrap; gap: 8px;
  font-size: 14px; margin-bottom: 16px; color: rgba(255,255,255,0.6);
  list-style: none;
}
.breadcrumb a { color: rgba(255,255,255,0.6); text-decoration: none; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,0.4); }
.breadcrumb span:last-child { color: rgba(255,255,255,0.9); }

/* ---- Homepage Hero ---- */
.hero {
  position: relative; min-height: 600px; display: flex; align-items: center;
  background: var(--primary-dark); overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-overlay,
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.35) 100%);
}
.hero-content { position: relative; z-index: 1; padding: 80px 0; max-width: 700px; }
.hero-badge {
  display: inline-block; padding: 6px 16px; background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2); border-radius: 20px;
  font-size: 14px; font-weight: 600; color: var(--gold); margin-bottom: 16px;
}
.hero h1 {
  font-size: 40px; font-weight: 800; line-height: 1.1; color: var(--white);
  letter-spacing: -0.02em; margin-bottom: 16px;
}
.hero-sub { font-size: 18px; line-height: 1.6; color: rgba(255,255,255,0.9); margin-bottom: 32px; max-width: 600px; }
.hero-actions,
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 32px; }
.hero-rating { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,0.85); font-size: 14px; }
.hero-rating .stars { display: flex; gap: 2px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 20px; color: rgba(255,255,255,0.85); font-size: 14px; font-weight: 500; }
.hero-trust span { display: flex; align-items: center; gap: 6px; }
.hero-trust svg { flex-shrink: 0; color: var(--gold); }
/* Hero entrance animations */
.hero .hero-badge { animation: fadeInDown 0.6s 0.2s var(--ease-out-expo) both; }
.hero h1 { animation: fadeInUp 0.7s 0.4s var(--ease-out-expo) both; }
.hero .hero-sub { animation: fadeInUp 0.7s 0.6s var(--ease-out-expo) both; }
.hero .hero-actions, .hero .hero-ctas { animation: fadeInUp 0.7s 0.8s var(--ease-out-expo) both; }
.hero .hero-rating, .hero .hero-trust { animation: fadeIn 0.8s 1.0s var(--ease-out-expo) both; }

/* ---- Trust Bar ---- */
.trust-bar { background: linear-gradient(180deg, #F5F9F6 0%, var(--gray-50) 100%); border-bottom: 1px solid var(--gray-200); padding: 36px 0; border-top: 3px solid var(--primary); }
.trust-bar-inner { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; }
.trust-item { display: flex; align-items: center; gap: 12px; padding: 0 16px; }
.trust-item svg { flex-shrink: 0; color: var(--primary); }
.trust-item strong { font-size: 15px; color: var(--gray-900); display: block; }
.trust-item span { font-size: 13px; color: var(--gray-500); display: block; }

/* ---- Service Cards ---- */
.services-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.service-card {
  display: block; background: var(--white); border-radius: var(--radius-md); padding: 28px;
  border: 1px solid var(--gray-200); border-left: 4px solid var(--primary);
  transition: all 0.3s var(--ease-out-expo); text-decoration: none; color: inherit;
  box-shadow: var(--shadow-brand-xs);
}
.service-card:hover { box-shadow: var(--shadow-brand-lg); transform: translateY(-6px); border-color: transparent; border-left-color: var(--accent); }
.service-icon {
  width: 56px; height: 56px; border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--primary-light), rgba(26,71,42,0.12));
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
  font-size: 28px;
  transition: transform 0.3s var(--ease-out-expo), background 0.3s ease;
}
.service-card:hover .service-icon { transform: scale(1.08); background: linear-gradient(135deg, rgba(196,90,44,0.08), rgba(196,90,44,0.15)); }
.service-icon svg { color: var(--primary); transition: color 0.3s; }
.service-card:hover .service-icon svg { color: var(--accent); }
.service-card h3 { font-size: 20px; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; letter-spacing: -0.01em; }
.service-card p { font-size: 15px; color: var(--gray-600); line-height: 1.6; }
.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 16px; font-size: 15px; font-weight: 600; color: var(--primary);
  transition: gap 0.3s var(--ease-out-expo), color 0.2s;
}
.service-card:hover .service-link { gap: 10px; color: var(--accent); }

/* ---- Service Detail Page ---- */
.service-detail .container > .service-content { max-width: 800px; }
.service-content h2 { font-size: 28px; font-weight: 700; margin-bottom: 16px; color: var(--gray-900); }
.service-content h3 { font-size: 22px; font-weight: 600; margin: 32px 0 16px; color: var(--gray-900); }
.service-content p { margin-bottom: 16px; color: var(--gray-600); line-height: 1.7; }
.features-list { list-style: none; margin: 0 0 24px 0; }
.features-list li {
  display: flex; align-items: flex-start; gap: 12px; padding: 12px 0;
  border-bottom: 1px solid var(--gray-100); color: var(--gray-700); font-size: 15px; line-height: 1.6;
}
.features-list li svg,
.features-list .check-icon { flex-shrink: 0; color: var(--primary-mid); margin-top: 2px; }
.related-gallery { background: var(--gray-50); }

/* ---- Why Choose Us (homepage) ---- */
.why-us-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.why-card {
  text-align: center; padding: 32px 28px; background: var(--white);
  border: 1px solid var(--gray-200); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-brand-xs); transition: all 0.3s var(--ease-out-expo);
}
.why-card:hover { box-shadow: var(--shadow-brand-md); transform: translateY(-4px); border-color: rgba(26,71,42,0.15); }
.why-icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light), rgba(26,71,42,0.15));
  display: inline-flex; align-items: center; justify-content: center; margin-bottom: 16px;
  transition: transform 0.3s var(--ease-out-back);
}
.why-card:hover .why-icon { transform: scale(1.1) rotate(-3deg); }
.why-icon svg { color: var(--primary); }
.why-card h3 { font-size: 18px; font-weight: 600; color: var(--gray-900); margin-bottom: 8px; }
.why-card p { font-size: 15px; color: var(--gray-600); line-height: 1.6; }

/* ---- Gallery ---- */
.gallery-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.gallery-item {
  border-radius: 12px; overflow: hidden; aspect-ratio: 4/3;
  cursor: pointer; position: relative; display: block; background: none; border: none; padding: 0;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; display: block; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-link {
  display: block; position: relative; width: 100%; height: 100%;
  text-decoration: none; overflow: hidden;
}
.gallery-link img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; display: block; }
.gallery-link:hover img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(26,71,42,0.7) 100%);
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 20px;
  opacity: 0; transition: opacity 0.4s ease;
}
.gallery-item:hover .gallery-overlay,
.gallery-link:hover .gallery-overlay { opacity: 1; }
.gallery-zoom { color: var(--white); font-weight: 600; font-size: 15px; }
.gallery-full .gallery-grid { grid-template-columns: repeat(2, 1fr); }

/* ---- Testimonials ---- */
.testimonials-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.testimonial-card {
  background: var(--white); border-radius: var(--radius-md); padding: 28px;
  border: 1px solid var(--gray-200); border-left: 4px solid var(--gold);
  box-shadow: var(--shadow-brand-xs); position: relative;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.testimonial-card:hover { box-shadow: var(--shadow-brand-md); transform: translateY(-2px); }
.testimonial-card::before {
  content: '\201C'; position: absolute; top: 12px; right: 20px;
  font-size: 64px; line-height: 1; color: rgba(26,71,42,0.06);
  font-family: Georgia, serif; pointer-events: none;
}
.testimonial-stars, .testimonial-card .stars { display: flex; gap: 2px; margin-bottom: 12px; color: var(--gold); }
.testimonial-stars svg { color: var(--gold); }
.testimonial-card blockquote { font-size: 15px; line-height: 1.7; color: var(--gray-700); margin-bottom: 16px; font-style: italic; }
.testimonial-card blockquote p { margin: 0; }
.testimonial-card cite { font-size: 15px; font-weight: 600; color: var(--gray-900); font-style: normal; display: flex; flex-direction: column; gap: 2px; }
.testimonial-card cite span { font-weight: 400; font-size: 13px; color: var(--gray-500); }

/* ---- Reviews Page ---- */
.reviews-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.review-card {
  background: var(--white); border-radius: var(--radius-md); padding: 28px;
  border: 1px solid var(--gray-200); border-left: 4px solid var(--gold);
  box-shadow: var(--shadow-brand-xs);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.review-card:hover { box-shadow: var(--shadow-brand-md); transform: translateY(-2px); }
.review-stars { color: var(--gold); font-size: 18px; margin-bottom: 12px; }
.review-text { font-size: 15px; line-height: 1.7; color: var(--gray-700); margin-bottom: 16px; font-style: italic; }
.review-author strong { font-size: 15px; color: var(--gray-900); display: block; }
.review-source { font-size: 13px; color: var(--gray-500); }

/* ---- Process ---- */
.process-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
.process-step { display: flex; gap: 20px; align-items: flex-start; }
.step-number {
  flex-shrink: 0; width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 700;
  box-shadow: 0 4px 12px rgba(26,71,42,0.25);
  transition: transform 0.3s var(--ease-out-back);
}
.process-step:hover .step-number { transform: scale(1.08); }
.process-step h3 { font-size: 20px; font-weight: 600; color: var(--gray-900); margin-bottom: 4px; }
.process-step p { font-size: 15px; color: var(--gray-600); line-height: 1.6; }

/* Process Detail Page */
.process-steps-detail { max-width: 800px; margin: 0 auto; }
.process-step-detail { display: flex; gap: 24px; align-items: flex-start; margin-bottom: 48px; }
.process-step-detail .step-number {
  flex-shrink: 0; width: 64px; height: 64px; border-radius: 50%;
  background: var(--primary); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; font-weight: 700;
}
.step-content h2 { font-size: 24px; font-weight: 700; color: var(--gray-900); margin-bottom: 12px; }
.step-content p { font-size: 15px; color: var(--gray-600); line-height: 1.7; margin-bottom: 16px; }
.step-details-list { list-style: none; padding: 0; }
.step-details-list li {
  padding: 8px 0 8px 24px; position: relative; font-size: 15px;
  color: var(--gray-600); line-height: 1.6;
}
.step-details-list li::before {
  content: ''; position: absolute; left: 0; top: 16px;
  width: 8px; height: 8px; border-radius: 50%; background: var(--primary-mid);
}

/* ---- Service Areas ---- */
.areas-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.area-card,
.area-tag {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 16px; background: var(--white); border: 1px solid var(--gray-200);
  border-radius: 8px; font-size: 15px; font-weight: 500; color: var(--gray-700);
  text-align: center; transition: all 0.2s; text-decoration: none;
}
.area-card:hover, .area-tag:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-light); box-shadow: var(--shadow-brand-sm); transform: translateY(-2px); }
.area-card svg { flex-shrink: 0; color: var(--primary); }

/* ---- FAQ ---- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--gray-200); transition: background-color 0.2s ease; }
.faq-item:hover { background-color: rgba(26,71,42,0.02); }
/* Button-based FAQ (subpages) */
.faq-question {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
  padding: 20px 0; background: none; border: none; cursor: pointer;
  font-family: var(--font-sans); font-size: 17px; font-weight: 600;
  color: var(--gray-900); text-align: left; gap: 16px; min-height: 48px;
}
.faq-icon { font-size: 20px; color: var(--gray-400); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer p { padding: 0 0 20px; font-size: 15px; color: var(--gray-600); line-height: 1.7; }
/* Details-based FAQ (homepage) */
details.faq-item { border-bottom: 1px solid var(--gray-200); }
details.faq-item summary {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; cursor: pointer; font-size: 17px; font-weight: 600;
  color: var(--gray-900); list-style: none; gap: 16px; min-height: 48px;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::marker { display: none; }
.faq-chevron { flex-shrink: 0; transition: transform 0.3s; color: var(--gray-400); }
details.faq-item[open] .faq-chevron { transform: rotate(180deg); }
details.faq-item[open] summary { color: var(--primary); }
details.faq-item .faq-answer { max-height: none; overflow: visible; }
details.faq-item .faq-answer p { padding: 0 0 20px; font-size: 15px; color: var(--gray-600); line-height: 1.7; }

/* ---- CTA Section ---- */
.cta-section {
  background: var(--gradient-cta); color: var(--white); text-align: center; padding: 80px 0;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; top: -50%; right: -20%;
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(255,255,255,0.03); pointer-events: none;
}
.cta-section h2 { font-size: 36px; font-weight: 700; margin-bottom: 12px; color: var(--white); }
.cta-section p {
  font-size: 18px; color: rgba(255,255,255,0.85); margin-bottom: 32px;
  max-width: 600px; margin-left: auto; margin-right: auto;
}
.cta-buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }

/* Homepage CTA (with form) */
.cta-inner { display: grid; grid-template-columns: 1fr; gap: 48px; }
.cta-content { color: var(--white); }
.cta-content .section-label { color: var(--gold); }
.cta-content h2 { color: var(--white); }
.cta-content p { color: rgba(255,255,255,0.85); }
.cta-contact-info { margin-top: 32px; }
.cta-info-item { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 20px; }
.cta-info-item svg { flex-shrink: 0; color: var(--gold); margin-top: 2px; }
.cta-info-item strong { display: block; font-size: 14px; color: var(--white); margin-bottom: 2px; }
.cta-info-item a,
.cta-info-item span { color: rgba(255,255,255,0.8); text-decoration: none; font-size: 15px; }
.cta-info-item a:hover { color: var(--white); }
.cta-form-wrapper {
  background: var(--white); border-radius: var(--radius-lg); padding: 36px;
  box-shadow: var(--shadow-brand-xl);
}
.cta-form-wrapper h3 { font-size: 22px; font-weight: 700; color: var(--gray-900); margin-bottom: 24px; }

/* ---- Contact Form ---- */
.contact-form { max-width: 600px; }
.form-group { margin-bottom: 20px; }
.form-group label,
.form-label { display: block; margin-bottom: 8px; font-size: 14px; font-weight: 500; color: var(--gray-800); }
.required { color: var(--accent); }
.form-group input,
.form-group select,
.form-group textarea,
.form-input, .form-select, .form-textarea {
  width: 100%; height: 48px; padding: 12px 16px; font-size: 16px;
  font-family: var(--font-sans); color: var(--gray-800); background: var(--white);
  border: 1px solid var(--gray-300); border-radius: 8px; transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input::placeholder { color: var(--gray-400); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none; border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,71,42,0.12), 0 0 0 6px rgba(26,71,42,0.04);
  transition: border-color 0.2s ease, box-shadow 0.3s ease;
}
.form-group textarea,
.form-textarea { height: auto; min-height: 120px; resize: vertical; }
.form-disclaimer { font-size: 13px; color: var(--gray-500); margin-top: 12px; text-align: center; }

/* Contact Page */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 48px; }
.contact-form-wrap h2 { font-size: 24px; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; }
.contact-form-wrap > p { font-size: 15px; color: var(--gray-600); margin-bottom: 24px; }
.contact-form-wrap .contact-form { max-width: 100%; }
.contact-info-card {
  background: var(--gray-50); border-radius: 12px; padding: 28px;
  border: 1px solid var(--gray-200); margin-bottom: 24px;
}
.contact-info-card h3 { font-size: 20px; font-weight: 700; color: var(--gray-900); margin-bottom: 20px; }
.contact-detail { margin-bottom: 20px; }
.contact-detail:last-child { margin-bottom: 0; }
.contact-detail h4 { font-size: 14px; font-weight: 600; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 4px; }
.contact-detail p { font-size: 15px; color: var(--gray-800); line-height: 1.5; }
.contact-detail a { color: var(--primary); text-decoration: none; }
.contact-detail a:hover { text-decoration: underline; }
.map-embed { background: var(--gray-100); min-height: 250px; border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--gray-500); margin-bottom: 24px; }
.contact-cta-card { background: var(--primary-light); border-radius: 12px; padding: 28px; text-align: center; }
.contact-cta-card h3 { font-size: 18px; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; }
.contact-cta-card p { font-size: 15px; color: var(--gray-600); margin-bottom: 16px; }

/* ---- About Page ---- */
.about-grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
.about-content h2 { font-size: 28px; font-weight: 700; margin-bottom: 16px; color: var(--gray-900); }
.about-content p { margin-bottom: 16px; color: var(--gray-600); line-height: 1.7; }
.about-image .image-placeholder {
  min-height: 350px; border-radius: 12px; display: flex; align-items: center;
  justify-content: center; font-size: 1.1rem;
}
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.stat-card {
  padding: 28px; background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-md); text-align: center;
  box-shadow: var(--shadow-brand-sm); transition: all 0.3s ease;
}
.stat-card:hover { box-shadow: var(--shadow-brand-md); transform: translateY(-2px); }
.stat-icon { font-size: 28px; display: block; margin-bottom: 8px; }
.stat-number { font-size: 32px; font-weight: 800; color: var(--primary); display: block; letter-spacing: -0.02em; }
.stat-label { font-size: 14px; color: var(--gray-600); margin-top: 4px; display: block; }

/* Materials */
.materials-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.material-card {
  padding: 28px; background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-md); box-shadow: var(--shadow-brand-xs);
  transition: all 0.3s ease; border-top: 3px solid transparent;
}
.material-card:hover { box-shadow: var(--shadow-brand-md); transform: translateY(-3px); border-top-color: var(--primary); }
.material-card h3 { font-size: 18px; font-weight: 600; color: var(--gray-900); margin-bottom: 8px; }
.material-card p { font-size: 15px; color: var(--gray-600); line-height: 1.6; }

/* Values */
.values-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.value-card {
  padding: 28px; background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-md); box-shadow: var(--shadow-brand-xs);
  transition: all 0.3s ease; border-top: 3px solid transparent;
}
.value-card:hover { box-shadow: var(--shadow-brand-md); transform: translateY(-3px); border-top-color: var(--primary); }
.value-card h3 { font-size: 18px; font-weight: 600; color: var(--gray-900); margin-bottom: 8px; }
.value-card p { font-size: 15px; color: var(--gray-600); line-height: 1.6; }

/* Benefits (services overview page) */
.benefits-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.benefit-card {
  padding: 28px; background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-md); box-shadow: var(--shadow-brand-xs);
  transition: all 0.3s ease; border-top: 3px solid transparent;
}
.benefit-card:hover { box-shadow: var(--shadow-brand-md); transform: translateY(-3px); border-top-color: var(--primary); }
.benefit-card h3 { font-size: 18px; font-weight: 600; color: var(--gray-900); margin-bottom: 8px; }
.benefit-card p { font-size: 15px; color: var(--gray-600); line-height: 1.6; }

/* ---- Location Page ---- */
.location-content h2 { font-size: 28px; font-weight: 700; color: var(--gray-900); margin-bottom: 16px; }
.location-content p { font-size: 15px; color: var(--gray-600); line-height: 1.7; margin-bottom: 16px; }
.location-services { display: grid; grid-template-columns: 1fr; gap: 16px; }
.location-service-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px; background: var(--white); border: 1px solid var(--gray-200);
  border-radius: 10px; transition: all 0.2s; text-decoration: none; color: inherit;
}
.location-service-item:hover { border-color: var(--primary); box-shadow: var(--shadow-brand-sm); transform: translateY(-2px); }
.location-service-item svg { flex-shrink: 0; color: var(--primary); margin-top: 2px; }
.location-service-item h3 { font-size: 18px; font-weight: 600; color: var(--gray-900); margin-bottom: 4px; }
.location-service-item h3 a { color: var(--gray-900); text-decoration: none; }
.location-service-item h3 a:hover { color: var(--primary); }
.location-service-item p { font-size: 14px; color: var(--gray-600); line-height: 1.5; }

/* ---- Footer (.site-footer) ---- */
.site-footer {
  background: linear-gradient(180deg, var(--gray-900) 0%, #0A1A10 100%);
  color: var(--gray-400); padding: 64px 0 0; position: relative;
}
.site-footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--gold), var(--accent));
}
.site-footer .footer-grid {
  display: grid; grid-template-columns: 1fr; gap: 40px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.site-footer .footer-col h3 { font-size: 16px; font-weight: 600; color: var(--white); margin-bottom: 8px; }
.site-footer .footer-col h4 { font-size: 16px; font-weight: 600; color: var(--white); margin-bottom: 16px; }
.site-footer .footer-col p { font-size: 14px; line-height: 1.6; }
.site-footer .footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.site-footer .footer-col a { color: var(--gray-400); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.site-footer .footer-col a:hover { color: var(--white); }
.site-footer .footer-about,
.site-footer .footer-brand,
.site-footer .footer-col:first-child { }
.site-footer .footer-about p,
.site-footer .footer-brand p { margin-top: 12px; font-size: 14px; line-height: 1.6; }
.footer-logo,
.site-footer .footer-brand img { height: 48px; width: auto; }
.site-footer h4 { font-size: 16px; font-weight: 600; color: var(--white); margin-bottom: 16px; }
.site-footer .footer-about h3,
.site-footer .footer-brand h3 { font-size: 16px; font-weight: 600; color: var(--white); margin-bottom: 8px; }
.site-footer ul { list-style: none; }
.site-footer .footer-links ul,
.site-footer .footer-services ul,
.site-footer .footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.site-footer a { text-decoration: none; color: var(--gray-400); font-size: 14px; transition: color 0.2s; }
.site-footer a:hover { color: var(--white); }
.site-footer .footer-contact address { font-size: 14px; line-height: 1.8; }
.site-footer .footer-contact address a { color: var(--gray-400); }
.site-footer .footer-contact address a:hover { color: var(--white); }
.site-footer .footer-contact li { display: flex; gap: 10px; font-size: 14px; margin-bottom: 12px; }
.site-footer .footer-contact svg { flex-shrink: 0; margin-top: 2px; color: var(--primary-mid); }
.footer-rating { display: flex; align-items: center; gap: 8px; margin-top: 12px; font-size: 13px; }
.footer-rating .stars { display: flex; gap: 1px; }
.footer-bottom { padding: 24px 0; text-align: center; font-size: 13px; }
.footer-nav { display: flex; justify-content: center; gap: 16px; margin-top: 8px; }
.footer-nav a { font-size: 13px; }

/* ---- Floating Call ---- */
.floating-call {
  position: fixed; bottom: 24px; right: 24px; z-index: 998;
  width: 56px; height: 56px; background: var(--accent); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg); text-decoration: none;
  transition: all 0.3s var(--ease-out-expo);
  animation: pulseGlow 2.5s ease-in-out infinite;
}
.floating-call:hover { background: var(--accent-dark); transform: scale(1.12); box-shadow: var(--shadow-xl); animation: none; }
.floating-call svg { color: var(--white); }

/* ---- Lightbox ---- */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.92); align-items: center; justify-content: center; padding: 24px;
}
.lightbox.active,
.lightbox:not([hidden]) { display: flex; }
.lightbox[hidden] { display: none; }
.lightbox-overlay { position: absolute; inset: 0; }
.lightbox-content { position: relative; display: flex; align-items: center; justify-content: center; z-index: 1; }
.lightbox img,
.lightbox-img { max-width: 100%; max-height: 90vh; object-fit: contain; border-radius: var(--radius-md); animation: scaleIn 0.3s var(--ease-out-expo); }
.lightbox-close {
  position: absolute; top: 16px; right: 16px; width: 48px; height: 48px;
  background: rgba(255,255,255,0.1); border: none; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center; z-index: 2;
  font-size: 24px; color: var(--white);
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }
.lightbox-close svg { color: var(--white); }
.lightbox-prev, .lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; background: rgba(255,255,255,0.1);
  border: none; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center; z-index: 2;
  font-size: 24px; color: var(--white);
}
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.2); }
.lightbox-prev svg, .lightbox-next svg { color: var(--white); }

/* ---- Focus ---- */
*:focus-visible { outline: 3px solid var(--primary); outline-offset: 2px; }
.btn:focus-visible { outline: 3px solid var(--primary); outline-offset: 3px; box-shadow: 0 0 0 6px rgba(26,71,42,0.25); }

/* ---- Utility ---- */
.text-center { text-align: center; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }

/* ---- Responsive ---- */
@media (min-width: 640px) {
  .container { padding: 0 24px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .gallery-full .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .location-services { grid-template-columns: repeat(2, 1fr); }
  .why-us-grid { grid-template-columns: repeat(2, 1fr); }
  .materials-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 768px) {
  .hero h1 { font-size: 48px; }
  .hero-content { padding: 100px 0; }
  .page-hero h1 { font-size: 42px; }
  .page-hero { padding: 80px 0; }
  .section { padding: 80px 0; }
  .section-title, .section-header h2 { font-size: 36px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .site-footer .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-full .gallery-grid { grid-template-columns: repeat(4, 1fr); }
  .areas-grid { grid-template-columns: repeat(4, 1fr); }
  .about-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .cta-inner { grid-template-columns: 1fr 1fr; align-items: start; }
  .cta-section h2 { font-size: 40px; }
}

@media (min-width: 1024px) {
  .main-nav { display: block; }
  .main-nav .nav-list { display: flex; }
  .header-cta { display: inline-flex; }
  .mobile-toggle { display: none; }
  .hero h1 { font-size: 56px; letter-spacing: -0.03em; }
  .hero { min-height: 650px; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .why-us-grid { grid-template-columns: repeat(3, 1fr); }
  .process-grid { grid-template-columns: repeat(4, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
  .site-footer .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; }
  .materials-grid { grid-template-columns: repeat(3, 1fr); }
  .benefits-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 767px) {
  .hero { min-height: 550px; }
  .hero-content { text-align: center; margin-left: auto; margin-right: auto; }
  .hero-badge { margin-left: auto; margin-right: auto; }
  .hero-actions, .hero-ctas { justify-content: center; }
  .hero-rating { justify-content: center; }
  .hero-trust { justify-content: center; }
  .section-title, .section-header h2 { font-size: 28px; }
  .cta-section h2 { font-size: 28px; }
  .page-hero h1 { font-size: 28px; }
  .process-step-detail { flex-direction: column; gap: 16px; }
}

/* ---- Keyframe Animations ---- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(196,90,44,0.4); }
  50% { box-shadow: 0 0 0 12px rgba(196,90,44,0); }
}

/* Scroll-triggered animation utility */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo);
}
.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* Stagger delays for grid children */
.stagger-children .animate-on-scroll:nth-child(1) { transition-delay: 0ms; }
.stagger-children .animate-on-scroll:nth-child(2) { transition-delay: 80ms; }
.stagger-children .animate-on-scroll:nth-child(3) { transition-delay: 160ms; }
.stagger-children .animate-on-scroll:nth-child(4) { transition-delay: 240ms; }
.stagger-children .animate-on-scroll:nth-child(5) { transition-delay: 320ms; }
.stagger-children .animate-on-scroll:nth-child(6) { transition-delay: 400ms; }
.stagger-children .animate-on-scroll:nth-child(7) { transition-delay: 480ms; }
.stagger-children .animate-on-scroll:nth-child(8) { transition-delay: 560ms; }

@media (prefers-reduced-motion: reduce) {
  .animate-on-scroll { opacity: 1; transform: none; transition: none; }
  .animate-on-scroll.is-visible { transition: none; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
