/* ===== VARIABLES ===== */
:root {
  --primary: #1A2B4A;
  --primary-light: #243866;
  --primary-dark: #0d1c32;
  --accent: #D4A843;
  --accent-dark: #b8902e;
  --bg: #F7F8FA;
  --white: #ffffff;
  --text: #222222;
  --text-light: #666666;
  --border: #e2e6ed;
  --shadow: 0 4px 24px rgba(26, 43, 74, 0.10);
  --shadow-hover: 0 10px 40px rgba(26, 43, 74, 0.18);
  --radius: 8px;
  --radius-lg: 14px;
  --transition: 0.3s ease;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Segoe UI', system-ui, -apple-system, sans-serif; color: var(--text); background: var(--white); line-height: 1.6; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

/* ===== UTILITIES ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-alt { background: var(--bg); }
.section-dark { background: var(--primary); color: var(--white); }
.section-header { margin-bottom: 3rem; }
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

.section-tag {
  display: inline-block;
  background: rgba(212, 168, 67, 0.12);
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  margin-bottom: 0.9rem;
  border: 1px solid rgba(212, 168, 67, 0.3);
}
.section-title { color: var(--primary); margin-bottom: 0.9rem; }
.section-subtitle { color: var(--text-light); font-size: 1.05rem; max-width: 620px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}
.btn-primary { background: var(--accent); color: var(--primary); }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(212,168,67,0.35); }
.btn-accent { background: var(--accent); color: var(--primary); }
.btn-accent:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(212,168,67,0.4); }
.btn-ghost { background: rgba(255,255,255,0.1); color: var(--white); border-color: rgba(255,255,255,0.55); backdrop-filter: blur(4px); }
.btn-ghost:hover { background: var(--white); color: var(--primary); border-color: var(--white); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--primary); }
.btn-dark { background: var(--primary); color: var(--white); }
.btn-dark:hover { background: var(--primary-light); transform: translateY(-2px); box-shadow: var(--shadow); }

/* ===== TOP BAR ===== */
.topbar {
  background: var(--primary-dark);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
}
.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.5rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.topbar-contact {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.topbar-contact a,
.topbar-contact span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
}
.topbar-contact a:hover { color: var(--accent); }
.topbar-icon { font-size: 0.85rem; }
.topbar-right { display: flex; align-items: center; gap: 1.25rem; }
.topbar-hours { color: rgba(255,255,255,0.5); font-size: 0.8rem; }
.topbar-social { display: flex; gap: 0.5rem; }
.topbar-social a {
  width: 26px;
  height: 26px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.topbar-social a:hover { background: var(--accent); color: var(--primary); border-color: var(--accent); }

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--primary);
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
  transition: var(--transition);
}
.navbar.scrolled { background: rgba(26,43,74,0.97); backdrop-filter: blur(12px); box-shadow: 0 4px 24px rgba(0,0,0,0.3); }
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo-img { height: 70px; width: auto; mix-blend-mode: screen; filter: brightness(1.15); transition: var(--transition); }
.nav-logo-img:hover { filter: brightness(1.35); }
.nav-links { display: flex; align-items: center; gap: 0.15rem; }
.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius);
  transition: var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); background: rgba(255,255,255,0.08); }
.nav-cta { background: var(--accent) !important; color: var(--primary) !important; font-weight: 700 !important; padding: 0.5rem 1.25rem !important; }
.nav-cta:hover { background: var(--accent-dark) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }
.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); }

