/* ==========================================================================
   IDOLE FACADES — Premium Website
   Colors from business card: Red #CC2229, Green #1B5220, Charcoal #1E2832
   ========================================================================== */

:root {
  /* Primary: Bright Red (from red bar / roof left) */
  --red:        #CC2229;
  --red-light:  #E0353D;
  --red-dark:   #A01A20;
  --red-rgb:    204, 34, 41;

  /* Secondary: Dark Forest Green (from green bar / roof right) */
  --green:      #1B5220;
  --green-light:#2E7A33;
  --green-dark: #0F3414;
  --green-rgb:  27, 82, 32;

  /* Neutral / Charcoal (from card text) */
  --charcoal:   #1E2832;
  --charcoal-2: #2C3A4A;
  --charcoal-3: #3D4F61;

  /* Whites & Grays */
  --white:      #FFFFFF;
  --off-white:  #F8F9FA;
  --gray-100:   #F1F3F5;
  --gray-200:   #E5E9ED;
  --gray-300:   #CDD3DA;
  --gray-400:   #9AA5B4;
  --gray-500:   #6B7A8D;
  --gray-600:   #4A5568;
  --gray-800:   #2D3748;
  --gray-900:   #1A202C;

  /* Gold accent */
  --gold:       #D4AF37;
  --gold-light: #F0CB55;

  /* Semantic */
  --success:    #22C55E;
  --error:      #EF4444;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing (8px) */
  --s1: 0.25rem; --s2: 0.5rem;  --s3: 0.75rem; --s4: 1rem;
  --s5: 1.25rem; --s6: 1.5rem;  --s8: 2rem;    --s10: 2.5rem;
  --s12: 3rem;   --s16: 4rem;   --s20: 5rem;   --s24: 6rem;

  /* Radii */
  --r-sm: 4px; --r-md: 8px; --r-lg: 16px; --r-xl: 24px; --r-full: 9999px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0,0,0,.12);
  --shadow-md:  0 4px 12px rgba(0,0,0,.15);
  --shadow-lg:  0 8px 30px rgba(0,0,0,.18);
  --shadow-xl:  0 20px 60px rgba(0,0,0,.22);
  --shadow-red: 0 8px 32px rgba(var(--red-rgb),.35);

  /* Transitions */
  --t-fast: 150ms ease;
  --t-base: 300ms ease;
  --t-slow: 500ms ease;
}

/* ==========================================================================
   RESET & BASE
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.15;
  color: var(--charcoal);
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--s6);
}
/* --- Google Maps embed - Idole Façades --- */
.map-embed {
  background: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}
.map-embed iframe {
  display: block;
  width: 100%;
  height: 280px;
  border: 0;
  filter: grayscale(0.15) contrast(1.05);
}
.map-embed .map-caption {
  display: flex;
  gap: var(--s3);
  align-items: flex-start;
  padding: var(--s4) var(--s5);
  font-size: .85rem;
  color: var(--gray-600);
  line-height: 1.6;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
}
.map-embed .map-caption svg {
  width: 20px; height: 20px;
  color: var(--red);
  flex-shrink: 0;
  margin-top: 2px;
}
.map-embed .map-caption strong { color: var(--charcoal); font-weight: 700; }
.map-embed .map-caption a { color: var(--red); font-weight: 600; font-size: .8rem; }
.map-embed .map-caption a:hover { text-decoration: underline; }
/* ==========================================================================
   PRELOADER
   ========================================================================== */
#preloader {
  position: fixed; inset: 0;
  background: var(--charcoal);
  display: flex; align-items: center; justify-content: center;
  z-index: 10000;
  transition: opacity .6s, visibility .6s;
}
#preloader.hidden { opacity: 0; visibility: hidden; }

.loader-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s4);
  animation: loaderPulse 1.2s ease-in-out infinite alternate;
}
.loader-logo img {
  width: 160px;
  filter: drop-shadow(0 0 20px rgba(var(--red-rgb),.4));
}
.loader-bar {
  width: 160px;
  height: 3px;
  background: var(--gray-600);
  border-radius: var(--r-full);
  overflow: hidden;
}
.loader-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--red) 0%, var(--green) 100%);
  border-radius: var(--r-full);
  animation: loaderFill 1.5s ease-in-out forwards;
}
@keyframes loaderPulse { from { opacity: .7; } to { opacity: 1; } }
@keyframes loaderFill { from { width: 0; } to { width: 100%; } }

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: var(--s3) 0;
  transition: all var(--t-base);
}
.navbar::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(30, 40, 50, 0);
  backdrop-filter: blur(0px);
  transition: all var(--t-base);
}
.navbar.scrolled::before {
  background: rgba(30, 40, 50, 0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(0,0,0,.4);
}

.nav-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--s4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s2);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: var(--s3);
  z-index: 1;
}
.logo-img {
  height: 52px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.3));
  transition: transform var(--t-base);
}
.logo:hover .logo-img { transform: scale(1.04); }
.logo-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.01em;
}
.logo-name span { color: var(--red); }
.logo-tagline-small {
  font-size: 0.6rem;
  font-weight: 500;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-top: 2px;
}

