/* ============================================
   PREMIUM DESIGN SYSTEM - FOUNDATION
   ============================================ */

:root {
  /* Primary Backgrounds */
  --bg-primary: #FFFFFF;
  --bg-off-white: #FAFCFB;
  --bg-light-green: #F0F9F5;
  
  /* Green Palette (7 shades) */
  --green-deep: #0F5D3F;
  --green-dark: #1A7A5A;
  --green-primary: #22A46F;
  --green-medium: #2AC88A;
  --green-light: #4FD4A3;
  --green-very-light: #A8E6C7;
  --green-pale: #E8F5ED;
  
  /* Neutral Grays (6 shades) */
  --text-primary: #0A2015;
  --text-secondary: #2D3A35;
  --text-muted: #5A6B64;
  --border-light: #C5EAD7;
  --border-medium: #A8D4C0;
  --bg-gray: #F5F7F6;
  
  /* Semantic Colors */
  --success: #22A46F;
  --warning: #F59E0B;
  --error: #EF4444;
  --info: #3B82F6;
  
  /* Shadows (7 levels) */
  --shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(34,164,111,0.08);
  --shadow-lg: 0 8px 24px rgba(34,164,111,0.12);
  --shadow-xl: 0 16px 48px rgba(34,164,111,0.16);
  --shadow-2xl: 0 24px 64px rgba(34,164,111,0.20);
  --shadow-glow: 0 0 30px rgba(42,200,138,0.25);
  --shadow-inner: inset 0 2px 4px rgba(0,0,0,0.06);
  
  /* Border Radius */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 50%;
  
  /* Spacing (8px grid) */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 12px;
  --space-lg: 16px;
  --space-xl: 24px;
  --space-2xl: 32px;
  --space-3xl: 48px;
  --space-4xl: 64px;
  --space-5xl: 96px;
  --space-6xl: 128px;
  
  /* Container */
  --container: 1280px;
  
  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Prevent horizontal scrolling */
* {
  max-width: 100%;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-base), text-decoration-color var(--transition-base);
}

a:hover {
  color: var(--green-primary);
  text-decoration-color: var(--green-primary);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ============================================
   TYPOGRAPHY SYSTEM
   ============================================ */

.display {
  font-weight: 800;
  font-size: 64px;
  line-height: 72px;
  letter-spacing: -0.02em;
}

h1 {
  font-weight: 700;
  font-size: 48px;
  line-height: 56px;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

h2 {
  font-weight: 600;
  font-size: 36px;
  line-height: 44px;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

h3 {
  font-weight: 600;
  font-size: 28px;
  line-height: 36px;
  color: var(--text-primary);
}

h4 {
  font-weight: 500;
  font-size: 22px;
  line-height: 30px;
  color: var(--text-primary);
}

.body-large {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
}

.body {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}

.small {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
}

.micro {
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
}

/* ============================================
   LAYOUT & CONTAINER
   ============================================ */

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--space-xl);
}

section {
  padding: var(--space-5xl) 0;
}

@media (max-width: 768px) {
  section {
    padding: var(--space-4xl) 0;
  }
  
  .container {
    padding: 0 var(--space-lg);
  }
  
  h1 {
    font-size: 36px;
    line-height: 44px;
  }
  
  h2 {
    font-size: 28px;
    line-height: 36px;
  }
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg) 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.logo-mark {
  width: 74px;
  display: grid;
  place-items: center;
}

.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-link {
  text-decoration: none;
  display: block;
  transition: opacity 0.2s ease;
}

.logo-link:hover {
  opacity: 0.8;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-name {
  font-weight: 700;
  font-size: 20px;
  color: var(--text-primary);
}

.brand-tagline {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: var(--space-xl);
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 15px;
  position: relative;
  padding: var(--space-sm) 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green-primary);
  transition: width var(--transition-base);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--green-primary);
  text-decoration: none;
}

