/* ============================================
   CENTRE LE SAVOIR FAIRE CSF
   Website Design System & Styles
   ============================================ */

/* -------------------------------------------
   1. CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   ------------------------------------------- */

:root {
  /* Primary Colors */
  --burgundy: #1E4FA8;
  --burgundy-dark: #163A7D;
  --burgundy-light: #8CCEF5;
  --burgundy-rgb: 30, 79, 168;

  /* Secondary Colors */
  --gold: #E6B325;
  --gold-dark: #C99A1E;
  --gold-light: #F0CC5C;
  --gold-rgb: 230, 179, 37;

  /* Accent Colors */
  --sunny-gold: #E6B325;
  --coral: #8CCEF5;
  --sage: #163A7D;

  /* Background Colors */
  --bg-primary: #F8FAFC;
  --bg-warm: #F0F4F8;
  --bg-cream: #E8EDF2;
  --bg-dark: #1F2937;
  --bg-darker: #111827;

  /* Text Colors */
  --text-primary: #1F2937;
  --text-secondary: #6B7280;
  --text-light: #9CA3AF;
  --text-inverse: #FFFFFF;

  /* Border Colors */
  --border: #E5E7EB;
  --border-dark: #D1D5DB;
  --border-focus: var(--burgundy);

  /* State Colors */
  --success: #16A34A;
  --warning: #E6B325;
  --error: #DC2626;
  --whatsapp: #25D366;

  /* Typography */
  --font-heading: 'Lora', Georgia, serif;
  --font-body: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-arabic: 'Noto Kufi Arabic', 'Noto Naskh Arabic', sans-serif;

  /* Font Sizes */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 2rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;

  /* Line Heights */
  --leading-tight: 1.2;
  --leading-snug: 1.3;
  --leading-normal: 1.5;
  --leading-relaxed: 1.7;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 12px 48px rgba(0, 0, 0, 0.12);
  --shadow-focus: 0 0 0 3px rgba(var(--burgundy-rgb), 0.15);
  --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-card-hover: 0 8px 24px rgba(0, 0, 0, 0.1);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 200ms ease;
  --transition-slow: 300ms ease;
  --transition-spring: 300ms cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Grid */
  --grid-columns: 12;
  --grid-gutter: 1.5rem;
  --container-max: 1200px;
  --container-padding: 2rem;

  /* Z-index */
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-overlay: 300;
  --z-modal: 400;
  --z-whatsapp: 500;
}

/* -------------------------------------------
   2. CSS RESET & BASE STYLES
   ------------------------------------------- */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--text-primary);
  background-color: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  font-size: inherit;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: var(--leading-tight);
  color: var(--text-primary);
}