/* Nav menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--s6);
  position: relative;
  z-index: 1;
}
.nav-link {
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  position: relative;
  padding: var(--s2) 0;
  transition: color var(--t-base);
  white-space: nowrap;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--red);
  transition: width var(--t-base);
}
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

/* Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--s3);
  position: relative;
  z-index: 1;
}

.btn-devis-nav {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  padding: var(--s2) var(--s5);
  background: var(--red);
  color: var(--white);
  font-size: .85rem;
  font-weight: 600;
  border-radius: var(--r-full);
  border: 2px solid var(--red);
  transition: all var(--t-base);
  white-space: nowrap;
}
.btn-devis-nav:hover {
  background: var(--red-light);
  border-color: var(--red-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-red);
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: var(--s2) var(--s3);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--r-full);
  font-size: .8rem;
  font-weight: 600;
  color: var(--white);
  transition: all var(--t-base);
}
.lang-switch:hover { background: rgba(255,255,255,.15); }
.lang-active { color: var(--red); }
.lang-inactive { opacity: .5; }
.lang-separator { opacity: .3; margin: 0 1px; }

/* Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--s2);
  z-index: 1;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  border-radius: var(--r-full);
  transition: all var(--t-base);
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 1100px) {
  .nav-menu {
    position: fixed; top: 0; right: -110%;
    width: min(360px, 100%);
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: var(--s6);
    background: var(--charcoal);
    padding: var(--s20) var(--s10);
    transition: right var(--t-slow);
    border-left: 1px solid rgba(255,255,255,.08);
  }
  .nav-menu.active { right: 0; }
  .nav-toggle { display: flex; }
  .nav-link { font-size: 1.3rem; }
  .btn-devis-nav { display: none; }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg-img {
  position: absolute; inset: 0;
  background-image: url('./public/hero_bg.webp');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 1.4s ease-out;
  will-change: transform;
}
.hero-bg-img.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    120deg,
    rgba(30,40,50,.96) 0%,
    rgba(30,40,50,.88) 45%,
    rgba(27,82,32,.75) 100%
  );
}
.hero-overlay-stripes {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 40px,
    rgba(204,34,41,.025) 40px,
    rgba(204,34,41,.025) 41px
  );
}

/* Floating particles */
.hero-particles { position: absolute; inset: 0; pointer-events: none; z-index: 1; overflow: hidden; }
.particle {
  position: absolute;
  bottom: -30px;
  border-radius: 50%;
  opacity: 0;
  animation-name: floatParticle;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-duration: 28s;
  will-change: transform, opacity;
  pointer-events: none;
}

@keyframes floatParticle {
  0%   { transform: translateY(0) rotate(0deg); opacity: 0; }
  5%   { opacity: .35; }
  90%  { opacity: .25; }
  100% { transform: translateY(-110vh) rotate(180deg); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px var(--s6) var(--s20);
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: var(--s16);
  align-items: center;
}

@media (max-width: 1023px) {
  .hero-content {
    grid-template-columns: 1fr;
    padding: 140px var(--s6) var(--s16);
    text-align: center;
  }
}

.hero-left {}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  padding: var(--s2) var(--s5);
  background: rgba(204,34,41,.15);
  border: 1px solid rgba(204,34,41,.3);
  border-radius: var(--r-full);
  font-size: .8rem;
  font-weight: 600;
  color: #FF8080;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: var(--s6);
  animation: fadeSlideUp .8s ease both;
}
.hero-badge-dot {
  width: 7px; height: 7px;
  background: var(--red);
  border-radius: 50%;
  animation: blinkDot 2.2s ease-in-out infinite alternate;
}
@keyframes blinkDot { from { opacity: 1; } to { opacity: .35; } }

