/* ===== Variables & Reset ===== */
:root {
  --red: #C8102E;
  --red-dark: #9B0C22;
  --red-glow: rgba(200,16,46, 0.35);
  --gold: #F5A623;
  --dark: #000000;
  --dark-2: #0D0D0D;
  --dark-3: #1A1A1A;
  --light: #F7F7F7;
  --white: #FFFFFF;
  --gray: #6B7280;
  --gray-light: #9CA3AF;
  --border: #E5E7EB;
  --shadow: 0 4px 24px rgba(0,0,0,0.12);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.2);
}

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

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

body {
  font-family: 'Inter', sans-serif;
  color: #333;
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

/* ===== Scroll Reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== Promo Bar ===== */
.promo-bar {
  background: var(--red);
  color: var(--white);
  text-align: center;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  position: relative;
  z-index: 1001;
}
.promo-bar strong { font-weight: 900; font-size: 15px; }
.promo-bar a { color: var(--white); text-decoration: underline; margin-left: 12px; }

/* ===== Trust Grid ===== */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.trust-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
  transition: all 0.3s;
  border-top: 4px solid var(--red);
}
.trust-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.trust-card-icon { font-size: 32px; margin-bottom: 12px; }
.trust-card-value {
  font-family: 'Poppins', sans-serif;
  font-size: 26px;
  font-weight: 900;
  color: var(--red);
  line-height: 1.1;
  margin-bottom: 6px;
}
.trust-card h3 { font-size: 14px; color: var(--dark); font-weight: 700; margin-bottom: 6px; }
.trust-card p { font-size: 13px; color: var(--gray); line-height: 1.5; }

/* ===== Service Detail Cards ===== */
.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 16px;
}
.service-detail-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 36px 32px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.service-detail-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--red);
}
.service-detail-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-detail-icon { font-size: 36px; margin-bottom: 18px; }
.service-detail-card h3 { font-size: 20px; color: var(--dark); margin-bottom: 12px; }
.service-detail-card p { font-size: 15px; color: var(--gray); line-height: 1.75; }

/* ===== Promo Banner (inline) ===== */
.promo-banner {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  border: 1px solid rgba(200,16,46,0.3);
  border-radius: 14px;
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.promo-banner-text h3 { font-size: 24px; color: var(--white); margin-bottom: 6px; }
.promo-banner-text p { font-size: 15px; color: rgba(255,255,255,0.6); }
.promo-banner-badge {
  background: var(--red);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 900;
  padding: 16px 28px;
  border-radius: 10px;
  white-space: nowrap;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .promo-bar { font-size: 12px; }
  .promo-banner { flex-direction: column; text-align: center; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .trust-grid { grid-template-columns: 1fr; }
}

/* ===== City Page Two-Col Intro ===== */
.two-col-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 768px) {
  .two-col-intro { grid-template-columns: 1fr; gap: 32px; }
}

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--red);
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: 0 4px 20px rgba(200,16,46,0.2); }

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.logo img {
  height: 56px;
  width: auto;
  background: #fff;
  border-radius: 6px;
  padding: 4px 8px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  font-size: 15px;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all 0.25s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%; height: 2px;
  background: var(--red);
  transition: transform 0.25s;
  border-radius: 2px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.active::after { transform: translateX(-50%) scaleX(1); }

.nav-links .cta-btn {
  background: var(--red);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.nav-links .cta-btn::after { display: none; }
.nav-links .cta-btn:hover { background: var(--red-dark); transform: translateY(-1px); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.3px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s;
  font-family: 'Inter', sans-serif;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px var(--red-glow);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
  transform: translateY(-3px);
}
.btn-lg { padding: 18px 44px; font-size: 17px; }
.btn-dark {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}
.btn-dark:hover {
  background: var(--dark-2);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  background: #000000;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 180px 24px 80px;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.hero-logo-watermark {
  position: absolute;
  right: 8%;
  bottom: 8%;
  width: min(700px, 70vw);
  opacity: 0.12;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 0 60px rgba(200,16,46,0.4));
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, transparent 30%, rgba(0,0,0,0.82) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,16,46,0.15);
  border: 1px solid rgba(200,16,46,0.4);
  color: var(--red);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero-badge-dot {
  width: 7px; height: 7px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse-dot 1.5s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero h1 {
  font-size: clamp(44px, 6vw, 76px);
  color: var(--white);
  font-weight: 900;
  margin-bottom: 24px;
  text-shadow: 0 4px 24px rgba(0,0,0,0.4);
}
.hero h1 span { color: var(--red); }

.hero p {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255,255,255,0.75);
  margin-bottom: 44px;
  max-width: 520px;
  line-height: 1.7;
}

.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}
.hero-stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.hero-stat-number span { color: var(--red); }
.hero-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 4px;
}