/* ===== HERO CAROUSEL ===== */
.hero-carousel {
  position: relative;
  overflow: hidden;
  background: var(--primary-dark);
}
.carousel-track {
  display: flex;
  transition: transform 0.7s cubic-bezier(0.77, 0, 0.175, 1);
  will-change: transform;
}
.carousel-slide {
  min-width: 100%;
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.slide-1 { background: linear-gradient(135deg, #0d1c32 0%, #1A2B4A 50%, #1f3460 100%); }
.slide-2 { background: linear-gradient(135deg, #1A2B4A 0%, #0d1c32 50%, #243866 100%); }
.slide-3 { background: linear-gradient(135deg, #162440 0%, #1A2B4A 50%, #0d1c32 100%); }
.carousel-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.018) 0px, rgba(255,255,255,0.018) 1px, transparent 1px, transparent 60px),
    repeating-linear-gradient(-45deg, rgba(255,255,255,0.018) 0px, rgba(255,255,255,0.018) 1px, transparent 1px, transparent 60px);
}
.carousel-slide::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,168,67,0.08) 0%, transparent 70%);
  top: -150px;
  right: -100px;
  pointer-events: none;
}
.slide-overlay { position: absolute; inset: 0; background: rgba(10,18,32,0.25); }
.slide-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 5rem 0 4rem;
}
.slide-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(212,168,67,0.18);
  border: 1px solid rgba(212,168,67,0.5);
  color: var(--accent);
  padding: 0.45rem 1.2rem;
  border-radius: 50px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(4px);
}
.slide-content h1,
.slide-left h1 { color: var(--white); margin-bottom: 1.5rem; }

.slide-content h1 span,
.slide-left h1 span { color: var(--accent); }

.slide-content p,
.slide-left p { color: rgba(255,255,255,0.78); font-size: 1.08rem; line-height: 1.7; margin-bottom: 2.5rem; max-width: 520px; }

.slide-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Slide 2-column layout */
.slide-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding: 5rem 0 4rem;
  width: 100%;
}
.slide-left { max-width: 560px; }
.slide-right { display: flex; align-items: center; justify-content: flex-end; }
.slide-photo-frame {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 4/3;
  border-radius: 20px;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: 5px solid rgba(255,255,255,0.12);
  box-shadow:
    0 0 0 1px rgba(212,168,67,0.35),
    0 28px 70px rgba(0,0,0,0.4),
    0 8px 20px rgba(0,0,0,0.2);
}
.slide-photo-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.slide-photo-hint {
  color: rgba(255,255,255,0.3);
  text-align: center;
  padding: 1rem;
  position: relative;
  z-index: 1;
}
.slide-photo-hint p { font-size: 0.85rem; margin-top: 0.6rem; }
.slide-photo-hint code { font-size: 0.72rem; opacity: 0.6; display: block; margin-top: 0.3rem; font-family: monospace; }
.slide-photo-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: var(--accent);
  color: var(--primary);
  padding: 0.65rem 1.1rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.78rem;
  box-shadow: 0 4px 16px rgba(212,168,67,0.45);
  z-index: 2;
  line-height: 1.3;
}
.slide-photo-badge strong { display: block; font-size: 1.25rem; font-weight: 800; }

/* Update slide-content if still used elsewhere */
.slide-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 5rem 0 4rem;
}

/* Carousel Buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.6rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  line-height: 1;
}
.carousel-btn:hover { background: var(--accent); border-color: var(--accent); color: var(--primary); }
.carousel-prev { left: 1.5rem; }
.carousel-next { right: 1.5rem; }

/* Dots */
.carousel-dots {
  position: absolute;
  bottom: 6rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 0.5rem;
}
.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}
.carousel-dot.active { background: var(--accent); width: 28px; border-radius: 5px; }

