/* ===== Design System — Alucia Menuiserie Aluminium ===== */
:root {
  /* Palette — Anthracite + Cuivre/Ambre */
  --color-primary: #2D3436;
  --color-primary-dark: #1A1E20;
  --color-primary-light: #4B5C5E;
  --color-accent: #C4935A;
  --color-accent-hover: #AD7E42;
  --color-accent-light: rgba(196, 147, 90, 0.10);
  --color-accent-glow: rgba(196, 147, 90, 0.25);
  --color-bg: #FFFFFF;
  --color-bg-alt: #F8F9FA;
  --color-bg-dark: #2D3436;
  --color-bg-darker: #1A1E20;
  --color-text: #1A1E20;
  --color-text-light: #6B7280;
  --color-text-on-dark: #F1F5F9;
  --color-text-muted: #94A3B8;
  --color-border: #E5E7EB;
  --color-border-light: #F3F4F6;
  --color-white: #FFFFFF;
  --color-star: #FBBF24;

  /* Typographie */
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Espacements */
  --section-padding: clamp(3.5rem, 8vw, 6rem) 0;
  --container-max: 1200px;
  --gap: 2rem;
  --gap-lg: 3rem;

  /* Effets */
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow: 0 4px 20px rgba(0,0,0,0.06);
  --shadow-hover: 0 16px 48px rgba(0,0,0,0.12);
  --shadow-card: 0 2px 12px rgba(0,0,0,0.05);
  --shadow-card-hover: 0 12px 36px rgba(0,0,0,0.10);
  --shadow-nav: 0 4px 30px rgba(0,0,0,0.08);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Reset & Base ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.65;
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  overflow-x: hidden;
}
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: clamp(1.05rem, 2vw, 1.2rem); }
a { color: inherit; text-decoration: none; cursor: pointer; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 1.5rem; }

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: all var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-nav);
  padding: 0.8rem 0;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: -0.03em;
  transition: color var(--transition);
}
.navbar.scrolled .logo { color: var(--color-primary); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition-fast);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width var(--transition);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a:hover { color: var(--color-white); }
.navbar.scrolled .nav-links a { color: var(--color-text-light); }
.navbar.scrolled .nav-links a:hover { color: var(--color-primary); }
.nav-cta {
  background: var(--color-accent) !important;
  color: var(--color-white) !important;
  padding: 0.55rem 1.3rem;
  border-radius: var(--radius-sm);
  font-weight: 600 !important;
  transition: background var(--transition-fast), transform var(--transition-fast) !important;
}
.nav-cta:hover {
  background: var(--color-accent-hover) !important;
  transform: translateY(-1px);
}
.nav-cta::after { display: none !important; }

/* Menu toggle mobile */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
  z-index: 1001;
}
.menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--color-white);
  border-radius: 2px;
  transition: all var(--transition);
}
.navbar.scrolled .menu-toggle span { background: var(--color-primary); }
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--color-accent);
  color: var(--color-white);
}
.btn-primary:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--color-accent-glow);
}
.btn-outline {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-2px);
}
.btn-outline-dark {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-border);
}
.btn-outline-dark:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: translateY(-2px);
}
.btn-whatsapp {
  background: #25D366;
  color: var(--color-white);
}
.btn-whatsapp:hover {
  background: #1EBE5A;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}
.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
}

/* ===== Hero (homepage) ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transition: transform 0.1s linear;
  transform: scale(1.1);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    145deg,
    rgba(26, 30, 32, 0.88) 0%,
    rgba(45, 52, 54, 0.65) 45%,
    rgba(26, 30, 32, 0.78) 100%
  );
}
/* Light rays */
.hero-rays {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
}
.hero-ray {
  position: absolute;
  width: 2px;
  height: 120%;
  background: linear-gradient(180deg, rgba(196,147,90,0.12), transparent 70%);
  transform-origin: top center;
  animation: rayShimmer 4s ease-in-out infinite alternate;
}
.hero-ray:nth-child(1) { left: 15%; transform: rotate(12deg); animation-delay: 0s; }
.hero-ray:nth-child(2) { left: 35%; transform: rotate(-5deg); animation-delay: 0.8s; width: 1px; }
.hero-ray:nth-child(3) { left: 60%; transform: rotate(8deg); animation-delay: 1.5s; }
.hero-ray:nth-child(4) { left: 80%; transform: rotate(-10deg); animation-delay: 2.2s; width: 1.5px; }
.hero-ray:nth-child(5) { left: 50%; transform: rotate(3deg); animation-delay: 0.5s; width: 1px; }
@keyframes rayShimmer {
  0% { opacity: 0.3; }
  50% { opacity: 0.7; }
  100% { opacity: 0.2; }
}