/* ===== Stats Bar ===== */
.stats-bar {
  background: var(--red);
  padding: 0;
  overflow: hidden;
}
.stats-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  text-align: center;
  padding: 32px 20px;
  border-right: 1px solid rgba(255,255,255,0.2);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-item:nth-child(even) { background: rgba(0,0,0,0.1); }
.stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 40px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 6px;
  font-weight: 500;
}

/* ===== Section Base ===== */
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-dark { background: var(--dark); color: var(--white); }
.section-light { background: var(--light); }

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(30px, 4vw, 48px);
  margin-bottom: 20px;
  color: var(--dark);
}
.section-dark .section-title { color: var(--white); }

.section-subtitle {
  font-size: 17px;
  color: var(--gray);
  max-width: 560px;
  margin-bottom: 56px;
  line-height: 1.7;
}
.section-dark .section-subtitle { color: rgba(255,255,255,0.6); }

.section-header { margin-bottom: 56px; }
.section-header-center { text-align: center; }
.section-header-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* ===== Google Reviews ===== */
.google-rating-badge {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 32px;
  max-width: 540px;
  margin: 0 auto 56px;
  box-shadow: var(--shadow);
  flex-wrap: wrap;
}
.google-rating-stars { display: flex; align-items: center; gap: 8px; }
.google-rating-stars span { color: #C8102E; font-size: 22px; letter-spacing: 2px; }
.google-rating-stars strong { font-size: 28px; font-family: 'Poppins', sans-serif; font-weight: 900; color: var(--dark); }
.google-rating-meta { font-size: 14px; color: var(--gray); line-height: 1.6; }
.google-rating-meta strong { color: var(--dark); }
.google-rating-meta a { display: block; color: var(--red); font-weight: 600; margin-top: 4px; text-decoration: none; }
.google-rating-meta a:hover { text-decoration: underline; }

.google-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.google-review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  box-shadow: var(--shadow);
  transition: all 0.3s;
}
.google-review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.gr-header { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.gr-avatar {
  width: 42px; height: 42px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 700; font-size: 18px;
  flex-shrink: 0;
}
.gr-name { font-weight: 700; font-size: 15px; color: var(--dark); }
.gr-stars { color: #C8102E; font-size: 14px; margin-top: 2px; }
.gr-google-icon { margin-left: auto; flex-shrink: 0; }
.gr-text { font-size: 14px; color: #555; line-height: 1.75; font-style: italic; margin-bottom: 12px; }
.gr-date { font-size: 12px; color: var(--gray-light); }

/* ===== Service Cards ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: 12px;
  padding: 40px 32px;
  border: 1px solid var(--border);
  transition: all 0.35s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.12);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon-wrap {
  width: 64px; height: 64px;
  background: rgba(200,16,46,0.08);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 30px;
  transition: background 0.35s;
}
.service-card:hover .service-icon-wrap {
  background: rgba(200,16,46,0.15);
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--dark);
}
.service-card p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
}
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--red);
  transition: gap 0.25s;
}
.service-card:hover .service-card-link { gap: 10px; }

/* ===== Feature Cards ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all 0.3s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.feature-num {
  width: 40px; height: 40px;
  background: var(--red);
  color: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 16px;
  flex-shrink: 0;
}
.feature-card h3 { font-size: 17px; margin-bottom: 8px; color: var(--dark); }
.feature-card p { font-size: 14px; color: var(--gray); line-height: 1.65; }

/* Dark feature card variant */
.feature-card-dark {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.08);
}
.feature-card-dark h3 { color: var(--white); }
.feature-card-dark p { color: rgba(255,255,255,0.55); }

/* ===== Process Steps ===== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 2px;
  background: linear-gradient(to right, var(--red) 0%, rgba(200,16,46,0.2) 100%);
  z-index: 0;
}

.process-step {
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 72px; height: 72px;
  background: var(--dark);
  border: 3px solid var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 900;
  color: var(--red);
  margin: 0 auto 20px;
  transition: all 0.3s;
}
.process-step:hover .step-num {
  background: var(--red);
  color: var(--white);
  transform: scale(1.1);
}
.process-step h3 { font-size: 17px; color: var(--white); margin-bottom: 8px; }
.process-step p { font-size: 14px; color: rgba(255,255,255,0.5); }

/* ===== Testimonials ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border-radius: 12px;
  padding: 36px;
  border: 1px solid var(--border);
  position: relative;
  transition: all 0.3s;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.quote-icon {
  font-size: 60px;
  font-family: Georgia, serif;
  color: var(--red);
  line-height: 0.6;
  margin-bottom: 20px;
  opacity: 0.4;
}

.testimonial-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-footer { display: flex; align-items: center; gap: 16px; }
.testimonial-avatar {
  width: 48px; height: 48px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; color: var(--dark); font-size: 15px; }
.testimonial-loc { font-size: 13px; color: var(--gray); }
.stars { color: #F59E0B; font-size: 15px; margin-bottom: 4px; }

/* ===== CTA Strip ===== */
.cta-section {
  background: var(--red);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%; left: -10%;
  width: 50%; height: 200%;
  background: rgba(255,255,255,0.04);
  transform: skewX(-15deg);
}
.cta-section::after {
  content: '';
  position: absolute;
  top: -50%; right: -5%;
  width: 30%; height: 200%;
  background: rgba(0,0,0,0.08);
  transform: skewX(-15deg);
}
.cta-section h2 {
  font-size: clamp(28px, 4vw, 46px);
  color: var(--white);
  margin-bottom: 16px;
  position: relative; z-index: 1;
}
.cta-section p {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  position: relative; z-index: 1;
}
.cta-section .btn-group { position: relative; z-index: 1; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-white { background: var(--white); color: var(--red); border-color: var(--white); font-weight: 700; }
.btn-white:hover { background: rgba(255,255,255,0.9); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.btn-white-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.7); }
.btn-white-outline:hover { background: rgba(255,255,255,0.1); transform: translateY(-3px); }

/* ===== Page Header ===== */
.page-header {
  background: var(--dark);
  padding: 140px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(200,16,46,0.2) 0%, transparent 60%);
}
.page-header-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,16,46,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,16,46,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}
.page-header .section-label { display: block; margin-bottom: 12px; }
.page-header h1 { font-size: clamp(36px, 5vw, 64px); color: var(--white); margin-bottom: 16px; position: relative; z-index: 1; }
.page-header p { font-size: 18px; color: rgba(255,255,255,0.65); position: relative; z-index: 1; max-width: 560px; margin: 0 auto; }