/* Stats Bar */
.hero-stats-bar {
  position: relative;
  z-index: 10;
  background: rgba(255,255,255,0.04);
  border-top: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
}
.hero-stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 1.25rem 0;
}
.hero-stat-item {
  flex: 1;
  text-align: center;
  padding: 0.75rem 1.5rem;
}
.hero-stat-item strong {
  display: block;
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.hero-stat-item span { font-size: 0.82rem; color: rgba(255,255,255,0.55); margin-top: 0.3rem; display: block; }
.hero-stat-sep { width: 1px; height: 40px; background: rgba(255,255,255,0.12); flex-shrink: 0; }

/* ===== IDENTITY SECTION ===== */
.identity-section { background: var(--white); }
.identity-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.identity-image {
  position: relative;
  padding: 0 28px 28px 0;
}
.identity-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
  position: relative;
  z-index: 2;
  border: 5px solid white;
  box-shadow: 0 32px 80px rgba(10,30,80,0.22), 0 8px 24px rgba(10,30,80,0.12);
}
.identity-image::after {
  content: '';
  position: absolute;
  top: 28px; right: 0; bottom: 0; left: 28px;
  background: linear-gradient(135deg, var(--accent), rgba(212,168,67,0.3));
  border-radius: 18px;
  z-index: 1;
  opacity: 0.28;
}
.identity-image::before {
  content: '';
  position: absolute;
  top: -14px; right: 14px;
  width: 88px; height: 88px;
  background-image: radial-gradient(circle, var(--accent) 2px, transparent 2px);
  background-size: 12px 12px;
  opacity: 0.45;
  z-index: 3;
}
.identity-img-placeholder {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  height: 480px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.identity-img-icon { font-size: 5rem; }
.identity-img-placeholder p { color: rgba(255,255,255,0.4); font-size: 0.9rem; }
.identity-badge {
  position: absolute;
  bottom: 2rem;
  right: -1.5rem;
  background: var(--accent);
  color: var(--primary);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-lg);
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 8px 28px rgba(212,168,67,0.45);
  text-align: center;
  min-width: 120px;
}
.identity-badge-num { display: block; font-size: 1.6rem; font-weight: 800; line-height: 1.1; }
.identity-lead { color: var(--primary); font-size: 1.05rem; font-weight: 500; margin-bottom: 1rem; }
.identity-features { display: grid; gap: 1.25rem; margin-top: 1.5rem; }
.identity-feature { display: flex; gap: 1rem; align-items: flex-start; }
.identity-feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(212,168,67,0.1);
  border: 1px solid rgba(212,168,67,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  color: var(--accent-dark);
}
.identity-feature h4 { color: var(--primary); font-size: 0.95rem; margin-bottom: 0.25rem; }
.identity-feature p { color: var(--text-light); font-size: 0.88rem; }

/* ===== SERVICES ===== */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.5rem; }
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); border-color: rgba(212,168,67,0.3); }
.service-card-img {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  position: relative;
  overflow: hidden;
}
.service-card-body { padding: 1.5rem; }
.service-card-body h3 { color: var(--primary); margin-bottom: 0.6rem; font-size: 1.1rem; }
.service-card-body p { color: var(--text-light); font-size: 0.92rem; margin-bottom: 1.1rem; line-height: 1.6; }
.service-card-link { color: var(--accent); font-weight: 600; font-size: 0.88rem; display: inline-flex; align-items: center; gap: 0.3rem; transition: var(--transition); }
.service-card-link:hover { gap: 0.55rem; color: var(--accent-dark); }

/* ===== METHODOLOGY ===== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
  margin-top: 2.5rem;
  align-items: start;
}

/* Animated connecting line */
.process-track {
  position: absolute;
  top: 31px;
  left: 12.5%;
  right: 12.5%;
  height: 3px;
  background: rgba(212,168,67,0.15);
  border-radius: 3px;
  z-index: 0;
  overflow: hidden;
}
.process-track-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--accent), #f5c842);
  border-radius: 3px;
  transition: width 2s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.process-steps.animated .process-track-fill { width: 100%; }

/* Step wrapper */
.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.process-step.visible { opacity: 1; transform: translateY(0); }