.hero-title {
  margin-bottom: var(--s5);
  animation: fadeSlideUp .8s ease .15s both;
}
.hero-title-if {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .3em;
  display: block;
  margin-bottom: var(--s2);
  font-family: var(--font-body);
}
.hero-title-main {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  display: block;
}
.hero-title-main .red { color: var(--red); }
.hero-title-main .green { color: #5DBF66; }

.hero-tagline {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 400;
  font-family: var(--font-display);
  font-style: italic;
  color: rgba(255,255,255,.75);
  margin-bottom: var(--s6);
  animation: fadeSlideUp .8s ease .3s both;
}

.hero-services-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2);
  margin-bottom: var(--s8);
  animation: fadeSlideUp .8s ease .45s both;
}

@media (max-width: 1023px) {
  .hero-services-list { justify-content: center; }
}

.hero-service-chip {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  padding: var(--s2) var(--s4);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-full);
  font-size: .8rem;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  backdrop-filter: blur(6px);
}
.hero-service-chip svg {
  width: 14px; height: 14px;
  color: var(--red);
  flex-shrink: 0;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s4);
  animation: fadeSlideUp .8s ease .6s both;
}
@media (max-width: 1023px) { .hero-buttons { justify-content: center; } }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s2);
  padding: var(--s4) var(--s8);
  font-size: .95rem;
  font-weight: 600;
  border-radius: var(--r-lg);
  transition: all var(--t-base);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,.1);
  opacity: 0;
  transition: opacity var(--t-fast);
}
.btn:hover::after { opacity: 1; }

.btn svg { width: 18px; height: 18px; transition: transform var(--t-base); }
.btn:hover svg { transform: translateX(4px); }

.btn-red {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(var(--red-rgb),.4);
}
.btn-red:hover {
  background: var(--red-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(var(--red-rgb),.5);
}

.btn-green {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(var(--green-rgb),.4);
}
.btn-green:hover {
  background: var(--green-light);
  transform: translateY(-3px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.25);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.5);
  transform: translateY(-3px);
}

/* Hero right card */
.hero-right {
  animation: fadeSlideRight .8s ease .3s both;
}

@media (max-width: 1023px) { .hero-right { display: none; } }

.hero-card {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-xl);
  padding: var(--s8);
  position: relative;
  overflow: hidden;
}
.hero-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red) 0%, var(--green) 100%);
}
.hero-card-logo {
  width: 140px;
  margin-bottom: var(--s6);
  filter: brightness(1.1);
}
.hero-card-tagline {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--s4);
  font-family: var(--font-display);
}
.hero-card-services {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
  margin-bottom: var(--s6);
}
.hero-card-service {
  display: flex;
  align-items: center;
  gap: var(--s3);
  padding: var(--s3) var(--s4);
  background: rgba(255,255,255,.05);
  border-radius: var(--r-md);
  border-left: 3px solid var(--red);
  font-size: .875rem;
  color: rgba(255,255,255,.85);
}
.hero-card-service svg { width: 16px; height: 16px; color: var(--red); flex-shrink: 0; }

.hero-contact-strip {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
}
.hero-contact-item {
  display: flex;
  align-items: center;
  gap: var(--s3);
  padding: var(--s3) var(--s4);
  border-radius: var(--r-md);
  font-size: .9rem;
  font-weight: 600;
  color: var(--white);
}
.hero-contact-item.red-bg { background: var(--red); }
.hero-contact-item.green-bg { background: var(--green); }
.hero-contact-item svg { width: 18px; height: 18px; flex-shrink: 0; }

/* Scroll indicator - FIXED: removed mouse bounce which made it look "super fast" */
.hero-scroll {
  position: absolute;
  bottom: var(--s8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s2);
  color: rgba(255,255,255,.45);
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.mouse {
  width: 24px; height: 38px;
  border: 2px solid rgba(255,255,255,.35);
  border-radius: 14px;
  position: relative;
  animation: none;
}
.wheel {
  position: absolute; top: 7px; left: 50%;
  transform: translateX(-50%);
  width: 3px; height: 7px;
  background: rgba(255,255,255,.7);
  border-radius: var(--r-full);
  animation: wheelScroll 2.2s ease-out infinite;
}

@keyframes wheelScroll {
  0% { opacity: 1; transform: translateX(-50%) translateY(0); }
  40% { opacity: 1; }
  100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

/* ==========================================================================
   CTA STRIP (phone + email — matching business card)
   ========================================================================== */
.cta-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

@media (max-width: 640px) { .cta-strip { grid-template-columns: 1fr; } }

.cta-half {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s4);
  padding: var(--s5) var(--s8);
  transition: filter var(--t-base);
}
.cta-half:hover { filter: brightness(1.1); }
.cta-half.red { background: var(--red); }
.cta-half.green { background: var(--green); }
.cta-half svg { width: 24px; height: 24px; color: var(--white); flex-shrink: 0; }
.cta-half-text { display: flex; flex-direction: column; }
.cta-half-label { font-size: .7rem; font-weight: 500; color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: .08em; }
.cta-half-value { font-size: 1.15rem; font-weight: 700; color: var(--white); letter-spacing: .02em; }
.cta-half-value a { color: inherit; }

/* ==========================================================================
   SECTION HELPERS
   ========================================================================== */
.section-tag {
  display: inline-block;
  padding: var(--s2) var(--s4);
  background: rgba(var(--red-rgb),.08);
  color: var(--red);
  font-size: .8rem;
  font-weight: 700;
  border-radius: var(--r-full);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: var(--s4);
}
.section-tag.green-tag {
  background: rgba(var(--green-rgb),.08);
  color: var(--green);
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: 700;
  margin-bottom: var(--s4);
  color: var(--charcoal);
}
.section-title.white { color: var(--white); }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 580px;
}