h1 { font-size: var(--text-5xl); }
h2 { font-size: var(--text-4xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }

p {
  margin-bottom: var(--space-4);
}

p:last-child {
  margin-bottom: 0;
}

/* -------------------------------------------
   3. UTILITY CLASSES
   ------------------------------------------- */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

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

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.section-padding {
  padding: var(--space-24) 0;
}

.section-padding-sm {
  padding: var(--space-16) 0;
}

.bg-warm { background-color: var(--bg-warm); }
.bg-cream { background-color: var(--bg-cream); }
.bg-dark { background-color: var(--bg-dark); }
.bg-burgundy { background-color: var(--burgundy); }

/* -------------------------------------------
   4. BUTTONS
   ------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-8);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  line-height: 1;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
}

.btn:active {
  transform: scale(0.98);
}

/* Primary Button */
.btn-primary {
  background-color: var(--burgundy);
  color: var(--text-inverse);
  border: 2px solid var(--burgundy);
}

.btn-primary:hover {
  background-color: var(--burgundy-dark);
  border-color: var(--burgundy-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Secondary Button */
.btn-secondary {
  background-color: transparent;
  color: var(--burgundy);
  border: 2px solid var(--burgundy);
}

.btn-secondary:hover {
  background-color: var(--burgundy);
  color: var(--text-inverse);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Ghost Button */
.btn-ghost {
  background-color: transparent;
  color: var(--burgundy);
  border: 2px solid transparent;
  padding: var(--space-3) var(--space-6);
}

.btn-ghost:hover {
  background-color: rgba(var(--burgundy-rgb), 0.05);
}

/* WhatsApp Button */
.btn-whatsapp {
  background-color: var(--whatsapp);
  color: var(--text-inverse);
  border: 2px solid var(--whatsapp);
}

.btn-whatsapp:hover {
  background-color: #1DA851;
  border-color: #1DA851;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* White Button (for dark backgrounds) */
.btn-white {
  background-color: var(--text-inverse);
  color: var(--burgundy);
  border: 2px solid var(--text-inverse);
}

.btn-white:hover {
  background-color: transparent;
  color: var(--text-inverse);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Button Sizes */
.btn-lg {
  padding: var(--space-5) var(--space-10);
  font-size: var(--text-lg);
}

.btn-sm {
  padding: var(--space-2) var(--space-5);
  font-size: var(--text-sm);
}

/* -------------------------------------------
   5. HEADER & NAVIGATION
   ------------------------------------------- */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition-base);
  height: 80px;
}

.header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  z-index: var(--z-overlay);
}

.logo-img {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  object-fit: contain;
}

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

.logo-name {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--burgundy);
  line-height: 1.2;
}

.logo-tagline {
  font-size: var(--text-xs);
  color: var(--text-secondary);
  letter-spacing: 0.05em;
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.nav-link {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-primary);
  text-decoration: none;
  position: relative;
  padding: var(--space-2) 0;
  transition: color var(--transition-base);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--gold);
  transition: width var(--transition-base);
}

.nav-link:hover {
  color: var(--burgundy);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link.active {
  color: var(--burgundy);
}

.nav-link.active::after {
  width: 100%;
}

/* Header CTA */
.header-cta {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.header-phone {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--burgundy);
}

.header-phone svg {
  width: 18px;
  height: 18px;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  z-index: var(--z-overlay);
  cursor: pointer;
  background: none;
  border: none;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--burgundy);
  transition: all var(--transition-base);
  border-radius: 2px;
}

.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);
}

/* -------------------------------------------
   6. HERO SECTION (Homepage)
   ------------------------------------------- */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.55) 0%,
      rgba(0, 0, 0, 0.45) 40%,
      rgba(0, 0, 0, 0.35) 70%,
      rgba(0, 0, 0, 0.25) 100%
    );
  z-index: 1;
}

.hero-overlay::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--gold-rgb), 0.12) 0%, transparent 60%);
  animation: heroGlow 8s ease-in-out infinite alternate;
}

.hero-overlay::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
  animation: heroGlow 10s ease-in-out infinite alternate-reverse;
}

@keyframes heroGlow {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, -20px) scale(1.1); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  color: var(--text-inverse);
  animation: heroFadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-5);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-badge svg {
  width: 16px;
  height: 16px;
  color: var(--sunny-gold);
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--text-inverse);
  margin-bottom: var(--space-6);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.hero h1 .accent {
  color: var(--sunny-gold);
  position: relative;
  display: inline-block;
}

.hero h1 .accent::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--sunny-gold);
  border-radius: 2px;
  opacity: 0.4;
}

.hero-subtitle {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-10);
  line-height: var(--leading-relaxed);
  max-width: 520px;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.hero-cta .btn-primary {
  background-color: var(--text-inverse);
  color: var(--burgundy);
  border-color: var(--text-inverse);
  font-weight: 700;
  padding: var(--space-5) var(--space-10);
}

.hero-cta .btn-primary:hover {
  background-color: var(--sunny-gold);
  border-color: var(--sunny-gold);
  color: var(--burgundy);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(255, 201, 18, 0.3);
}

.hero-cta .btn-secondary {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--text-inverse);
  padding: var(--space-5) var(--space-10);
}

.hero-cta .btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--text-inverse);
}

.hero-stats {
  display: flex;
  gap: var(--space-10);
  margin-top: var(--space-12);
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

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

.hero-stat-number {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--sunny-gold);
  line-height: 1;
  margin-bottom: var(--space-1);
}

.hero-stat-label {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Hero Right — Floating Feature Cards */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: heroVisualFadeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
  opacity: 0;
}