/* Floating particles */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}
.hero-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(196, 147, 90, 0.4);
  border-radius: 50%;
  animation: particleFloat 8s ease-in-out infinite;
}
.hero-particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; width: 3px; height: 3px; }
.hero-particle:nth-child(2) { left: 25%; top: 60%; animation-delay: 1.5s; width: 5px; height: 5px; }
.hero-particle:nth-child(3) { left: 55%; top: 35%; animation-delay: 3s; }
.hero-particle:nth-child(4) { left: 70%; top: 70%; animation-delay: 4.5s; width: 3px; height: 3px; }
.hero-particle:nth-child(5) { left: 85%; top: 25%; animation-delay: 2s; width: 6px; height: 6px; }
.hero-particle:nth-child(6) { left: 40%; top: 80%; animation-delay: 5.5s; }
@keyframes particleFloat {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.3; }
  25% { transform: translateY(-30px) scale(1.2); opacity: 0.7; }
  50% { transform: translateY(-15px) scale(0.8); opacity: 0.5; }
  75% { transform: translateY(-40px) scale(1.1); opacity: 0.4; }
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 680px;
  padding: 8rem 0 4rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.1rem;
  background: rgba(196, 147, 90, 0.15);
  border: 1px solid rgba(196, 147, 90, 0.3);
  border-radius: 100px;
  color: var(--color-accent);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  animation: fadeInDown 0.8s cubic-bezier(0.4, 0, 0.2, 1) both;
}
.hero-badge svg {
  width: 16px;
  height: 16px;
  fill: var(--color-accent);
}
.hero h1 {
  color: var(--color-white);
  margin-top: 1.2rem;
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}
.hero h1 span { color: var(--color-accent); }
.hero-text {
  color: rgba(255,255,255,0.75);
  font-size: clamp(1rem, 2vw, 1.15rem);
  margin-top: 1.2rem;
  max-width: 540px;
  line-height: 1.7;
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.6s both;
}
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.8s both;
}
.hero-stat {
  text-align: left;
}
.hero-stat-value {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
}
.hero-stat-value .stars {
  color: var(--color-star);
  font-size: 1rem;
  margin-left: 0.3rem;
}
.hero-stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-top: 0.3rem;
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  animation: bounce 2s ease-in-out infinite;
  opacity: 0.6;
}
.hero-scroll svg {
  width: 28px;
  height: 28px;
  stroke: var(--color-white);
  stroke-width: 2;
  fill: none;
}

@keyframes fadeInUp { from { opacity: 0; transform: translateY(25px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(-8px); } }

/* ===== Page Hero (inner pages) ===== */
.page-hero {
  position: relative;
  padding: clamp(7rem, 14vw, 10rem) 0 clamp(3rem, 6vw, 5rem);
  background: var(--color-bg-dark);
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 50%, var(--color-primary-light) 100%);
  opacity: 0.95;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, var(--color-bg), transparent);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 {
  color: var(--color-white);
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) both;
}
.page-hero-text {
  color: rgba(255,255,255,0.65);
  font-size: clamp(1rem, 2vw, 1.15rem);
  margin-top: 0.8rem;
  max-width: 600px;
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}
.page-hero .breadcrumb {
  display: flex;
  gap: 0.5rem;
  color: rgba(255,255,255,0.45);
  font-size: 0.85rem;
  margin-bottom: 0.8rem;
  animation: fadeInDown 0.8s cubic-bezier(0.4, 0, 0.2, 1) both;
}
.page-hero .breadcrumb a { color: rgba(255,255,255,0.55); transition: color var(--transition-fast); }
.page-hero .breadcrumb a:hover { color: var(--color-accent); }

/* ===== Section Common ===== */
.section { padding: var(--section-padding); }
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
}
.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.6rem;
}
.section-header h2 { margin-bottom: 0.8rem; }
.section-header p {
  color: var(--color-text-light);
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  line-height: 1.7;
}
.section-dark {
  background: var(--color-bg-dark);
  color: var(--color-text-on-dark);
}
.section-dark .section-label { color: var(--color-accent); }
.section-dark p { color: rgba(241, 245, 249, 0.7); }
.section-alt { background: var(--color-bg-alt); }