/* ===== Services Page ===== */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.service-block:last-child { border-bottom: none; }
.service-block.reverse .service-block-img { order: -1; }

.service-block-img {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}
.service-block-placeholder {
  background: linear-gradient(135deg, var(--light) 0%, #e8e8e8 100%);
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  border: 2px dashed var(--border);
  font-size: 48px;
  gap: 12px;
}
.service-block-placeholder span { font-size: 15px; color: var(--gray); font-family: 'Inter', sans-serif; font-weight: 500; }

.service-block-content h2 { font-size: 36px; margin-bottom: 16px; color: var(--dark); }
.service-block-content .section-label { margin-bottom: 8px; }
.service-block-content p { font-size: 16px; color: var(--gray); line-height: 1.75; margin-bottom: 24px; }

.checklist { margin-top: 8px; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  font-size: 15px;
  color: #444;
  border-bottom: 1px solid var(--border);
}
.checklist li:last-child { border-bottom: none; }
.checklist-icon {
  width: 22px; height: 22px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 11px;
  color: var(--white);
}

/* ===== About Page ===== */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-img-placeholder {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  border-radius: 16px;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 64px;
  border: 1px solid rgba(200,16,46,0.3);
  box-shadow: inset 0 0 60px rgba(200,16,46,0.05);
}
.about-img-placeholder span { font-size: 15px; color: rgba(255,255,255,0.4); font-family: 'Inter', sans-serif; }

.about-text h2 { font-size: 40px; margin-bottom: 20px; color: var(--dark); }
.about-text p { font-size: 16px; color: var(--gray); line-height: 1.8; margin-bottom: 20px; }
.about-text .btn { margin-top: 8px; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--dark-2);
  border-radius: 12px;
  padding: 32px;
  border: 1px solid rgba(255,255,255,0.07);
  transition: all 0.3s;
  text-align: center;
}
.value-card:hover { border-color: rgba(200,16,46,0.4); transform: translateY(-4px); }
.value-icon { font-size: 36px; margin-bottom: 16px; }
.value-card h3 { font-size: 18px; color: var(--white); margin-bottom: 10px; }
.value-card p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.65; }