@keyframes heroVisualFadeIn {
  from { opacity: 0; transform: translateY(30px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.hero-visual-ring {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: heroRingSpin 30s linear infinite;
}

.hero-visual-ring::before {
  content: '';
  position: absolute;
  top: -4px;
  left: 50%;
  width: 8px;
  height: 8px;
  background: var(--sunny-gold);
  border-radius: 50%;
}

@keyframes heroRingSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-floating-card {
  position: absolute;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-5);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--text-inverse);
  white-space: nowrap;
  animation: heroCardFloat 4s ease-in-out infinite;
}

.hero-floating-card:nth-child(1) {
  top: 40px;
  right: 20px;
  animation-delay: 0s;
}

.hero-floating-card:nth-child(2) {
  top: 50%;
  left: -10px;
  transform: translateY(-50%);
  animation-delay: 1.3s;
}

.hero-floating-card:nth-child(3) {
  bottom: 40px;
  right: 40px;
  animation-delay: 2.6s;
}

@keyframes heroCardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-floating-card-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-floating-card-icon.gold {
  background: rgba(255, 201, 18, 0.2);
  color: var(--sunny-gold);
}

.hero-floating-card-icon.coral {
  background: rgba(232, 150, 125, 0.2);
  color: var(--coral);
}

.hero-floating-card-icon.sage {
  background: rgba(139, 158, 124, 0.2);
  color: var(--sage);
}

.hero-floating-card-icon svg {
  width: 20px;
  height: 20px;
}

.hero-floating-card-text {
  font-size: var(--text-sm);
  font-weight: 600;
  line-height: 1.3;
}

.hero-floating-card-sub {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
}

/* -------------------------------------------
   7. TRUST BAR
   ------------------------------------------- */

.trust-bar {
  background-color: var(--bg-warm);
  border-bottom: 1px solid var(--border);
  padding: var(--space-6) 0;
}

.trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  text-align: center;
}

.trust-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(var(--gold-rgb), 0.15);
  border-radius: var(--radius-md);
  color: var(--gold);
  flex-shrink: 0;
}

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

.trust-text {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
}

/* -------------------------------------------
   8. SECTION HEADERS
   ------------------------------------------- */

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-12);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-4);
}

.section-label::before,
.section-label::after {
  content: '';
  width: 24px;
  height: 1px;
  background-color: var(--gold);
}

.section-title {
  font-size: var(--text-4xl);
  color: var(--text-primary);
  margin-bottom: var(--space-4);
}

.section-subtitle {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
}

/* -------------------------------------------
   9. ABOUT SECTION
   ------------------------------------------- */

.about {
  background-color: var(--bg-primary);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.about-content {
  padding-right: var(--space-8);
}

.about-content h2 {
  margin-bottom: var(--space-6);
}

.about-text {
  font-size: var(--text-lg);
  color: var(--text-primary);
  margin-bottom: var(--space-8);
  line-height: var(--leading-relaxed);
}

.about-points {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

.about-point {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}

.about-point-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(var(--gold-rgb), 0.15);
  border-radius: var(--radius-sm);
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.about-point-icon svg {
  width: 14px;
  height: 14px;
}

.about-point-text {
  font-size: var(--text-base);
  color: var(--text-primary);
  line-height: 1.5;
}

.about-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 150px;
  height: 150px;
  background-color: var(--gold);
  opacity: 0.2;
  border-radius: 50%;
  z-index: -1;
}

/* -------------------------------------------
   10. SERVICES SECTION
   ------------------------------------------- */

.services {
  background-color: var(--bg-warm);
}

/* Category Filter */
.category-filter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  margin-bottom: var(--space-12);
  flex-wrap: wrap;
}

.category-btn {
  padding: var(--space-2) var(--space-5);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-secondary);
  background-color: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-base);
}

.category-btn:hover {
  color: var(--burgundy);
  border-color: var(--burgundy);
}

.category-btn.active {
  background-color: var(--burgundy);
  color: var(--text-inverse);
  border-color: var(--burgundy);
}

/* Service Cards Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.service-card {
  background-color: var(--text-inverse);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition-slow);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
  border-color: transparent;
}

.service-card-image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background-color: var(--bg-cream);
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.service-card:hover .service-card-image img {
  transform: scale(1.05);
}

.service-card-category {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  padding: var(--space-1) var(--space-3);
  background-color: rgba(var(--burgundy-rgb), 0.9);
  color: var(--text-inverse);
  font-size: var(--text-xs);
  font-weight: 600;
  border-radius: var(--radius-sm);
  backdrop-filter: blur(4px);
}

.service-card-content {
  padding: var(--space-6);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-1);
  line-height: 1.3;
}

.service-card-title-fr {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  margin-bottom: var(--space-3);
}

.service-card-desc {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-4);
  flex: 1;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--burgundy);
  transition: gap var(--transition-base);
}

.service-card-link:hover {
  gap: var(--space-3);
}

.service-card-link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-base);
}

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

/* -------------------------------------------
   11. WHY CHOOSE US SECTION
   ------------------------------------------- */