.section-header {
  text-align: center;
  margin-bottom: var(--s12);
}
.section-header .section-subtitle { margin: 0 auto; }

/* Divider */
.divider {
  display: flex;
  align-items: center;
  gap: var(--s4);
  margin: var(--s4) 0;
}
.divider-line { flex: 1; height: 1px; background: var(--gray-200); }
.divider-icon {
  width: 10px; height: 10px;
  background: var(--red);
  border-radius: 50%;
  transform: rotate(45deg);
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services-section {
  padding: var(--s24) 0;
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}
.services-bg-image {
  position: absolute; inset: 0;
  background-image: url('./public/service_bg.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: .04;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s6);
  position: relative;
}

@media (max-width: 1100px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  background: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: all var(--t-base);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.service-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.service-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.08); }
.service-card-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(30,40,50,.7) 0%, transparent 60%);
}
.service-card-num {
  position: absolute;
  top: var(--s4); right: var(--s4);
  width: 36px; height: 36px;
  background: var(--red);
  color: var(--white);
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  font-weight: 700;
}

.service-card-body {
  padding: var(--s6);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card-icon {
  width: 48px; height: 48px;
  background: rgba(var(--red-rgb),.08);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--s4);
  transition: all var(--t-base);
}
.service-card:hover .service-card-icon {
  background: var(--red);
}
.service-card-icon svg {
  width: 24px; height: 24px;
  color: var(--red);
  transition: color var(--t-base);
}
.service-card:hover .service-card-icon svg { color: var(--white); }

.service-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: var(--s2);
  color: var(--charcoal);
}
.service-card-desc {
  font-size: .9rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: var(--s4);
  flex: 1;
}
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-size: .875rem;
  font-weight: 600;
  color: var(--red);
  transition: gap var(--t-base);
  margin-top: auto;
}
.service-card-link:hover { gap: var(--s3); }
.service-card-link svg { width: 16px; height: 16px; }

/* Feature card */
.service-card.featured-service {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  border-color: transparent;
  color: var(--white);
}
.service-card.featured-service .service-card-title { color: var(--white); }
.service-card.featured-service .service-card-desc { color: rgba(255,255,255,.75); }
.service-card.featured-service .service-card-icon {
  background: rgba(255,255,255,.1);
}
.service-card.featured-service .service-card-icon svg { color: var(--white); }
.service-card.featured-service:hover .service-card-icon { background: var(--red); }
.service-card.featured-service .service-card-link { color: #7DE883; }
.service-card.featured-service .service-card-num { background: var(--red); }

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about-section {
  padding: var(--s24) 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.about-bg-pattern {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 45%;
  background-image: url('./public/about_img_secondary.webp');
  background-size: cover;
  background-position: center;
  clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.about-bg-pattern::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--white) 0%, rgba(255,255,255,.15) 50%, rgba(27,82,32,.6) 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s16);
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 1023px) {
  .about-grid { grid-template-columns: 1fr; gap: var(--s10); }
  .about-bg-pattern { display: none; }
}

.about-left {}
.about-left .section-title { text-align: left; }

.about-text {
  font-size: 1.0rem;
  color: var(--gray-600);
  line-height: 1.85;
  margin-bottom: var(--s5);
}