/* Number circle */
.process-step-num {
  width: 64px;
  height: 64px;
  background: var(--white);
  border: 3px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.4rem;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
  box-shadow: 0 4px 16px rgba(212,168,67,0.25);
  transition: background 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
}
.process-step-num::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  opacity: 0;
}
.process-step.visible .process-step-num::before {
  animation: stepRipple 0.9s ease-out forwards;
}
@keyframes stepRipple {
  0%   { opacity: 0.7; transform: scale(0.8); }
  100% { opacity: 0;   transform: scale(1.45); }
}
.process-step:hover .process-step-num {
  background: var(--accent);
  color: white;
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(212,168,67,0.45);
}

/* Card */
.process-step-card {
  background: white;
  border-radius: 14px;
  padding: 1.5rem 1.25rem 1.75rem;
  box-shadow: 0 2px 18px rgba(10,30,80,0.07);
  border: 1px solid rgba(212,168,67,0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.process-step:hover .process-step-card {
  transform: translateY(-8px);
  box-shadow: 0 18px 44px rgba(212,168,67,0.18);
  border-color: rgba(212,168,67,0.45);
}

/* Icon inside card */
.process-step-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 1rem;
  color: var(--accent);
}
.process-step-icon svg { width: 100%; height: 100%; }

.process-step h4 { color: var(--primary); margin-bottom: 0.5rem; font-size: 1rem; font-weight: 700; }
.process-step p { color: var(--text-light); font-size: 0.87rem; line-height: 1.65; }

/* ===== WHY US ===== */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: center; }
.why-features { display: grid; gap: 1.4rem; }
.why-feature { display: flex; gap: 1.25rem; align-items: flex-start; }
.why-feature-icon {
  width: 52px;
  height: 52px;
  background: rgba(212,168,67,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  border: 1px solid rgba(212,168,67,0.2);
  color: var(--accent-dark);
}
.why-feature-body h4 { color: var(--primary); margin-bottom: 0.3rem; font-size: 0.98rem; }
.why-feature-body p { color: var(--text-light); font-size: 0.88rem; }
.why-image {
  position: relative;
  padding: 0 0 28px 28px;
}
.why-image img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
  position: relative;
  z-index: 2;
  border: 5px solid white;
  box-shadow: 0 32px 80px rgba(10,30,80,0.22), 0 8px 24px rgba(10,30,80,0.12);
}
.why-image::after {
  content: '';
  position: absolute;
  top: 28px; right: 28px; bottom: 0; left: 0;
  background: linear-gradient(135deg, var(--accent), rgba(212,168,67,0.3));
  border-radius: 18px;
  z-index: 1;
  opacity: 0.28;
}
.why-image::before {
  content: '';
  position: absolute;
  top: -14px; left: 14px;
  width: 88px; height: 88px;
  background-image: radial-gradient(circle, var(--accent) 2px, transparent 2px);
  background-size: 12px 12px;
  opacity: 0.45;
  z-index: 3;
}
.why-image-placeholder {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  height: 460px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.big-icon { font-size: 5rem; }
.why-image-placeholder p { color: rgba(255,255,255,0.4); font-size: 0.9rem; }
.why-badge {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  background: var(--accent);
  color: var(--primary);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-lg);
  font-weight: 700;
  font-size: 0.88rem;
  box-shadow: 0 8px 28px rgba(212,168,67,0.45);
}
.why-badge strong { display: block; font-size: 1.5rem; }

/* ===== STATS ===== */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.stat-item { text-align: center; padding: 2rem 1rem; }
.stat-number { font-size: 3rem; font-weight: 800; color: var(--accent); display: block; }
.stat-label { color: rgba(255,255,255,0.6); font-size: 0.88rem; margin-top: 0.3rem; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.testimonial-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-color: rgba(212,168,67,0.3); }
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 4rem;
  color: rgba(212,168,67,0.2);
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial-stars { color: var(--accent); font-size: 1.05rem; letter-spacing: 2px; margin-bottom: 1rem; }
.testimonial-text { color: var(--text-light); font-size: 0.93rem; line-height: 1.7; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.9rem; }
.testimonial-avatar {
  width: 46px;
  height: 46px;
  background: var(--primary);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; color: var(--primary); font-size: 0.95rem; }