.nav-actions {
  display: flex;
  gap: var(--space-md);
  align-items: center;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn.primary {
  background: linear-gradient(135deg, var(--green-primary), var(--green-medium));
  color: white;
  box-shadow: var(--shadow-md);
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  background: linear-gradient(135deg, var(--green-dark), var(--green-primary));
}

.btn.primary:active {
  transform: translateY(0);
}

.btn.ghost {
  background: transparent;
  border: 1px solid var(--border-light);
  color: var(--text-secondary);
}

.btn.ghost:hover {
  border-color: var(--green-primary);
  color: var(--green-primary);
  background: var(--green-pale);
}

.btn.full {
  width: 100%;
}

/* ============================================
   HERO SECTION (Advanced)
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-light-green) 0%, var(--bg-primary) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../images/hero/hero-main.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 1;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(240,249,245,0.7) 100%);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5xl);
  align-items: center;
  min-height: 80vh;
}

.hero-text {
  animation: fadeInUp 0.8s ease-out;
}

.hero-text .badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--green-pale);
  color: var(--green-dark);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-xl);
  animation: fadeIn 1s ease-out 0.2s both;
}

.hero-text h1 {
  margin-bottom: var(--space-xl);
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-text .lead {
  font-size: 20px;
  line-height: 32px;
  color: var(--text-secondary);
  margin-bottom: var(--space-2xl);
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-cta-center {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: var(--space-xl) 0 var(--space-lg) 0;
}

.hero-cta-main {
  font-size: 18px;
  padding: 16px 32px;
  min-width: 200px;
  flex-shrink: 0;
  animation: fadeInUp 0.8s ease-out 0.3s both;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-cta-main:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl), var(--shadow-glow-lg);
}

.hero-actions {
  display: flex;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
  animation: fadeInUp 0.8s ease-out 0.5s both;
  justify-content: center;
}

.trust-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: var(--space-xl);
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.trust-points li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
}

.trust-points li::before {
  content: '✓';
  color: var(--green-primary);
  font-weight: 700;
  font-size: 16px;
}

.hero-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-light);
  animation: fadeInRight 0.8s ease-out 0.4s both;
}

.hero-card .card-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: var(--space-xl);
  color: var(--text-primary);
}

.card-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--border-light);
}

.card-line:last-child {
  border-bottom: none;
}

.card-line span {
  color: var(--text-muted);
  font-weight: 500;
}

.card-line strong {
  color: var(--text-primary);
  font-weight: 600;
}

.scroll-indicator {
  position: absolute;
  bottom: var(--space-2xl);
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  animation: bounce 2s infinite;
}

.scroll-indicator::before {
  content: '↓';
  font-size: 24px;
  color: var(--green-primary);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* ============================================
   TRUST BAR (Sticky)
   ============================================ */

.trust-bar {
  background: white;
  border-bottom: 1px solid var(--border-light);
  padding: var(--space-lg) 0;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.trust-bar-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-xl);
  align-items: center;
}

/* Responsive trust bar */
@media (max-width: 768px) {
  .trust-bar-content {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--space-lg);
  }
}

@media (max-width: 480px) {
  .trust-bar-content {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
}

.trust-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-md);
  background: var(--green-pale);
  color: var(--green-dark);
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  transition: all var(--transition-base);
}

.trust-badge:hover {
  background: var(--green-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.trust-badge-icon {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  background: white;
  border-radius: var(--radius-xs);
}

/* ============================================
   STATISTICS COUNTER SECTION
   ============================================ */

.stats {
  background: var(--bg-light-green);
  padding: var(--space-5xl) 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

.stat-card {
  text-align: center;
  padding: var(--space-2xl);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  transition: all var(--transition-base);
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.stat-value {
  font-size: 48px;
  font-weight: 800;
  color: var(--green-primary);
  margin-bottom: var(--space-sm);
  line-height: 1;
}

.stat-label {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}

.stat-detail {
  font-size: 14px;
  color: var(--text-muted);
}

.stat-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--space-md);
  display: grid;
  place-items: center;
  background: var(--green-pale);
  border-radius: var(--radius-md);
  font-size: 24px;
}

@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
}

/* ============================================
   SERVICES OVERVIEW (Premium Cards)
   ============================================ */

.services-overview {
  padding: var(--space-5xl) 0;
  background: white;
}

.services-overview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-3xl);
}

.service-premium-card {
  position: relative;
  height: 400px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-base);
  cursor: pointer;
}

.service-premium-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
  z-index: 1;
  transition: opacity var(--transition-base);
}

.service-premium-card:hover::before {
  opacity: 0.9;
}

.service-premium-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.service-premium-card:hover .service-premium-card-image {
  transform: scale(1.1);
}

.service-premium-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-2xl);
  z-index: 2;
  color: white;
}