.about-cert-card {
  display: flex;
  align-items: center;
  gap: var(--s4);
  padding: var(--s5) var(--s6);
  background: linear-gradient(135deg, rgba(var(--green-rgb),.04) 0%, rgba(var(--green-rgb),.1) 100%);
  border-left: 4px solid var(--green);
  border-radius: 0 var(--r-lg) var(--r-lg) 0;
  margin: var(--s8) 0;
}
.cert-icon {
  width: 52px; height: 52px;
  background: var(--green);
  border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cert-icon svg { width: 28px; height: 28px; color: var(--white); }
.cert-text {}
.cert-title { font-size: 1.05rem; font-weight: 700; color: var(--green); }
.cert-subtitle { font-size: .85rem; color: var(--gray-500); }

/* Stats */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s4);
  margin-top: var(--s8);
}
.stat-item {
  text-align: center;
  padding: var(--s6) var(--s4);
  background: var(--off-white);
  border-radius: var(--r-lg);
  border: 1px solid var(--gray-200);
  transition: all var(--t-base);
}
.stat-item:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: var(--shadow-red);
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  transition: color var(--t-base);
}
.stat-item:hover .stat-num { color: var(--white); }
.stat-plus {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--red);
  vertical-align: super;
  font-family: var(--font-display);
  transition: color var(--t-base);
}
.stat-item:hover .stat-plus { color: var(--white); }
.stat-lbl {
  font-size: .75rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-top: var(--s2);
  transition: color var(--t-base);
}
.stat-item:hover .stat-lbl { color: rgba(255,255,255,.8); }

/* About right visual */
.about-right {
  position: relative;
}
@media (max-width: 1023px) { .about-right { display: none; } }

.about-image-stack {
  position: relative;
  height: 600px;
}
.about-img-main {
  position: absolute;
  top: 0; right: 0;
  width: 80%;
  height: 420px;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-secondary {
  position: absolute;
  bottom: 0; left: 0;
  width: 65%;
  height: 260px;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 4px solid var(--white);
}
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }

.about-experience-badge {
  position: absolute;
  top: 200px; left: 0;
  background: var(--red);
  color: var(--white);
  padding: var(--s5) var(--s6);
  border-radius: var(--r-lg);
  text-align: center;
  box-shadow: var(--shadow-red);
  z-index: 2;
}
.exp-num { font-size: 2rem; font-weight: 700; font-family: var(--font-display); line-height: 1; }
.exp-label { font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; opacity: .85; margin-top: 4px; }

/* Values */
.values-section {
  padding: var(--s24) 0;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}
.values-bg {
  position: absolute; inset: 0;
  background-image: url('./public/values_bg.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: .05;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s6);
  position: relative;
}
@media (max-width: 1100px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .values-grid { grid-template-columns: 1fr; } }

.value-card {
  text-align: center;
  padding: var(--s8) var(--s6);
  background: rgba(255,255,255,.04);
  border-radius: var(--r-xl);
  border: 1px solid rgba(255,255,255,.07);
  transition: all var(--t-base);
}
.value-card:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(var(--red-rgb),.3);
  transform: translateY(-8px);
}
.value-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--s4);
  transition: transform var(--t-base);
}
.value-card:hover .value-icon { transform: scale(1.1) rotate(-5deg); }
.value-icon svg { width: 28px; height: 28px; color: var(--white); }
.value-card h4 { font-size: 1.15rem; color: var(--white); margin-bottom: var(--s3); }
.value-card p { font-size: .875rem; color: rgba(255,255,255,.55); line-height: 1.7; }

/* ==========================================================================
   PORTFOLIO SECTION
   ========================================================================== */
.portfolio-section {
  padding: var(--s24) 0;
  background: var(--off-white);
}

.portfolio-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--s3);
  margin-bottom: var(--s10);
}
.filter-btn {
  padding: var(--s3) var(--s6);
  font-size: .875rem;
  font-weight: 600;
  color: var(--gray-600);
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--r-full);
  transition: all var(--t-base);
}
.filter-btn:hover { border-color: var(--red); color: var(--red); }
.filter-btn.active { background: var(--red); color: var(--white); border-color: var(--red); }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s5);
}
@media (max-width: 1100px) { .portfolio-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .portfolio-grid { grid-template-columns: 1fr; } }

.portfolio-item.hidden { display: none; }

.portfolio-card {
  background: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--t-base);
}
.portfolio-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }

.portfolio-image {
  position: relative;
  height: 260px;
  overflow: hidden;
  cursor: ew-resize;
}
.before-after-slider {
  position: relative;
  width: 100%; height: 100%;
}
.before-image, .after-image {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.after-image { clip-path: inset(0 50% 0 0); }
.slider-handle {
  position: absolute; top: 0; bottom: 0;
  width: 2px;
  background: var(--white);
  z-index: 10; cursor: ew-resize;
}
.handle-line { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 2px; height: 100%; background: var(--white); box-shadow: 0 0 8px rgba(0,0,0,.4); }
.handle-circle {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 42px; height: 42px;
  background: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
}
.handle-circle svg { width: 18px; height: 18px; color: var(--gray-600); }

.portfolio-overlay {
  position: absolute; top: var(--s3); left: var(--s3); right: var(--s3);
  display: flex; justify-content: space-between;
  z-index: 5; pointer-events: none;
}
.before-label, .after-label {
  padding: 4px var(--s3);
  font-size: .7rem; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  border-radius: var(--r-sm);
}
.before-label { background: rgba(0,0,0,.65); color: var(--white); }
.after-label  { background: var(--green); color: var(--white); }

.portfolio-info {
  padding: var(--s5) var(--s6);
  border-top: 1px solid var(--gray-100);
}
.portfolio-info h4 {
  font-size: 1rem; font-weight: 700;
  color: var(--charcoal);
  margin-bottom: var(--s1);
}
.portfolio-info p { font-size: .8rem; color: var(--gray-400); }
.portfolio-tag {
  display: inline-block;
  padding: 2px var(--s3);
  background: rgba(var(--red-rgb),.08);
  color: var(--red);
  font-size: .7rem;
  font-weight: 600;
  border-radius: var(--r-full);
  margin-top: var(--s2);
  text-transform: uppercase;
}

/* ==========================================================================
   AIDES SECTION
   ========================================================================== */
.aides-section {
  padding: var(--s24) 0;
  background: var(--white);
  position: relative;
}
.aides-bg {
  position: absolute; inset: 0;
  background-image: url('./public/card5.webp');
  background-size: cover; background-position: center;
  background-attachment: fixed; opacity: .03;
}

.aides-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s6);
  margin-bottom: var(--s16);
  position: relative;
}
@media (max-width: 1023px) { .aides-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px)  { .aides-grid { grid-template-columns: 1fr; } }

.aide-card {
  position: relative;
  padding: var(--s8);
  background: var(--off-white);
  border-radius: var(--r-xl);
  border: 1px solid var(--gray-200);
  transition: all var(--t-base);
  overflow: hidden;
}
.aide-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red) 0%, var(--red-light) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-base);
}
.aide-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); border-color: transparent; }
.aide-card:hover::before { transform: scaleX(1); }

.aide-card.featured-aide {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  border-color: transparent;
  color: var(--white);
}
.aide-card.featured-aide::before { display: none; }

.aide-badge {
  position: absolute; top: var(--s4); right: var(--s4);
  padding: 4px var(--s3);
  background: var(--gold);
  color: var(--charcoal);
  font-size: .7rem; font-weight: 700;
  border-radius: var(--r-full);
  text-transform: uppercase;
}
.aide-icon {
  width: 56px; height: 56px;
  background: rgba(var(--red-rgb),.1);
  border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--s4);
}
.aide-icon svg { width: 28px; height: 28px; color: var(--red); }
.aide-card.featured-aide .aide-icon { background: rgba(255,255,255,.2); }
.aide-card.featured-aide .aide-icon svg { color: var(--white); }

.aide-card h3 { font-size: 1.2rem; margin-bottom: var(--s3); color: var(--charcoal); }
.aide-card.featured-aide h3 { color: var(--white); }
.aide-card > p { font-size: .9rem; color: var(--gray-500); margin-bottom: var(--s4); line-height: 1.7; }
.aide-card.featured-aide > p { color: rgba(255,255,255,.8); }

.aide-list li {
  position: relative;
  padding-left: var(--s6);
  font-size: .875rem;
  color: var(--gray-700);
  margin-bottom: var(--s2);
}
.aide-list li::before {
  content: '';
  position: absolute; left: 0; top: 7px;
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
}
.aide-card.featured-aide .aide-list li { color: rgba(255,255,255,.85); }
.aide-card.featured-aide .aide-list li::before { background: rgba(255,255,255,.7); }

/* FAQ */
.faq-section { max-width: 780px; margin: 0 auto; position: relative; }
.faq-title { text-align: center; font-size: 1.75rem; margin-bottom: var(--s8); }
.faq-item {
  background: var(--off-white);
  border-radius: var(--r-lg);
  margin-bottom: var(--s3);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: border-color var(--t-base);
}
.faq-item.active, .faq-item:hover { border-color: var(--red); }
.faq-question {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s4);
  padding: var(--s5) var(--s6);
  font-size: .975rem; font-weight: 500;
  color: var(--charcoal); text-align: left;
}
.faq-item.active .faq-question { color: var(--red); }
.faq-icon {
  width: 22px; height: 22px;
  color: var(--gray-400); flex-shrink: 0;
  transition: transform var(--t-base);
}
.faq-item.active .faq-icon { transform: rotate(180deg); color: var(--red); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height var(--t-slow); }
.faq-item.active .faq-answer { max-height: 400px; }
.faq-answer p { padding: 0 var(--s6) var(--s5); font-size: .9rem; color: var(--gray-600); line-height: 1.75; }