.creds-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.cred-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 16px 20px;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}
.cred-check {
  width: 28px; height: 28px;
  background: rgba(200,16,46,0.2);
  border: 1px solid var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  color: var(--red);
  flex-shrink: 0;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.area-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px;
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.area-card:hover { border-color: var(--red); transform: translateY(-4px); box-shadow: var(--shadow); }
.area-card h3 { font-size: 17px; color: var(--dark); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--red); display: inline-block; }
.area-card li { padding: 6px 0; color: var(--gray); font-size: 15px; border-bottom: 1px solid var(--border); }
.area-card li:last-child { border-bottom: none; }
.area-card li::before { content: '→ '; color: var(--red); font-weight: 700; }

/* ===== Gallery Page ===== */
.gallery-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.gallery-tab {
  padding: 10px 24px;
  border-radius: 100px;
  border: 2px solid var(--border);
  font-size: 14px;
  font-weight: 600;
  color: var(--gray);
  cursor: pointer;
  transition: all 0.25s;
  background: var(--white);
}
.gallery-tab:hover, .gallery-tab.active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  background: var(--light);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.35s;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.gallery-overlay-text {
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  transform: translateY(10px);
  transition: transform 0.35s;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover .gallery-overlay-text { transform: translateY(0); }

.gallery-item.featured { grid-column: span 2; grid-row: span 2; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 8px;
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  font-size: 32px;
  color: var(--white);
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--white);
  font-size: 28px;
  width: 52px; height: 52px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.lightbox-nav:hover { background: var(--red); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* ===== Contact Page ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: start;
}

.contact-form-wrap {
  background: var(--white);
  border-radius: 16px;
  padding: 48px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.contact-form-wrap h2 { font-size: 30px; margin-bottom: 8px; color: var(--dark); }
.contact-form-wrap > p { font-size: 15px; color: var(--gray); margin-bottom: 32px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--dark);
  background: var(--white);
  transition: all 0.25s;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-glow);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-group select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236B7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 20px;
  padding-right: 40px;
}

.contact-sidebar { display: flex; flex-direction: column; gap: 20px; }