.why-us {
  background-color: var(--bg-primary);
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.why-us-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
}

.benefit-card {
  padding: var(--space-6);
  background-color: var(--bg-warm);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all var(--transition-base);
}

.benefit-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(var(--gold-rgb), 0.15);
  border-radius: var(--radius-md);
  color: var(--gold);
  margin-bottom: var(--space-4);
}

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

.benefit-title {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-2);
  line-height: 1.3;
}

.benefit-desc {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
}

.why-us-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.why-us-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* -------------------------------------------
   12. STATISTICS SECTION
   ------------------------------------------- */

.stats {
  background-color: var(--burgundy);
  padding: var(--space-16) 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
}

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

.stat-number {
  font-family: var(--font-heading);
  font-size: var(--text-5xl);
  font-weight: 700;
  color: var(--sunny-gold);
  line-height: 1;
  margin-bottom: var(--space-2);
}

.stat-label {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
}

/* -------------------------------------------
   13. GALLERY / STUDENT WORK SECTION
   ------------------------------------------- */

.gallery {
  background-color: var(--bg-warm);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}

.gallery-item:nth-child(1) {
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(var(--burgundy-rgb), 0.8) 0%,
    transparent 50%
  );
  opacity: 0;
  transition: opacity var(--transition-base);
  display: flex;
  align-items: flex-end;
  padding: var(--space-6);
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-text {
  color: var(--text-inverse);
  font-size: var(--text-sm);
  font-weight: 600;
}

/* -------------------------------------------
   14. TESTIMONIALS SECTION
   ------------------------------------------- */

.testimonials {
  background-color: var(--bg-primary);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.testimonial-card {
  padding: var(--space-8);
  background-color: var(--bg-warm);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  position: relative;
}

.testimonial-quote {
  font-size: 4rem;
  font-family: var(--font-heading);
  color: var(--gold);
  line-height: 1;
  margin-bottom: var(--space-4);
  opacity: 0.5;
}

.testimonial-text {
  font-size: var(--text-base);
  color: var(--text-primary);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-6);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background-color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-inverse);
  font-weight: 700;
  font-size: var(--text-lg);
}

.testimonial-name {
  font-weight: 600;
  color: var(--text-primary);
  font-size: var(--text-sm);
}

.testimonial-role {
  font-size: var(--text-xs);
  color: var(--text-secondary);
}

/* Social Proof Stats */
.social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-12);
  margin-top: var(--space-12);
  padding-top: var(--space-8);
  border-top: 1px solid var(--border);
}

.social-proof-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.social-proof-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(var(--burgundy-rgb), 0.1);
  border-radius: var(--radius-md);
  color: var(--burgundy);
}

.social-proof-icon svg {
  width: 20px;
  height: 20px;
}

.social-proof-value {
  font-weight: 700;
  color: var(--text-primary);
  font-size: var(--text-lg);
}

.social-proof-label {
  font-size: var(--text-xs);
  color: var(--text-secondary);
}

/* -------------------------------------------
   15. CTA BANNER SECTION
   ------------------------------------------- */

.cta-banner {
  background-color: var(--burgundy);
  padding: var(--space-20) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--gold-rgb), 0.15) 0%, transparent 70%);
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
}

.cta-banner-content {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  color: var(--text-inverse);
  font-size: var(--text-4xl);
  margin-bottom: var(--space-4);
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--text-lg);
  margin-bottom: var(--space-8);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

/* -------------------------------------------
   16. CONTACT PREVIEW SECTION
   ------------------------------------------- */

.contact-preview {
  background-color: var(--bg-primary);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
}

.contact-map {
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 400px;
  background-color: var(--bg-cream);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.contact-info h2 {
  margin-bottom: var(--space-2);
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
}

.contact-detail-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(var(--gold-rgb), 0.15);
  border-radius: var(--radius-md);
  color: var(--gold);
  flex-shrink: 0;
}

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

.contact-detail-label {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  margin-bottom: var(--space-1);
}

.contact-detail-value {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
}

.contact-detail-value a {
  color: var(--burgundy);
  transition: color var(--transition-base);
}

.contact-detail-value a:hover {
  color: var(--burgundy-dark);
}

/* -------------------------------------------
   17. FOOTER
   ------------------------------------------- */