.testimonial-author span { color: var(--text-light); font-size: 0.82rem; }

/* ===== BLOG ===== */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.5rem; }
.blog-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition); }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.blog-card-image { height: 190px; display: flex; align-items: center; justify-content: center; font-size: 3rem; position: relative; }
.blog-card-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--accent);
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.blog-card-body { padding: 1.5rem; }
.blog-card-meta { display: flex; gap: 1rem; color: var(--text-light); font-size: 0.8rem; margin-bottom: 0.7rem; }
.blog-card h3 { color: var(--primary); margin-bottom: 0.7rem; font-size: 1.05rem; }
.blog-card p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 1.1rem; line-height: 1.6; }
.blog-card-link { color: var(--accent); font-weight: 600; font-size: 0.88rem; display: inline-flex; align-items: center; gap: 0.3rem; transition: var(--transition); }
.blog-card-link:hover { gap: 0.55rem; }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 5.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, rgba(212,168,67,0.025) 0px, rgba(212,168,67,0.025) 1px, transparent 1px, transparent 50px);
}
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; position: relative; }
.cta-banner p { color: rgba(255,255,255,0.72); margin-bottom: 2rem; font-size: 1.05rem; position: relative; }
.cta-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; position: relative; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); padding: 8rem 0 4rem; text-align: center; }
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1.05rem; max-width: 580px; margin: 0 auto; }
.breadcrumb { display: flex; justify-content: center; gap: 0.5rem; margin-top: 1.5rem; font-size: 0.83rem; color: rgba(255,255,255,0.45); }
.breadcrumb a { color: var(--accent); }
.breadcrumb span { color: rgba(255,255,255,0.3); }

/* ===== SERVICES PAGE ===== */
.service-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; padding: 4rem 0; border-bottom: 1px solid var(--border); }
.service-detail:last-child { border-bottom: none; }
.service-detail.reverse { direction: rtl; }
.service-detail.reverse > * { direction: ltr; }
.service-detail-placeholder { height: 380px; border-radius: var(--radius-lg); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; }
.service-detail-body h2 { color: var(--primary); margin-bottom: 1rem; font-size: 1.8rem; }
.service-detail-body p { color: var(--text-light); margin-bottom: 1.25rem; }
.service-features { display: grid; grid-template-columns: 1fr 1fr; gap: 0.55rem; margin-bottom: 1.5rem; }
.service-feature-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; color: var(--text); }
.service-feature-item::before { content: '✓'; color: var(--accent); font-weight: 700; flex-shrink: 0; }

/* ===== CONTACT ===== */
.contact-layout { display: grid; grid-template-columns: 1fr 2fr; gap: 3rem; }
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.5rem; display: flex; gap: 1rem; align-items: flex-start; }
.contact-info-icon { width: 48px; height: 48px; background: var(--primary); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--white); }
.contact-info-body h4 { color: var(--primary); margin-bottom: 0.25rem; font-size: 0.92rem; }
.contact-info-body p, .contact-info-body a { color: var(--text-light); font-size: 0.88rem; }
.contact-info-body a:hover { color: var(--accent); }
.contact-hours { background: linear-gradient(135deg, var(--primary), var(--primary-light)); border-radius: var(--radius-lg); padding: 1.5rem; color: var(--white); }
.contact-hours h4 { color: var(--accent); margin-bottom: 1rem; }
.contact-hours-list { display: grid; gap: 0.5rem; font-size: 0.88rem; }
.contact-hours-list li { display: flex; justify-content: space-between; padding-bottom: 0.5rem; border-bottom: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.8); }
.contact-hours-list li:last-child { border-bottom: none; }