.service-premium-card-icon {
  width: 56px;
  height: 56px;
  background: var(--green-primary);
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  font-size: 28px;
  margin-bottom: var(--space-lg);
  transition: transform var(--transition-base);
}

.service-premium-card:hover .service-premium-card-icon {
  transform: rotate(5deg) scale(1.1);
}

.service-premium-card-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  color: white;
}

.service-premium-card-desc {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
  margin-bottom: var(--space-lg);
}

.service-premium-card-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  color: white;
  font-weight: 600;
  font-size: 15px;
}

.service-premium-card-link::after {
  content: '→';
  transition: transform var(--transition-base);
}

.service-premium-card:hover .service-premium-card-link::after {
  transform: translateX(4px);
}

.service-premium-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-2xl);
  border: 2px solid var(--green-primary);
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */

.why-choose {
  padding: var(--space-5xl) 0;
  background: var(--bg-off-white);
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-3xl);
}

.why-item {
  text-align: center;
  padding: var(--space-2xl);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  transition: all var(--transition-base);
}

.why-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--green-primary);
}

.why-item-number {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--space-lg);
  display: grid;
  place-items: center;
  background: var(--green-pale);
  color: var(--green-dark);
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 20px;
}

.why-item-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-lg);
  display: grid;
  place-items: center;
  background: var(--green-pale);
  border-radius: var(--radius-md);
  font-size: 32px;
  transition: transform var(--transition-base);
}

.why-item:hover .why-item-icon {
  transform: scale(1.1) rotate(5deg);
}

.why-item-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
}

.why-item-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

.why-item-image {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-top: var(--space-lg);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.why-item:hover .why-item-image {
  opacity: 1;
}

/* ============================================
   PROCESS TIMELINE (Advanced)
   ============================================ */

.process-timeline {
  padding: var(--space-5xl) 0;
  background: white;
}

.timeline-container {
  position: relative;
  margin-top: var(--space-4xl);
}

.timeline-line {
  position: absolute;
  top: 80px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--border-light);
  z-index: 0;
}

.timeline-line-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--green-primary), var(--green-medium));
  width: 0%;
  transition: width 1s ease;
}

.timeline-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  position: relative;
  z-index: 1;
}

.timeline-step {
  text-align: center;
  position: relative;
}

.timeline-step-number {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-lg);
  display: grid;
  place-items: center;
  background: white;
  border: 4px solid var(--border-light);
  border-radius: var(--radius-full);
  font-size: 32px;
  font-weight: 800;
  color: var(--green-primary);
  transition: all var(--transition-base);
  position: relative;
  z-index: 2;
}

.timeline-step.active .timeline-step-number {
  background: white;
  color: var(--green-primary);
  border-color: var(--border-light);
  box-shadow: none;
  transform: none;
}

.timeline-step-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.timeline-step:hover .timeline-step-image {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.timeline-step-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
}

.timeline-step-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-sm);
}

.timeline-step-duration {
  font-size: 13px;
  color: var(--green-primary);
  font-weight: 600;
}

@media (max-width: 1024px) {
  .timeline-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .timeline-line {
    display: none;
  }
}

@media (max-width: 640px) {
  .timeline-steps {
    grid-template-columns: 1fr;
  }
  
  .services-overview-grid {
    grid-template-columns: 1fr;
  }
  
  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================
   BRANDS GRID (Interactive)
   ============================================ */

.brands-section {
  padding: var(--space-5xl) 0;
  background: var(--bg-light-green);
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-3xl);
}

.brand-card-premium {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  text-align: center;
  transition: all var(--transition-base);
  cursor: pointer;
}

.brand-card-premium:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--green-primary);
}

.brand-logo {
  width: 140px;
  height: 90px;
  margin: 0 auto var(--space-lg);
  display: grid;
  place-items: center;
  transition: transform var(--transition-base);
}

.brand-card-premium:hover .brand-logo {
  transform: scale(1.1);
}

.brand-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.brand-name-premium {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
}

.brand-desc-premium {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--green-primary);
  font-weight: 600;
  font-size: 14px;
}

.brand-link::after {
  content: '→';
  transition: transform var(--transition-base);
}

.brand-card-premium:hover .brand-link::after {
  transform: translateX(4px);
}

/* ============================================
   PORTFOLIO GALLERY (Masonry)
   ============================================ */

.portfolio-section {
  padding: var(--space-5xl) 0;
  background: white;
}

.portfolio-filters {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-3xl);
}