/* ===== Services Grid ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.service-card {
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}
.service-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.service-card:hover .service-card-img img {
  transform: scale(1.06);
}
.service-card-img .service-card-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(45, 52, 54, 0.85);
  backdrop-filter: blur(8px);
  color: var(--color-white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  letter-spacing: 0.02em;
}
.service-card-body {
  padding: 1.5rem;
}
.service-card-body h3 {
  margin-bottom: 0.5rem;
  color: var(--color-primary);
}
.service-card-body p {
  color: var(--color-text-light);
  font-size: 0.9rem;
  line-height: 1.6;
}
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--color-accent);
  font-weight: 600;
  font-size: 0.88rem;
  margin-top: 0.8rem;
  transition: gap var(--transition-fast);
}
.service-card-link:hover { gap: 0.7rem; }
.service-card-link svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

/* ===== About Section (2 cols) ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-lg);
  align-items: center;
}
.about-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  min-height: 420px;
}
.about-visual-accent {
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 120px;
  height: 120px;
  border: 3px solid var(--color-accent);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.about-content .section-label { text-align: left; }
.about-content h2 { text-align: left; margin-bottom: 1rem; }
.about-content p {
  color: var(--color-text-light);
  margin-bottom: 1rem;
  line-height: 1.75;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}
.about-feature-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: var(--color-accent-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-feature-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--color-accent);
  fill: none;
  stroke-width: 2;
}
.about-feature span {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--color-primary);
}

/* ===== Stats / Counter Section ===== */
.stats-section {
  background: var(--color-bg-dark);
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(196,147,90,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(196,147,90,0.05) 0%, transparent 60%);
}
.stats-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
  text-align: center;
}
.stat-item {
  padding: 1.5rem;
}
.stat-value {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
}
.stat-value .stat-suffix {
  font-size: 0.6em;
  font-weight: 500;
  opacity: 0.8;
}
.stat-label {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  margin-top: 0.4rem;
}
.stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.08);
  margin: 0.5rem 0;
}

/* ===== Réalisations Gallery ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,30,32,0.7) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: var(--color-white);
  font-weight: 600;
  font-size: 0.9rem;
}
.gallery-item.featured {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}

/* ===== Testimonials ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}
.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--color-accent);
  opacity: 0.2;
  position: absolute;
  top: 0.5rem;
  left: 1.2rem;
  line-height: 1;
}
.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 0.8rem;
}
.testimonial-stars svg {
  width: 16px;
  height: 16px;
  fill: var(--color-star);
}
.testimonial-text {
  color: var(--color-text);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
  font-style: italic;
}
.testimonial-date {
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

/* ===== Engagements ===== */
.engagements-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
}
.engagement-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--radius);
  background: var(--color-white);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}
.engagement-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}
.engagement-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  background: var(--color-accent-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.engagement-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--color-accent);
  fill: none;
  stroke-width: 1.8;
}
.engagement-card h4 {
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}
.engagement-card p {
  color: var(--color-text-light);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ===== Zone d'intervention ===== */
.zone-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-lg);
  align-items: center;
}
.zone-text h2 { text-align: left; margin-bottom: 1rem; }
.zone-text p {
  color: var(--color-text-light);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.zone-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}
.zone-city {
  background: var(--color-accent-light);
  color: var(--color-accent-hover);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
}
.zone-visual {
  position: relative;
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.zone-visual-badge {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}
.zone-visual-badge span { color: var(--color-accent); }
.zone-visual-text {
  color: var(--color-text-light);
  margin-top: 0.5rem;
  font-size: 1.1rem;
}

/* ===== CTA Section ===== */
.cta-section {
  background: var(--color-bg-dark);
  padding: clamp(4rem, 8vw, 6rem) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(196,147,90,0.1) 0%, transparent 70%);
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 {
  color: var(--color-white);
  margin-bottom: 0.8rem;
}
.cta-section p {
  color: rgba(255,255,255,0.6);
  max-width: 540px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ===== Services Detail (services.html) ===== */
.service-detail {
  padding: var(--section-padding);
}
.service-detail:nth-child(even) { background: var(--color-bg-alt); }
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-lg);
  align-items: center;
}
.service-detail:nth-child(even) .service-detail-grid {
  direction: rtl;
}
.service-detail:nth-child(even) .service-detail-grid > * {
  direction: ltr;
}
.service-detail-content .section-label { text-align: left; }
.service-detail-content h2 { text-align: left; margin-bottom: 1rem; }
.service-detail-content p {
  color: var(--color-text-light);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.service-detail-content ul {
  margin-bottom: 1.5rem;
}
.service-detail-content ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--color-text-light);
  font-size: 0.95rem;
}
.service-detail-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
}
.service-detail-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.service-detail-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  min-height: 360px;
}