/* ==========================================================================
   WHY US SECTION
   ========================================================================== */
.why-us-section {
  padding: var(--s24) 0;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}
.why-bg-img {
  position: absolute; inset: 0;
  background-image: url('./public/hero_bg.webp');
  background-size: cover; background-position: center;
  background-attachment: fixed;
  opacity: .07;
}
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s6);
  position: relative;
}
@media (max-width: 1023px) { .why-us-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .why-us-grid { grid-template-columns: 1fr; } }

.why-item {
  display: flex;
  gap: var(--s4);
  padding: var(--s6);
  background: rgba(255,255,255,.04);
  border-radius: var(--r-lg);
  border: 1px solid rgba(255,255,255,.06);
  transition: all var(--t-base);
}
.why-item:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(var(--red-rgb),.3);
  transform: translateY(-4px);
}
.why-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: rgba(var(--red-rgb),.15);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--t-base);
}
.why-item:hover .why-icon { background: var(--red); }
.why-icon svg { width: 24px; height: 24px; color: var(--red); transition: color var(--t-base); }
.why-item:hover .why-icon svg { color: var(--white); }
.why-text h4 { font-size: 1rem; color: var(--white); margin-bottom: var(--s1); }
.why-text p { font-size: .85rem; color: rgba(255,255,255,.5); line-height: 1.65; }

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-section {
  padding: var(--s24) 0;
  background: var(--off-white);
  position: relative;
}
.contact-bg {
  position: absolute; inset: 0;
  background-image: url('./public/contact_bg.webp');
  background-size: cover; background-position: center;
  background-attachment: fixed; opacity: .04;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: var(--s10);
  position: relative;
}
@media (max-width: 1023px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-form-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: var(--s10);
  box-shadow: var(--shadow-lg);
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--s5);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s5); }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }

.form-group { display: flex; flex-direction: column; gap: var(--s2); }
.form-group label { font-size: .85rem; font-weight: 600; color: var(--charcoal); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: var(--s4);
  font-size: .95rem;
  font-family: inherit;
  color: var(--charcoal);
  background: var(--off-white);
  border: 2px solid var(--gray-200);
  border-radius: var(--r-lg);
  transition: all var(--t-base);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--red);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(var(--red-rgb),.1);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--gray-300); }
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%239AA5B4'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
}
.form-group textarea { resize: vertical; min-height: 110px; }
.btn-submit-full { width: 100%; padding: var(--s5) var(--s8); margin-top: var(--s3); }