.footer {
  background-color: var(--bg-darker);
  color: var(--text-inverse);
  padding: var(--space-16) 0 var(--space-8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-12);
  margin-bottom: var(--space-12);
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.footer-logo-img {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  object-fit: contain;
}

.footer-logo-text {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--text-inverse);
}

.footer-desc {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-6);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

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

.footer-social a:hover {
  background-color: var(--gold);
  color: var(--text-inverse);
}

.footer-social a svg {
  width: 18px;
  height: 18px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-inverse);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-6);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-links a {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition-base);
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copyright {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.footer-bottom-links a {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.4);
  transition: color var(--transition-base);
}

.footer-bottom-links a:hover {
  color: var(--gold);
}

/* -------------------------------------------
   18. FLOATING WHATSAPP BUTTON
   ------------------------------------------- */

.whatsapp-float {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  width: 60px;
  height: 60px;
  background-color: var(--whatsapp);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-inverse);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  z-index: var(--z-whatsapp);
  transition: all var(--transition-base);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
}

.whatsapp-float-pulse {
  position: absolute;
  inset: -4px;
  border-radius: var(--radius-full);
  border: 2px solid var(--whatsapp);
  animation: whatsapp-pulse 2s ease-in-out infinite;
}

@keyframes whatsapp-pulse {
  0%, 100% { opacity: 0; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.15); }
}

/* -------------------------------------------
   19. BACK TO TOP BUTTON
   ------------------------------------------- */

.back-to-top {
  position: fixed;
  bottom: var(--space-6);
  right: calc(var(--space-6) + 76px);
  width: 44px;
  height: 44px;
  background-color: var(--burgundy);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-inverse);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  z-index: var(--z-sticky);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--burgundy-dark);
  transform: translateY(-4px);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}

/* -------------------------------------------
   20. MOBILE MENU OVERLAY
   ------------------------------------------- */

.mobile-menu {
  position: fixed;
  inset: 0;
  background-color: var(--burgundy);
  z-index: var(--z-overlay);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-slow);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  color: var(--text-inverse);
  text-decoration: none;
  transition: color var(--transition-base);
}

.mobile-menu a:hover {
  color: var(--gold);
}

.mobile-menu-close {
  position: absolute;
  top: var(--space-6);
  right: var(--space-6);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-inverse);
  cursor: pointer;
}

.mobile-menu-close svg {
  width: 24px;
  height: 24px;
}

/* -------------------------------------------
   21. SCROLL ANIMATIONS
   ------------------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

/* Stagger children */
.stagger-children .reveal:nth-child(1) { transition-delay: 0ms; }
.stagger-children .reveal:nth-child(2) { transition-delay: 100ms; }
.stagger-children .reveal:nth-child(3) { transition-delay: 200ms; }
.stagger-children .reveal:nth-child(4) { transition-delay: 300ms; }
.stagger-children .reveal:nth-child(5) { transition-delay: 400ms; }
.stagger-children .reveal:nth-child(6) { transition-delay: 500ms; }
.stagger-children .reveal:nth-child(7) { transition-delay: 600ms; }
.stagger-children .reveal:nth-child(8) { transition-delay: 700ms; }
.stagger-children .reveal:nth-child(9) { transition-delay: 800ms; }
.stagger-children .reveal:nth-child(10) { transition-delay: 900ms; }

/* -------------------------------------------
   22. PAGE HERO (Inner Pages)
   ------------------------------------------- */

.page-hero {
  position: relative;
  padding: calc(80px + var(--space-20)) 0 var(--space-20);
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--gold-rgb), 0.1) 0%, transparent 60%);
  z-index: 1;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 1;
}

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

.page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-1) var(--space-4);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
  font-size: var(--text-sm);
}

.page-hero-breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color var(--transition-base);
}

.page-hero-breadcrumb a:hover {
  color: var(--sunny-gold);
}

.page-hero-breadcrumb span {
  color: rgba(255, 255, 255, 0.3);
}

.page-hero-breadcrumb strong {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.page-hero h1 {
  color: var(--text-inverse);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--space-4);
  letter-spacing: -0.01em;
}

.page-hero-subtitle {
  color: rgba(255, 255, 255, 0.75);
  font-size: var(--text-lg);
  max-width: 560px;
  margin: 0 auto;
  line-height: var(--leading-relaxed);
}