/* ===== Contact Section ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-lg);
}
.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem;
  border-radius: var(--radius);
  transition: background var(--transition-fast);
  margin-bottom: 0.5rem;
}
.contact-info-card:hover { background: var(--color-bg-alt); }
.contact-info-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--color-accent-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-info-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-accent);
  fill: none;
  stroke-width: 2;
}
.contact-info-text h4 {
  color: var(--color-primary);
  margin-bottom: 0.2rem;
}
.contact-info-text p, .contact-info-text a {
  color: var(--color-text-light);
  font-size: 0.92rem;
}
.contact-info-text a:hover { color: var(--color-accent); }
.contact-form {
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.contact-form h3 { margin-bottom: 1.5rem; }
.form-group {
  margin-bottom: 1.2rem;
}
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--color-primary);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-white);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px var(--color-accent-light);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* ===== Footer ===== */
.footer {
  background: var(--color-bg-darker);
  padding: 4rem 0 0;
  color: rgba(255,255,255,0.7);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--gap-lg);
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-col h3 {
  color: var(--color-white);
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}
.footer-col h4 {
  color: var(--color-white);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}
.footer-col p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
}
.footer-col ul li {
  margin-bottom: 0.5rem;
}
.footer-col ul a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition-fast);
}
.footer-col ul a:hover { color: var(--color-accent); }
.footer-social {
  display: flex;
  gap: 0.8rem;
  margin-top: 1rem;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
}
.footer-social a:hover { background: var(--color-accent); }
.footer-social svg {
  width: 18px;
  height: 18px;
  fill: rgba(255,255,255,0.7);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: var(--color-accent); transition: opacity var(--transition-fast); }
.footer-bottom a:hover { opacity: 0.8; }

/* ===== Scroll Reveal Animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-left.revealed { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-right.revealed { opacity: 1; transform: translateX(0); }

/* Stagger children */
.stagger-children .reveal:nth-child(1) { transition-delay: 0s; }
.stagger-children .reveal:nth-child(2) { transition-delay: 0.1s; }
.stagger-children .reveal:nth-child(3) { transition-delay: 0.2s; }
.stagger-children .reveal:nth-child(4) { transition-delay: 0.3s; }
.stagger-children .reveal:nth-child(5) { transition-delay: 0.4s; }
.stagger-children .reveal:nth-child(6) { transition-delay: 0.5s; }

/* Parallax */
.parallax-bg {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

/* ===== Google Review Badge ===== */
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--color-white);
  padding: 0.6rem 1rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
}
.google-badge-score {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--color-primary);
}
.google-badge-stars {
  display: flex;
  gap: 1px;
}
.google-badge-stars svg {
  width: 14px;
  height: 14px;
  fill: var(--color-star);
}
.google-badge-count {
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

/* ===== Reduced motion ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .reveal-left, .reveal-right { opacity: 1; transform: none; }
  .hero-bg img { transform: none !important; }
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .engagements-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .menu-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--color-bg-darker);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 1.2rem;
    transition: right var(--transition);
    box-shadow: -4px 0 30px rgba(0,0,0,0.3);
  }
  .nav-links.active { right: 0; }
  .nav-links a { color: rgba(255,255,255,0.8) !important; font-size: 1rem; }
  .nav-links a:hover { color: var(--color-accent) !important; }

  .hero-content { padding: 6rem 0 3rem; }
  .hero-stats { gap: 1.5rem; }
  .hero-stat-value { font-size: 1.4rem; }

  .services-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { order: -1; }
  .about-visual img { min-height: 280px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-divider { display: none; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.featured { grid-column: span 2; grid-row: span 1; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .engagements-grid { grid-template-columns: 1fr; }
  .zone-content { grid-template-columns: 1fr; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .service-detail:nth-child(even) .service-detail-grid { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

  .parallax-bg { background-attachment: scroll; }
  .hero-bg img { transform: none !important; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .hero-stats { flex-direction: column; gap: 1rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.featured { grid-column: span 1; }
  .about-features { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; align-items: center; }
}