.contact-card {
  background: var(--white);
  border-radius: 12px;
  padding: 28px;
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.contact-card:hover { border-color: var(--red); box-shadow: var(--shadow); }
.contact-card-icon {
  width: 48px; height: 48px;
  background: rgba(200,16,46,0.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}
.contact-card h3 { font-size: 16px; color: var(--dark); margin-bottom: 6px; }
.contact-card .contact-value {
  font-size: 20px;
  font-weight: 700;
  color: var(--red);
  display: block;
  margin-bottom: 4px;
  text-decoration: none;
}
.contact-card .contact-value:hover { color: var(--red-dark); }
.contact-card p { font-size: 13px; color: var(--gray); }

.hours-list { margin-top: 4px; }
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.hours-row:last-child { border-bottom: none; }
.hours-row .day { color: var(--dark); font-weight: 500; }
.hours-row .time { color: var(--gray); }

/* FAQ Accordion */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.faq-item.open { box-shadow: var(--shadow); border-color: rgba(200,16,46,0.3); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: 'Inter', sans-serif;
  transition: color 0.25s;
}
.faq-question:hover { color: var(--red); }
.faq-item.open .faq-question { color: var(--red); }
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  line-height: 1;
  transition: all 0.3s;
  font-weight: 300;
}
.faq-item.open .faq-icon {
  background: var(--red);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}
.faq-answer-inner {
  padding: 0 24px 24px;
  font-size: 15px;
  color: var(--gray);
  line-height: 1.75;
}

/* ===== Footer ===== */
.footer {
  background: var(--dark);
  padding: 72px 0 0;
  border-top: 3px solid var(--red);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand img {
  height: 52px;
  margin-bottom: 16px;
  background: #fff;
  border-radius: 6px;
  padding: 4px 8px;
}
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.75; max-width: 260px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.social-btn {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  transition: all 0.25s;
  color: rgba(255,255,255,0.6);
}
.social-btn:hover { background: var(--red); color: var(--white); }

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--red);
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: color 0.25s;
  display: flex; align-items: center; gap: 6px;
}
.footer-col ul a:hover { color: var(--white); }
.footer-col ul a::before { content: '→'; font-size: 12px; color: var(--red); }
.footer-col p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.75; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.footer-contact-icon { font-size: 16px; margin-top: 1px; }
.footer-contact-info a { font-size: 15px; color: rgba(255,255,255,0.8); font-weight: 600; transition: color 0.25s; }
.footer-contact-info a:hover { color: var(--red); }
.footer-contact-info span { display: block; font-size: 12px; color: rgba(255,255,255,0.4); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.35); }
.footer-bottom a { color: var(--red); }

/* ===== Floating Call Button ===== */
.float-call {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  background: var(--red);
  color: var(--white);
  padding: 14px 22px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 8px 28px rgba(200,16,46,0.5);
  transition: all 0.3s;
  animation: float-bounce 3s ease-in-out infinite;
}
.float-call:hover {
  background: var(--red-dark);
  transform: translateY(-4px) !important;
  box-shadow: 0 12px 36px rgba(200,16,46,0.6);
}
.float-call-icon { font-size: 20px; animation: ring 2s ease-in-out infinite; }
@keyframes ring {
  0%, 100% { transform: rotate(0deg); }
  10% { transform: rotate(15deg); }
  20% { transform: rotate(-10deg); }
  30% { transform: rotate(8deg); }
  40% { transform: rotate(0deg); }
}
@keyframes float-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-sidebar { flex-direction: row; flex-wrap: wrap; }
  .contact-card { flex: 1; min-width: 200px; }
}

@media (max-width: 900px) {
  .service-block { grid-template-columns: 1fr; gap: 32px; }
  .service-block.reverse .service-block-img { order: 0; }
  .about-story { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .areas-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.featured { grid-column: span 1; grid-row: span 1; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(10,10,10,0.98);
    flex-direction: column;
    padding: 20px;
    gap: 4px;
    border-top: 1px solid rgba(200,16,46,0.3);
  }
  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; padding: 12px 16px; border-radius: 8px; }
  .nav-links .cta-btn { text-align: center; }

  .hero-stats { gap: 24px; }
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px; }

  .values-grid { grid-template-columns: 1fr; }
  .process-steps { gap: 32px; }
  .process-steps::before { display: none; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }

  .float-call span:not(.float-call-icon) { display: none; }
  .float-call { padding: 14px; border-radius: 50%; width: 56px; height: 56px; justify-content: center; }
}

@media (max-width: 500px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .testimonials-grid { grid-template-columns: 1fr; }
}