/* ===== FORMS ===== */
.form-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: var(--shadow); }
.form-card h3 { color: var(--primary); margin-bottom: 0.5rem; }
.form-card > p { color: var(--text-light); font-size: 0.93rem; margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.15rem; }
.form-group label { font-size: 0.86rem; font-weight: 600; color: var(--primary); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.93rem;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(212,168,67,0.12); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { cursor: pointer; }
.form-submit { width: 100%; padding: 1rem; font-size: 1rem; }
.form-success { display: none; background: #e8f5e9; border: 1px solid #4caf50; color: #2e7d32; padding: 1rem 1.5rem; border-radius: var(--radius); margin-top: 1rem; font-weight: 600; text-align: center; }

/* ===== DEVIS PAGE ===== */
.devis-layout { display: grid; grid-template-columns: 1fr 2fr; gap: 3rem; }
.devis-info { position: sticky; top: 90px; height: fit-content; }
.devis-info-card { background: linear-gradient(135deg, var(--primary), var(--primary-light)); border-radius: var(--radius-lg); padding: 2rem; color: var(--white); }
.devis-info-card h3 { color: var(--accent); margin-bottom: 1rem; }
.devis-steps { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2rem; }
.devis-step { display: flex; gap: 1rem; align-items: center; }
.devis-step-num { width: 36px; height: 36px; background: var(--accent); color: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.9rem; flex-shrink: 0; }
.devis-step-text { font-size: 0.88rem; color: rgba(255,255,255,0.82); }
.devis-step-text strong { color: var(--white); display: block; }
.devis-guarantee { background: rgba(212,168,67,0.12); border: 1px solid rgba(212,168,67,0.3); border-radius: 10px; padding: 1rem; display: flex; gap: 0.75rem; align-items: center; font-size: 0.86rem; color: rgba(255,255,255,0.82); }
.form-section-title { color: var(--primary); font-size: 0.98rem; font-weight: 700; margin: 1.5rem 0 1rem; padding-bottom: 0.5rem; border-bottom: 2px solid rgba(212,168,67,0.2); display: flex; align-items: center; gap: 0.5rem; }
.checkbox-group { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
.checkbox-item { display: flex; align-items: center; gap: 0.6rem; cursor: pointer; font-size: 0.88rem; }
.checkbox-item input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--accent); cursor: pointer; }

/* ===== FOOTER ===== */
footer { background: #0a1424; color: rgba(255,255,255,0.65); }

/* Footer stats bar */
.footer-stats-bar {
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(212,168,67,0.18);
  padding: 1.1rem 0;
}
.footer-stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.footer-stat {
  flex: 1;
  min-width: 110px;
  text-align: center;
  padding: 0.45rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
}
.footer-stat strong {
  display: block;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1.1;
}
.footer-stat span {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
  margin-top: 0.15rem;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.footer-stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(212,168,67,0.18);
  flex-shrink: 0;
}

.footer-main { padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; }
.footer-logo { display: flex; align-items: center; margin-bottom: 1.25rem; }
.footer-logo-img { height: 68px; width: auto; mix-blend-mode: screen; filter: brightness(1.1); }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; margin-bottom: 1.5rem; }
.social-links { display: flex; gap: 0.6rem; }
.social-link {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: rgba(255,255,255,0.55);
}
.social-link:hover { background: var(--accent); border-color: var(--accent); color: var(--primary); }
.footer-col h4 { color: var(--white); font-size: 0.93rem; margin-bottom: 1.25rem; padding-bottom: 0.5rem; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-links { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-links a { font-size: 0.86rem; color: rgba(255,255,255,0.55); transition: var(--transition); display: flex; align-items: center; gap: 0.4rem; }
.footer-links a:hover { color: var(--accent); padding-left: 4px; }
.footer-contact-items { display: flex; flex-direction: column; gap: 0.8rem; }
.footer-contact-item { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 0.86rem; }
.footer-contact-item .icon { color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.footer-icon { color: var(--accent); flex-shrink: 0; margin-top: 2px; display: flex; align-items: center; }
.footer-bottom-wrap { background: rgba(0,0,0,0.2); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding: 1.5rem 0; display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; color: rgba(255,255,255,0.35); }

/* ===== FLOATING WHATSAPP ===== */
.whatsapp-float { position: fixed; bottom: 2rem; right: 2rem; z-index: 999; }
.whatsapp-float a {
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: var(--transition);
  font-size: 1.6rem;
  color: white;
}
.whatsapp-float a:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.6); }

/* ===== ANIMATIONS ===== */
.fade-in { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ===== BLOG ARTICLE PAGE ===== */
.article-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 7rem 0 4rem;
  text-align: center;
}
.article-hero-category {
  display: inline-block;
  background: var(--accent);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}
.article-hero h1 {
  color: var(--white);
  max-width: 760px;
  margin: 0 auto 1.25rem;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
}
.article-hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  margin-top: 1rem;
}
.article-hero-meta span { display: flex; align-items: center; gap: 0.4rem; }

.article-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: start;
}
.article-cover {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-lg);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.5rem;
  overflow: hidden;
}
.cover-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.cover-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255,255,255,0.6);
  text-align: center;
  z-index: 0;
  padding: 1rem;
}
.cover-hint svg { opacity: 0.45; }
.cover-hint p { font-size: 0.9rem; margin: 0; }
.cover-hint code {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.22);
  padding: 0.25rem 0.8rem;
  border-radius: 6px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.9);
  font-family: monospace;
}
.blog-cover-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.blog-img-hint {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.75);
  background: rgba(0,0,0,0.38);
  padding: 0.28rem 0.7rem;
  border-radius: 6px;
  z-index: 0;
  text-align: center;
  font-family: monospace;
}
.article-body { font-size: 1rem; line-height: 1.8; color: var(--text); }
.article-body h2 { color: var(--primary); font-size: 1.45rem; margin: 2rem 0 0.85rem; }
.article-body h3 { color: var(--primary); font-size: 1.15rem; margin: 1.5rem 0 0.7rem; }
.article-body p { margin-bottom: 1.25rem; color: #444; }
.article-body ul, .article-body ol { margin: 1rem 0 1.25rem 1.5rem; }
.article-body li { margin-bottom: 0.5rem; color: #444; }
.article-body strong { color: var(--primary); }
.article-tip {
  background: rgba(212,168,67,0.08);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.1rem 1.4rem;
  margin: 1.5rem 0;
  color: var(--text);
  font-size: 0.95rem;
}
.article-tip strong { color: var(--accent-dark); }

.article-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.article-tag {
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text-light);
  font-size: 0.8rem;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
}

.article-share {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.article-share span { font-weight: 600; color: var(--primary); font-size: 0.9rem; }
.share-btn {
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-decoration: none;
  display: inline-block;
}
.share-btn.wa { background: #25d366; color: white; }
.share-btn.wa:hover { background: #1da851; }
.share-btn.fb { background: #1877f2; color: white; }
.share-btn.fb:hover { background: #0f5dc7; }

.article-author-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  gap: 1.25rem;
  align-items: center;
  margin-top: 2.5rem;
}
.author-avatar {
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  flex-shrink: 0;
}
.author-info strong { display: block; color: var(--primary); font-size: 0.95rem; }
.author-info span { color: var(--text-light); font-size: 0.85rem; }

.article-sidebar { display: flex; flex-direction: column; gap: 1.5rem; position: sticky; top: 100px; }
.sidebar-widget { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.5rem; }
.sidebar-widget h4 { color: var(--primary); font-size: 0.95rem; margin-bottom: 1.1rem; padding-bottom: 0.6rem; border-bottom: 2px solid rgba(212,168,67,0.2); }
.sidebar-toc { display: flex; flex-direction: column; gap: 0.4rem; }
.sidebar-toc a { font-size: 0.87rem; color: var(--text-light); padding: 0.3rem 0; border-bottom: 1px solid rgba(0,0,0,0.04); transition: var(--transition); display: block; }
.sidebar-toc a:hover { color: var(--accent); padding-left: 6px; }
.sidebar-recent { display: flex; flex-direction: column; gap: 0.9rem; }
.sidebar-recent-item { display: flex; gap: 0.8rem; align-items: flex-start; }
.sidebar-recent-icon { width: 44px; height: 44px; background: rgba(212,168,67,0.08); border: 1px solid rgba(212,168,67,0.2); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--accent); }
.sidebar-recent-body h5 { font-size: 0.85rem; color: var(--primary); margin-bottom: 0.2rem; line-height: 1.35; }
.sidebar-recent-body a { color: var(--primary); transition: var(--transition); }
.sidebar-recent-body a:hover { color: var(--accent); }
.sidebar-recent-body span { font-size: 0.77rem; color: var(--text-light); }
.sidebar-cta-widget { background: linear-gradient(135deg, var(--primary), var(--primary-light)); color: var(--white); }
.sidebar-cta-widget h4 { color: var(--accent); border-color: rgba(212,168,67,0.3); }
.sidebar-cta-widget p { font-size: 0.87rem; color: rgba(255,255,255,0.72); margin-bottom: 1rem; }

.related-articles { margin-top: 4rem; padding-top: 3rem; border-top: 1px solid var(--border); }
.related-articles h2 { color: var(--primary); margin-bottom: 2rem; font-size: 1.5rem; }

/* ===== ARTICLE RESOURCES BOX ===== */
.article-resources {
  background: var(--bg);
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  margin: 2rem 0;
}
.article-resources h3 {
  color: var(--primary);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.resources-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.resources-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 0.6rem;
}
.resources-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.35rem; }
.resources-col ul li { display: flex; align-items: baseline; gap: 0.3rem; font-size: 0.87rem; }
.resources-col ul li::before { content: '→'; color: var(--accent); font-weight: 700; flex-shrink: 0; }
.resources-col ul li a { color: var(--primary); transition: var(--transition); }
.resources-col ul li a:hover { color: var(--accent); text-decoration: underline; }
@media (max-width: 600px) { .resources-cols { grid-template-columns: 1fr; gap: 1rem; } }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .slide-inner { grid-template-columns: 1fr; gap: 2rem; }
  .slide-right { display: none; }
  .slide-left { max-width: 100%; }
  .identity-grid { grid-template-columns: 1fr; gap: 3rem; }
  .identity-badge { right: 1rem; }
  .why-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-track { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-stats-inner { flex-wrap: wrap; }
  .footer-stat-divider { display: none; }
  .footer-stat { min-width: 100px; }
  .service-detail { grid-template-columns: 1fr; }
  .service-detail.reverse { direction: ltr; }
  .devis-layout { grid-template-columns: 1fr; }
  .devis-info { position: static; }
  .contact-layout { grid-template-columns: 1fr; }
  .hero-stats-grid { flex-wrap: wrap; }
  .hero-stat-sep { display: none; }
  .hero-stat-item { min-width: 120px; }
}
@media (max-width: 768px) {
  .topbar-right { display: none; }
  .topbar-contact { gap: 0.75rem; }
  .nav-links {
    display: none;
    position: fixed;
    top: 75px;
    left: 0;
    right: 0;
    background: var(--primary);
    flex-direction: column;
    padding: 1.5rem;
    gap: 0.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .slide-content { padding: 3.5rem 0 2.5rem; }
  .carousel-btn { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .checkbox-group { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: 1fr; }
  .hero-stats-grid { grid-template-columns: repeat(2, 1fr); display: grid; }
  .hero-stat-sep { display: none; }
}
@media (max-width: 480px) {
  .slide-actions { flex-direction: column; }
  .btn { justify-content: center; }
  .stats-grid { grid-template-columns: 1fr; }
  .hero-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-actions { flex-direction: column; align-items: center; }
  .topbar-contact a:last-child { display: none; }
}