.filter-btn {
  padding: 10px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  background: white;
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all var(--transition-base);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--green-primary);
  color: white;
  border-color: var(--green-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.portfolio-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.portfolio-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.portfolio-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.portfolio-item-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.portfolio-item:hover .portfolio-item-image {
  transform: scale(1.1);
}

.portfolio-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-xl);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.portfolio-item:hover .portfolio-item-overlay {
  opacity: 1;
}

.portfolio-item-category {
  display: inline-block;
  padding: 4px 12px;
  background: var(--green-primary);
  color: white;
  border-radius: var(--radius-xs);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: var(--space-sm);
  width: fit-content;
}

.portfolio-item-title {
  font-size: 20px;
  font-weight: 700;
  color: white;
  margin-bottom: var(--space-xs);
}

.portfolio-item-location {
  font-size: 14px;
  color: rgba(255,255,255,0.9);
}

@media (max-width: 1024px) {
  .portfolio-masonry {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .portfolio-masonry {
    grid-template-columns: 1fr;
  }
  
  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================
   TESTIMONIALS CAROUSEL
   ============================================ */

.testimonials-section {
  padding: var(--space-5xl) 0;
  background: var(--bg-off-white);
}

.testimonials-carousel {
  position: relative;
  margin-top: var(--space-3xl);
}

.testimonials-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.testimonials-track::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  scroll-snap-align: start;
  transition: all var(--transition-base);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.testimonial-rating {
  display: flex;
  gap: 4px;
  margin-bottom: var(--space-lg);
  color: #F59E0B;
  font-size: 18px;
}

.testimonial-quote {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  object-fit: cover;
}

.testimonial-info {
  flex: 1;
}

.testimonial-name {
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.testimonial-location {
  font-size: 14px;
  color: var(--text-muted);
}

.testimonial-company {
  width: 60px;
  height: 30px;
  object-fit: contain;
  opacity: 0.6;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-2xl);
}

.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-light);
  background: white;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all var(--transition-base);
}

.carousel-btn:hover {
  background: var(--green-primary);
  color: white;
  border-color: var(--green-primary);
  transform: scale(1.1);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background: var(--border-light);
  cursor: pointer;
  transition: all var(--transition-base);
}

.carousel-dot.active {
  background: var(--green-primary);
  width: 24px;
}

/* ============================================
   COVERAGE MAP SECTION
   ============================================ */

.coverage-section {
  padding: var(--space-5xl) 0;
  background: white;
}

.coverage-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
  margin-top: var(--space-3xl);
}

.coverage-map-container {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.coverage-map {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.coverage-cities {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.coverage-city {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md);
  background: var(--green-pale);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.coverage-city:hover {
  background: var(--green-light);
  transform: translateX(4px);
}

.coverage-city-icon {
  width: 24px;
  height: 24px;
  color: var(--green-primary);
}

.coverage-city-name {
  font-weight: 600;
  color: var(--text-primary);
}

@media (max-width: 1024px) {
  .coverage-content {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   CERTIFICATION SHOWCASE
   ============================================ */

.certification-showcase {
  padding: var(--space-5xl) 0;
  background: var(--bg-light-green);
}

.certification-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
  margin-top: var(--space-3xl);
}

.certification-content--image-only {
  grid-template-columns: 1fr;
}

.certification-content--image-only .certificate-image-container {
  max-width: 960px;
  margin: 0 auto;
}

.certificate-image-container {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  cursor: zoom-in;
  transition: transform var(--transition-base);
}

.certificate-image-container:hover {
  transform: scale(1.02);
}

.certificate-image {
  width: 100%;
  height: auto;
  display: block;
}

.certification-details {
  display: grid;
  gap: var(--space-lg);
}

.certification-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-lg);
  background: var(--green-primary);
  color: white;
  border-radius: var(--radius-md);
  font-weight: 700;
  width: fit-content;
}

.certification-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--space-md);
}

.certification-points li {
  display: flex;
  align-items: start;
  gap: var(--space-sm);
  color: var(--text-secondary);
}

.certification-points li::before {
  content: '✓';
  color: var(--green-primary);
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

.verify-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--green-primary);
  font-weight: 600;
  margin-top: var(--space-md);
}

.verify-link::after {
  content: '→';
  transition: transform var(--transition-base);
}

.verify-link:hover::after {
  transform: translateX(4px);
}