.page-hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.50) 0%,
    rgba(0, 0, 0, 0.40) 50%,
    rgba(0, 0, 0, 0.55) 100%
  );
  z-index: 1;
}

.page-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* -------------------------------------------
   23. RESPONSIVE STYLES
   ------------------------------------------- */

/* Tablet */
@media (max-width: 1024px) {
  :root {
    --container-padding: 1.5rem;
  }

  h1 { font-size: var(--text-4xl); }
  h2 { font-size: var(--text-3xl); }

  .nav { display: none; }
  .menu-toggle { display: flex; }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--space-12);
  }

  .hero-visual {
    display: none;
  }

  .hero-stats {
    gap: var(--space-6);
  }

  .page-hero {
    padding: calc(80px + var(--space-12)) 0 var(--space-12);
  }

  .trust-bar-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
  }

  .about-grid,
  .why-us-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-12);
  }

  .about-content {
    padding-right: 0;
    order: 2;
  }

  .about-image {
    order: 1;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
  }

  .why-us-benefits {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
  }

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

  .gallery-item:nth-child(1) {
    grid-row: span 1;
    aspect-ratio: 1;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8);
  }

  .footer-brand {
    grid-column: span 2;
  }

  .social-proof {
    flex-wrap: wrap;
    gap: var(--space-6);
  }

  .section-padding {
    padding: var(--space-16) 0;
  }
}

/* Mobile */
@media (max-width: 767px) {
  :root {
    --container-padding: 1rem;
    --space-24: 4rem;
    --space-16: 3rem;
  }

  h1 { font-size: var(--text-3xl); }
  h2 { font-size: var(--text-2xl); }

  .hero {
    min-height: 90vh;
  }

  .hero h1 {
    font-size: var(--text-3xl);
  }

  .hero-subtitle {
    font-size: var(--text-base);
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-cta .btn-primary {
    padding: var(--space-4) var(--space-8);
  }

  .hero-cta .btn-secondary {
    padding: var(--space-4) var(--space-8);
  }

  .hero-stats {
    flex-direction: column;
    gap: var(--space-4);
  }

  .hero-stat {
    display: flex;
    align-items: center;
    gap: var(--space-3);
  }

  .hero-visual {
    display: none;
  }

  .page-hero {
    padding: calc(80px + var(--space-8)) 0 var(--space-8);
  }

  .page-hero h1 {
    font-size: var(--text-2xl);
  }

  .page-hero-subtitle {
    font-size: var(--text-base);
  }

  .page-hero-breadcrumb {
    font-size: var(--text-xs);
  }

  .trust-bar-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3);
  }

  .trust-item {
    flex-direction: column;
    gap: var(--space-2);
  }

  .section-header {
    margin-bottom: var(--space-8);
  }

  .section-title {
    font-size: var(--text-2xl);
  }

  .category-filter {
    gap: var(--space-2);
    margin-bottom: var(--space-8);
  }

  .category-btn {
    padding: var(--space-2) var(--space-4);
    font-size: var(--text-xs);
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .why-us-benefits {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
  }

  .stat-number {
    font-size: var(--text-3xl);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .cta-banner {
    padding: var(--space-12) 0;
  }

  .cta-banner h2 {
    font-size: var(--text-2xl);
  }

  .cta-banner-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-banner-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-map {
    min-height: 300px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .footer-brand {
    grid-column: span 1;
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-4);
    text-align: center;
  }

  .whatsapp-float {
    width: 52px;
    height: 52px;
    bottom: var(--space-4);
    right: var(--space-4);
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }

  .back-to-top {
    right: calc(var(--space-4) + 64px);
    bottom: var(--space-4);
    width: 40px;
    height: 40px;
  }

  .page-hero {
    padding: calc(80px + var(--space-8)) 0 var(--space-8);
  }

  .page-hero h1 {
    font-size: var(--text-3xl);
  }
}

/* -------------------------------------------
   24. 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,
  .reveal-scale {
    opacity: 1;
    transform: none;
  }

  html {
    scroll-behavior: auto;
  }
}

/* -------------------------------------------
   25. PRINT STYLES
   ------------------------------------------- */

@media print {
  .header,
  .whatsapp-float,
  .back-to-top,
  .cta-banner,
  .footer {
    display: none;
  }

  body {
    font-size: 12pt;
    color: #000;
    background: #fff;
  }

  a {
    text-decoration: underline;
  }

  .section-padding {
    padding: 1rem 0;
  }
}