/* Contact info sidebar */
.contact-info-side {
  display: flex;
  flex-direction: column;
  gap: var(--s5);
}
.contact-info-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: var(--s8);
  box-shadow: var(--shadow-md);
}
.contact-info-card h3 {
  font-size: 1.2rem;
  margin-bottom: var(--s6);
  color: var(--charcoal);
  padding-bottom: var(--s4);
  border-bottom: 2px solid var(--gray-100);
}
.info-item {
  display: flex;
  gap: var(--s4);
  padding: var(--s4) 0;
  border-bottom: 1px solid var(--gray-100);
}
.info-item:last-child { border-bottom: none; padding-bottom: 0; }
.info-item:first-of-type { padding-top: 0; }
.info-icon {
  width: 44px; height: 44px;
  background: rgba(var(--red-rgb),.08);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.info-icon svg { width: 22px; height: 22px; color: var(--red); }
.info-content h4 { font-size: .8rem; font-weight: 600; color: var(--gray-400); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 4px; }
.info-content a, .info-content p { font-size: .975rem; color: var(--charcoal); line-height: 1.5; }
.info-content a:hover { color: var(--red); }

.map-placeholder {
  background: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 180px;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  gap: var(--s3);
  color: var(--gray-300);
  border: 2px dashed var(--gray-200);
}
.map-placeholder svg { width: 48px; height: 48px; }
.map-placeholder p { font-size: .875rem; color: var(--gray-400); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}
.footer-bg {
  position: absolute; inset: 0;
  background-image: url('./public/hero_bg.webp');
  background-size: cover; background-position: center;
  opacity: .04;
}
.footer-top-bar {
  height: 4px;
  background: linear-gradient(90deg, var(--red) 0%, var(--green) 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--s10);
  padding: var(--s16) 0;
  position: relative;
}
@media (max-width: 1023px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--s8); } }
@media (max-width: 640px)  { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand {}
.footer-logo-img {
  height: 60px;
  filter: brightness(1.2);
  margin-bottom: var(--s5);
}
.footer-tagline { font-size: .95rem; color: rgba(255,255,255,.55); line-height: 1.7; margin-bottom: var(--s6); }
.footer-cert {
  display: inline-flex;
  align-items: center;
  gap: var(--s3);
  padding: var(--s3) var(--s5);
  background: rgba(255,255,255,.06);
  border-radius: var(--r-lg);
  border: 1px solid rgba(255,255,255,.1);
}
.footer-cert svg { width: 20px; height: 20px; color: var(--gold); }
.footer-cert span { font-size: .875rem; color: var(--white); font-weight: 600; }

.footer-col h4 { font-size: .9rem; font-weight: 700; color: var(--white); margin-bottom: var(--s5); text-transform: uppercase; letter-spacing: .1em; }
.footer-col a:not(.social-link) {
  display: block;
  font-size: .875rem;
  color: rgba(255,255,255,.5);
  margin-bottom: var(--s3);
  transition: all var(--t-base);
}
.footer-col a:not(.social-link):hover { color: var(--white); padding-left: var(--s2); }
.footer-contact-item {
  display: flex; align-items: center;
  gap: var(--s3);
  font-size: .875rem;
  color: rgba(255,255,255,.5) !important;
  margin-bottom: var(--s3);
  transition: color var(--t-base) !important;
}
.footer-contact-item:hover { color: var(--white) !important; }
.footer-contact-item svg { width: 18px; height: 18px; color: var(--red); flex-shrink: 0; }

.footer-social { display: flex; gap: var(--s3); margin-top: var(--s5); }
.footer-social { display: flex; gap: var(--s3); margin-top: var(--s5); flex-wrap: wrap; }
.footer-social .social-link {
  width: 40px; height: 40px;
  background: rgba(255,255,255,.06);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--t-base);
  margin-bottom: 0;
  padding-left: 0 !important;
  flex-shrink: 0;
}
.footer-social .social-link:hover { 
  background: var(--red); 
  transform: translateY(-4px);
  padding-left: 0;
  color: var(--white);
}
.footer-social .social-link svg { width: 18px; height: 18px; color: var(--white); display: block; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: var(--s5) 0;
  text-align: center;
  position: relative;
}
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.3); }



/* ==========================================================================
   SCROLL TOP
   ========================================================================== */
.scroll-top-btn {
  position: fixed;
  bottom: var(--s8); right: var(--s8);
  width: 50px; height: 50px;
  background: var(--red);
  border-radius: var(--r-full);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-red);
  opacity: 0; visibility: hidden;
  transform: translateY(20px);
  transition: all var(--t-base);
  z-index: 100;
}
.scroll-top-btn.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top-btn:hover { background: var(--red-light); transform: translateY(-4px); }
.scroll-top-btn svg { width: 22px; height: 22px; color: var(--white); }

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeSlideRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ==========================================================================
   RESPONSIVE TWEAKS
   ========================================================================== */
@media (max-width: 640px) {
  .hero { min-height: 100svh; }
  .btn { padding: var(--s3) var(--s6); font-size: .875rem; }
  .hero-buttons { flex-direction: column; width: 100%; }
  .hero-buttons .btn { width: 100%; }
}

@media (max-height: 500px) and (orientation: landscape) {
  .hero { min-height: auto; padding-top: 80px; padding-bottom: var(--s12); }
  .hero-scroll { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  /* Completely disable decorative animations that cause "super fast" flicker */
  .particle,
  .wheel,
  .mouse,
  .hero-badge-dot,
  .hero-bg-img,
  .loader-logo {
    animation: none !important;
    transition: none !important;
  }
  .particle { display: none !important; }
  .wheel { opacity: 0.8; transform: translateX(-50%) translateY(4px); }
}

@media (max-width: 1023px) {
  .hero-content {
    padding-top: 140px;
  }
}

@media (max-width: 640px) {
  .hero-content {
    padding-top: 120px;
  }
}

@media (max-width: 640px) {
  .logo-img {
    height: 38px;
  }
  .logo-name {
    font-size: 1.1rem;
  }
  .logo-tagline-small {
    display: none;
  }
  .lang-switch {
    padding: var(--s1) var(--s2);
    font-size: .75rem;
  }
  .nav-toggle {
    flex-shrink: 0;
  }
}