/* ============================================
   FAQ ACCORDION (Advanced)
   ============================================ */

.faq-section {
  padding: var(--space-5xl) 0;
  background: white;
}

.faq-search {
  max-width: 500px;
  margin: var(--space-3xl) auto var(--space-2xl);
}

.faq-search-input {
  width: 100%;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  font-size: 16px;
  transition: all var(--transition-base);
}

.faq-search-input:focus {
  outline: none;
  border-color: var(--green-primary);
  box-shadow: 0 0 0 3px rgba(34,164,111,0.1);
}

.faq-categories {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-3xl);
}

.faq-category-btn {
  padding: 8px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  background: white;
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all var(--transition-base);
}

.faq-category-btn.active {
  background: var(--green-primary);
  color: white;
  border-color: var(--green-primary);
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  gap: var(--space-md);
}

.faq-item {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
}

.faq-item.active {
  border-color: var(--green-primary);
  box-shadow: var(--shadow-md);
}

.faq-question {
  padding: var(--space-lg) var(--space-xl);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 18px;
  color: var(--text-primary);
  transition: color var(--transition-base);
}

.faq-item.active .faq-question {
  color: var(--green-primary);
}

.faq-icon {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  background: var(--green-pale);
  border-radius: var(--radius-xs);
  transition: transform var(--transition-base);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  background: var(--green-primary);
  color: white;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base), padding var(--transition-base);
  padding: 0 var(--space-xl);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 var(--space-xl) var(--space-lg);
}

.faq-answer-content {
  color: var(--text-secondary);
  line-height: 1.7;
  padding-top: var(--space-md);
}

/* ============================================
   AIDES & SUBVENTIONS SECTION
   ============================================ */

.aides-section {
  padding: var(--space-5xl) 0;
  background: var(--bg-off-white);
}

.aides-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-3xl);
}

.aide-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  transition: all var(--transition-base);
}

.aide-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-primary);
}

.aide-icon {
  width: 56px;
  height: 56px;
  background: var(--green-pale);
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  font-size: 28px;
  margin-bottom: var(--space-lg);
}

.aide-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
}

.aide-amount {
  font-size: 32px;
  font-weight: 800;
  color: var(--green-primary);
  margin-bottom: var(--space-md);
}

.aide-description {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
}

.aide-eligibility {
  padding: var(--space-md);
  background: var(--green-pale);
  border-radius: var(--radius-md);
  font-size: 14px;
  color: var(--green-dark);
}

.check-eligibility-btn {
  margin-top: var(--space-lg);
  width: 100%;
}

/* ============================================
   FINAL CTA SECTION (Premium)
   ============================================ */

.final-cta {
  position: relative;
  padding: var(--space-6xl) 0;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../images/cta-background.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  z-index: 0;
}

.final-cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(34,164,111,0.95) 0%, rgba(42,200,138,0.9) 100%);
  z-index: 1;
}

.final-cta .container {
  position: relative;
  z-index: 2;
}

.final-cta-content {
  text-align: center;
  color: white;
  max-width: 800px;
  margin: 0 auto;
}

.final-cta h2 {
  font-size: 48px;
  margin-bottom: var(--space-lg);
  color: white;
}

.final-cta p {
  font-size: 20px;
  margin-bottom: var(--space-2xl);
  opacity: 0.95;
}

.final-cta-actions {
  display: flex;
  gap: var(--space-lg);
  justify-content: center;
  flex-wrap: wrap;
}

.final-cta .btn.primary {
  background: white;
  color: var(--green-primary);
  font-size: 18px;
  padding: 16px 32px;
}

.final-cta .btn.primary:hover {
  background: var(--green-pale);
  transform: translateY(-2px);
}

.final-cta .btn.ghost {
  border-color: white;
  color: white;
}

.final-cta .btn.ghost:hover {
  background: rgba(255,255,255,0.1);
}

.final-cta-trust {
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
  margin-top: var(--space-3xl);
  flex-wrap: wrap;
}

.final-cta-trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: rgba(255,255,255,0.9);
  font-size: 14px;
}

/* ============================================
   SECTION KICKER & LEAD
   ============================================ */

.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green-primary);
  font-weight: 700;
  font-size: 13px;
  margin-bottom: var(--space-md);
  display: inline-block;
}

.section-lead {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 700px;
  text-align: center;
  margin: 0 auto;
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  background: var(--text-primary);
  color: white;
  padding: var(--space-5xl) 0 var(--space-xl);
  margin-top: var(--space-5xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
}

.footer-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: var(--space-lg);
  color: white;
}

.footer-text {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  margin-bottom: var(--space-sm);
  line-height: 1.6;
}

.footer-certifications {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.footer-certifications a {
  display: inline-block;
}

.footer-certifications img {
  max-width: 220px;
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

.footer-text a {
  color: rgba(255,255,255,0.8);
  transition: color var(--transition-base);
}

.footer-text a:hover {
  color: var(--green-light);
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--space-xl);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-links {
  display: flex;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  transition: color var(--transition-base);
}

.footer-links a:hover {
  color: var(--green-light);
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.text-center {
  text-align: center;
}

.mt-xl {
  margin-top: var(--space-xl);
}

.mb-xl {
  margin-bottom: var(--space-xl);
}

.fade-in {
  animation: fadeIn 0.8s ease-out;
}

.fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

@media (max-width: 1280px) {
  .container {
    max-width: 100%;
    padding: var(--space-lg);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  h1 {
    font-size: 32px;
    line-height: 40px;
  }
  
  h2 {
    font-size: 24px;
    line-height: 32px;
  }
  
  section {
    padding: var(--space-3xl) 0;
  }
}

@media (max-width: 768px) {
  /* Show hamburger menu on mobile */
  .hamburger-menu-btn {
    display: flex !important;
    position: relative;
    z-index: 2000;
  }

  .nav-links {
    display: none !important;
  }

  .nav-actions {
    display: none !important;
  }

  .hero-cta-main {
    font-size: 16px;
    padding: 14px 24px;
    min-width: 180px;
    width: 100%;
    max-width: 280px;
  }

  .hero-cta-center {
    margin: var(--space-lg) 0 var(--space-md) 0;
  }
}

@media (max-width: 480px) {
  .hero-cta-main {
    font-size: 15px;
    padding: 12px 20px;
    min-width: 160px;
  }

  .hero-cta-center {
    margin: var(--space-md) 0 var(--space-sm) 0;
  }
}

/* Hamburger Menu Styles */
.hamburger-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 28px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: var(--space-md);
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  z-index: 3000;
}

.hamburger-menu-btn:hover {
  background: rgba(0, 0, 0, 0.08);
  transform: scale(1.05);
}

.hamburger-menu-btn.active {
  transform: scale(1.1);
  background: rgba(34, 164, 111, 0.1);
}

.hamburger-menu-btn:active {
  transform: scale(0.95);
}

.hamburger-menu-btn:focus {
  outline: 2px solid var(--green-primary);
  outline-offset: 2px;
  border-radius: 8px;
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background: var(--text-primary);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-origin: center;
  border-radius: 2px;
  position: relative;
  will-change: transform, opacity;
}

/* Perfect X transformation using pseudo-elements */
.hamburger-menu-btn.active::before,
.hamburger-menu-btn.active::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 3px;
  background: var(--text-primary);
  border-radius: 1px;
  transition: transform 0.3s ease;
  will-change: transform;
  transform-origin: center;
}

.hamburger-menu-btn.active::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.hamburger-menu-btn.active::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.hamburger-menu-btn.active .hamburger-line {
  opacity: 0;
}

/* Dropdown Menu Styles */
.dropdown-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  height: auto;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
  z-index: 2500;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.3s ease;
  padding: 24px 20px 24px;
  box-sizing: border-box;
  visibility: hidden;
  opacity: 0;
  will-change: transform, opacity;
  list-style: none;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.dropdown-menu.active {
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
}

.dropdown-nav {
  width: 100%;
  margin-top: 20px;
}

.dropdown-nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.dropdown-nav-links li {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: opacity, transform;
}

.dropdown-menu.active .dropdown-nav-links li {
  opacity: 1;
  transform: translateY(0);
}

.dropdown-menu.active .dropdown-nav-links li:nth-child(1) { transition-delay: 0.1s; }
.dropdown-menu.active .dropdown-nav-links li:nth-child(2) { transition-delay: 0.15s; }
.dropdown-menu.active .dropdown-nav-links li:nth-child(3) { transition-delay: 0.2s; }
.dropdown-menu.active .dropdown-nav-links li:nth-child(4) { transition-delay: 0.25s; }
.dropdown-menu.active .dropdown-nav-links li:nth-child(5) { transition-delay: 0.3s; }
.dropdown-menu.active .dropdown-nav-links li:nth-child(6) { transition-delay: 0.35s; }

.dropdown-nav-links a {
  font-size: 18px;
  padding: 16px 20px;
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  width: 100%;
  display: block;
  text-align: center;
  border-radius: 12px;
  position: relative;
  will-change: transform;
  box-sizing: border-box;
}

.dropdown-nav-links a:hover {
  color: var(--green-primary);
  background: rgba(34, 164, 111, 0.08);
  transform: translateY(-2px);
}

.dropdown-cta-item {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  width: 100%;
  display: flex;
  justify-content: center;
}

.dropdown-cta-btn {
  flex-shrink: 0;
  min-width: 200px;
  max-width: 280px;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  box-sizing: border-box;
}

/* ============================================
   ANIMATIONS & TRANSITIONS
   ============================================ */

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes rotateIn {
  from {
    opacity: 0;
    transform: rotate(-10deg);
  }
  to {
    opacity: 1;
    transform: rotate(0);
  }
}

/* Scroll animations */
.fade-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   PAGE HERO (Services, Contact, Travaux)
   ============================================ */

.page-hero {
  padding: var(--space-5xl) 0;
  background: linear-gradient(135deg, rgba(34,164,111,0.1) 0%, rgba(240,249,245,0.5) 100%);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

@media (max-width: 1024px) {
  .page-hero-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   PROJECT MODAL (Portfolio)
   ============================================ */

.project-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.9);
  z-index: 10000;
  overflow-y: auto;
  padding: var(--space-4xl);
  display: none;
}

.project-modal-content {
  max-width: 1200px;
  margin: 0 auto;
  background: white;
  border-radius: var(--radius-xl);
  padding: var(--space-4xl);
  position: relative;
  animation: scaleIn 0.3s ease;
}

.project-modal-close {
  position: absolute;
  top: var(--space-xl);
  right: var(--space-xl);
  width: 40px;
  height: 40px;
  border: none;
  background: var(--green-primary);
  color: white;
  border-radius: var(--radius-full);
  cursor: pointer;
  font-size: 24px;
  display: grid;
  place-items: center;
  transition: all var(--transition-base);
}

.project-modal-close:hover {
  background: var(--green-dark);
  transform: scale(1.1);
}

/* ============================================
   CONTACT FORM ENHANCEMENTS
   ============================================ */

.contact-form-section {
  padding: var(--space-5xl) 0;
}

.contact-form {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  background: white;
  padding: var(--space-3xl);
  box-shadow: var(--shadow-lg);
  display: grid;
  gap: var(--space-xl);
}

.contact-form label {
  display: grid;
  gap: var(--space-sm);
  color: var(--text-primary);
  font-weight: 600;
  font-size: 15px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  background: white;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 15px;
  transition: all var(--transition-base);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--green-primary);
  box-shadow: 0 0 0 3px rgba(34,164,111,0.1);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-form {
    padding: var(--space-xl);
  }
}

/* ============================================
   SERVICE DETAIL SECTIONS
   ============================================ */

.service-detail {
  padding: var(--space-5xl) 0;
}

.service-brand-grid,
.service-block-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-3xl);
}

.service-brand-card,
.service-block-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  transition: all var(--transition-base);
}

.service-brand-card:hover,
.service-block-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-primary);
}

.service-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  background: var(--green-pale);
  border-radius: var(--radius-md);
  font-size: 32px;
  margin-bottom: var(--space-lg);
}

.service-title {
  font-size: 20px;
  font-weight: 700;
  margin: var(--space-lg) 0 var(--space-sm);
  color: var(--text-primary);
}

.service-text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================
   ALERT MESSAGES
   ============================================ */

.alert {
  padding: var(--space-lg) var(--space-xl);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-xl);
  border: 1px solid;
  font-size: 15px;
}

.alert.success {
  border-color: var(--green-primary);
  background: var(--green-pale);
  color: var(--green-dark);
}

.alert.error {
  border-color: var(--error);
  background: rgba(239,68,68,0.1);
  color: var(--error);
}

/* ============================================
   HIGHLIGHT LIST
   ============================================ */

.highlight-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--space-md);
}

.highlight-list li {
  display: flex;
  align-items: start;
  gap: var(--space-sm);
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
}

.highlight-list li::before {
  content: '✓';
  color: var(--green-primary);
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}
