/* ============================================================
   TURQUOISE CREATIONS PRODUCTIONS — DESIGN SYSTEM
   Premium dark theme with turquoise accent + seamless transitions
   ============================================================ */

/* ===== CSS VARIABLES ===== */
:root {
  --clr-bg:        #07070c;
  --clr-bg-alt:    #0d0d14;
  --clr-surface:   #12121b;
  --clr-surface-2: #1a1a26;
  --clr-surface-3: #1f1f2e;
  --clr-border:    rgba(64, 224, 208, 0.07);
  --clr-border-2:  rgba(255, 255, 255, 0.05);
  --clr-border-3:  rgba(64, 224, 208, 0.15);

  --clr-primary:   #40E0D0;
  --clr-primary-2: #2bc4b4;
  --clr-primary-3: #1fa39f;
  --clr-accent:    #48D1CC;
  --clr-accent-2:  #5dd3d0;
  --clr-gold:      #d4a853;
  --clr-purple:    #8b5cf6;

  --clr-text:      #e8e8ed;
  --clr-text-2:    #9a9ab0;
  --clr-text-3:    #5e5e72;

  --ff-heading:    'Inter', system-ui, -apple-system, sans-serif;
  --ff-body:       'Inter', system-ui, -apple-system, sans-serif;
  --ff-display:    'Playfair Display', Georgia, serif;

  --ease-out:      cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring:   cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce:   cubic-bezier(0.68, -0.55, 0.265, 1.55);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-card:       0 4px 24px rgba(0,0,0,0.35), 0 1px 4px rgba(0,0,0,0.2);
  --shadow-card-hover: 0 20px 60px rgba(0,0,0,0.5), 0 8px 24px rgba(64,224,208,0.15);
  --shadow-glow:       0 0 60px rgba(64, 224, 208, 0.12);
  --shadow-glow-lg:    0 0 80px rgba(64, 224, 208, 0.25);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--ff-body);
  background: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ===== SECTIONS — BASE ===== */
.section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

/* ===== SEAMLESS SECTION TRANSITIONS ===== */

/* Smooth gradient background blending between every section */
.about-section {
  background-image: linear-gradient(180deg, var(--clr-bg) 0%, var(--clr-bg-alt) 6%, var(--clr-bg-alt) 94%, var(--clr-bg) 100%);
}
.motto-section {
  background-image: linear-gradient(180deg, var(--clr-bg) 0%, var(--clr-bg-alt) 6%, var(--clr-bg-alt) 94%, var(--clr-bg) 100%);
}
.services-section {
  background-image: linear-gradient(180deg, var(--clr-bg) 0%, var(--clr-bg-alt) 6%, var(--clr-bg-alt) 94%, var(--clr-bg) 100%);
}
.gallery-section {
  background-image: linear-gradient(180deg, var(--clr-bg) 0%, var(--clr-bg-alt) 6%, var(--clr-bg-alt) 94%, var(--clr-bg) 100%);
}
.portfolio-section {
  background-image: linear-gradient(180deg, var(--clr-bg) 0%, var(--clr-bg-alt) 6%, var(--clr-bg-alt) 94%, var(--clr-bg) 100%);
}
.offers-section {
  background-image: linear-gradient(180deg, var(--clr-bg) 0%, var(--clr-bg-alt) 6%, var(--clr-bg-alt) 94%, var(--clr-bg) 100%);
}
.blog-section {
  background-image: linear-gradient(180deg, var(--clr-bg) 0%, var(--clr-bg-alt) 6%, var(--clr-bg-alt) 94%, var(--clr-bg) 100%);
}
.contact-section {
  background-image: linear-gradient(180deg, var(--clr-bg) 0%, var(--clr-bg-alt) 6%, var(--clr-bg-alt) 94%, var(--clr-surface) 100%);
}

/* SVG wave at top of each section for fluid transition */
.section-wave-top {
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 80px;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}

.section-wave-top::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: -5%;
  right: -5%;
  height: 100%;
  background: var(--clr-bg);
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
  opacity: 0.5;
}

/* Glowing divider at bottom of each section */
.section-divider {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--clr-primary), transparent);
  z-index: 3;
  opacity: 0;
  transition: opacity 1.2s ease 0.6s;
}

.section.revealed > .section-divider {
  opacity: 0.5;
}

.section-divider::after {
  content: '';
  position: absolute;
  top: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background: var(--clr-primary);
  border-radius: 50%;
  box-shadow: 0 0 14px rgba(64, 224, 208, 0.6);
}

/* ===== SCROLL REVEAL ANIMATIONS ===== */

/* Section-level groups */
.reveal-group {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

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

/* Individual staggered items */
.reveal-item {
  opacity: 0;
  transform: translateY(30px) scale(0.97);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out), box-shadow 0.5s var(--ease-out);
}

.reveal-item.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  margin-bottom: 64px;
  animation: sectionHeaderFadeIn 0.8s var(--ease-out) both;
}

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

.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--clr-primary);
  background: rgba(64, 224, 208, 0.06);
  border: 1px solid rgba(64, 224, 208, 0.1);
  padding: 6px 20px;
  border-radius: 100px;
  margin-bottom: 20px;
  transition: all 0.4s var(--ease-out);
  position: relative;
  cursor: default;
}

.section-tag:hover {
  background: rgba(64, 224, 208, 0.12);
  border-color: rgba(64, 224, 208, 0.25);
  box-shadow: 0 4px 16px rgba(64, 224, 208, 0.15);
}

.section-title {
  font-family: var(--ff-heading);
  font-size: clamp(30px, 5vw, 50px);
  font-weight: 800;
  color: var(--clr-text);
  line-height: 1.15;
  margin-bottom: 16px;
  transition: all 0.4s var(--ease-out);
}

.section-header:hover .section-title {
  color: var(--clr-primary);
}

.section-subtitle {
  font-size: 16px;
  color: var(--clr-text-2);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
  transition: color 0.4s var(--ease-out);
}

.section-header:hover .section-subtitle {
  color: var(--clr-text);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 18px 0;
  transition: all 0.4s var(--ease-out);
  background: transparent;
}

.navbar.scrolled {
  padding: 10px 0;
  background: rgba(7, 7, 12, 0.94);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--clr-border-2);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.navbar-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(64, 224, 208, 0.15);
  transition: all 0.4s var(--ease-out);
  box-shadow: 0 0 0 0 rgba(64, 224, 208, 0);
}

.logo-link:hover .site-logo {
  border-color: var(--clr-primary);
  box-shadow: 0 0 30px rgba(64, 224, 208, 0.4), inset 0 0 20px rgba(64, 224, 208, 0.1);
  transform: scale(1.12) rotate(5deg);
}

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

.site-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--clr-text);
  letter-spacing: 0.3px;
}

.site-subtitle {
  font-size: 10px;
  color: var(--clr-primary);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
}

.navbar nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--clr-text-2);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.nav-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(64, 224, 208, 0.1), transparent);
  transform: translateX(-100%);
  transition: transform 0.4s var(--ease-out);
}

.nav-link:hover::before,
.nav-link.active::before { transform: translateX(100%); }

.nav-link:hover, .nav-link.active {
  color: var(--clr-text);
  background: rgba(64, 224, 208, 0.08);
}

.nav-link.active { 
  color: var(--clr-primary);
  background: rgba(64, 224, 208, 0.12);
}

.nav-link.cta-nav {
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-accent));
  color: var(--clr-bg);
  font-weight: 600;
  padding: 8px 18px;
  margin-left: 8px;
  transition: all 0.4s var(--ease-out);
  box-shadow: 0 4px 20px rgba(64, 224, 208, 0.2);
}

.nav-link.cta-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(64, 224, 208, 0.35);
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 26px;
  padding: 4px 0;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
}

.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .navbar nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--clr-surface);
    flex-direction: column;
    padding: 80px 24px 40px;
    gap: 4px;
    transition: right 0.4s var(--ease-out);
    box-shadow: -10px 0 40px rgba(0,0,0,0.5);
  }
  .navbar nav.open { right: 0; }
  .nav-link { width: 100%; padding: 14px 16px; font-size: 15px; border-radius: var(--radius-md); }
  .nav-link.cta-nav { margin-left: 0; margin-top: 12px; text-align: center; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 28px 80px;
}

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

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(64, 224, 208, 0.07) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(72, 209, 204, 0.04) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(64, 224, 208, 0.03) 0%, transparent 50%);
  animation: heroGlow 10s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  0% { opacity: 0.6; }
  100% { opacity: 1; }
}

.hero-particles {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 10% 20%, rgba(64, 224, 208, 0.3), transparent),
    radial-gradient(1px 1px at 30% 60%, rgba(64, 224, 208, 0.2), transparent),
    radial-gradient(1.5px 1.5px at 50% 30%, rgba(64, 224, 208, 0.25), transparent),
    radial-gradient(1px 1px at 70% 70%, rgba(64, 224, 208, 0.15), transparent),
    radial-gradient(1px 1px at 90% 40%, rgba(64, 224, 208, 0.2), transparent),
    radial-gradient(1.5px 1.5px at 20% 80%, rgba(255,255,255,0.12), transparent),
    radial-gradient(1px 1px at 60% 10%, rgba(255,255,255,0.08), transparent),
    radial-gradient(1px 1px at 85% 90%, rgba(64,224,208,0.18), transparent);
  animation: twinkle 8s ease-in-out infinite alternate;
}

@keyframes twinkle {
  0% { opacity: 0.4; }
  100% { opacity: 1; }
}

/* Enhanced entrance animations */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(64, 224, 208, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(64, 224, 208, 0.6);
  }
}

/* Ripple effect animation */
@keyframes ripple {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(4);
    opacity: 0;
  }
}

/* Wave/scroll effect on button press */
@keyframes buttonPress {
  0% {
    box-shadow: 0 6px 28px rgba(64, 224, 208, 0.25);
  }
  50% {
    box-shadow: 0 2px 12px rgba(64, 224, 208, 0.4);
  }
  100% {
    box-shadow: 0 6px 28px rgba(64, 224, 208, 0.25);
  }
}

/* Bounce wave animation */
@keyframes waveScroll {
  0% {
    transform: scale(0) translateY(0);
    opacity: 1;
  }
  100% {
    transform: scale(1) translateY(-15px);
    opacity: 0;
  }
}

/* Hero bottom fade into about */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: linear-gradient(to bottom, transparent 0%, var(--clr-bg) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  animation: heroFadeIn 1s var(--ease-out) both;
}

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

.hero-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--clr-primary);
  background: rgba(64, 224, 208, 0.06);
  border: 1px solid rgba(64, 224, 208, 0.12);
  padding: 8px 22px;
  border-radius: 100px;
  margin-bottom: 28px;
  animation: heroFadeIn 1s var(--ease-out) 0.15s both;
}

.hero-title {
  font-family: var(--ff-heading);
  font-size: clamp(38px, 7vw, 70px);
  font-weight: 900;
  line-height: 1.08;
  color: var(--clr-text);
  margin-bottom: 24px;
  animation: heroFadeIn 1s var(--ease-out) 0.3s both;
}

.hero-title em {
  font-family: var(--ff-display);
  font-style: italic;
  color: var(--clr-primary);
  display: inline-block;
}

.hero-desc {
  font-size: 17px;
  color: var(--clr-text-2);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto 40px;
  animation: heroFadeIn 1s var(--ease-out) 0.45s both;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
  animation: heroFadeIn 1s var(--ease-out) 0.6s both;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 100px;
  transition: all 0.4s var(--ease-out);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: visible;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255,255,255,0.3) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
  pointer-events: none;
  border-radius: 100px;
}

.btn:active::before { opacity: 1; }

/* Ripple element */
.btn-ripple {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.6) 0%, rgba(64,224,208,0.3) 100%);
  pointer-events: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-accent));
  color: var(--clr-bg);
  box-shadow: 0 6px 28px rgba(64, 224, 208, 0.25);
  position: relative;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--clr-accent-2), var(--clr-primary-2));
  opacity: 0;
  border-radius: 100px;
  transition: opacity 0.4s var(--ease-out);
  z-index: -1;
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 48px rgba(64, 224, 208, 0.45);
}

.btn-primary:active {
  animation: buttonPress 0.6s var(--ease-out);
  transform: translateY(-2px);
}

.btn-primary:hover::after { opacity: 1; }

.btn-outline {
  background: transparent;
  color: var(--clr-text);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  transition: all 0.4s var(--ease-out);
}

.btn-outline::after {
  content: '';
  position: absolute;
  inset: 1.5px;
  background: linear-gradient(135deg, rgba(64, 224, 208, 0.08), rgba(64, 224, 208, 0.04));
  border-radius: 100px;
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
  z-index: -1;
}

.btn-outline:hover {
  border-color: var(--clr-primary);
  color: var(--clr-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(64, 224, 208, 0.2);
}

.btn-outline:active {
  animation: buttonPress 0.6s var(--ease-out);
  border-color: var(--clr-primary);
}

.btn-outline:hover::after { opacity: 1; }

/* Hero Stats */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  animation: heroFadeIn 1s var(--ease-out) 0.75s both;
}

.stat { text-align: center; }

.stat-num {
  font-size: 34px;
  font-weight: 800;
  color: var(--clr-primary);
  line-height: 1;
}

.stat-suffix {
  font-size: 24px;
  font-weight: 700;
  color: var(--clr-primary);
}

.stat-label {
  display: block;
  font-size: 12px;
  color: var(--clr-text-3);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  margin-top: 4px;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  animation: heroFadeIn 1s var(--ease-out) 1s both;
  transition: all 0.4s var(--ease-out);
}

.scroll-indicator:hover {
  transform: translateX(-50%) scale(1.1);
}

.scroll-indicator span {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--clr-text-3);
  transition: color 0.4s var(--ease-out);
}

.scroll-indicator:hover span { color: var(--clr-primary); }

.scroll-mouse {
  width: 22px;
  height: 34px;
  border: 2px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
  transition: all 0.4s var(--ease-out);
}

.scroll-indicator:hover .scroll-mouse {
  border-color: var(--clr-primary);
  box-shadow: 0 0 16px rgba(64, 224, 208, 0.2);
}

.scroll-dot {
  width: 3px;
  height: 8px;
  background: var(--clr-primary);
  border-radius: 3px;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(10px); opacity: 0.2; }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image-wrapper { position: relative; }

.about-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out), filter 0.6s var(--ease-out);
  position: relative;
}

.about-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(64, 224, 208, 0.1) 0%, transparent 100%);
  opacity: 0;
  border-radius: var(--radius-lg);
  transition: opacity 0.6s var(--ease-out);
  pointer-events: none;
}

.about-image-wrapper:hover .about-img::before { opacity: 1; }

.about-img:hover { 
  transform: scale(1.04) rotate(1deg);
  filter: brightness(1.1) drop-shadow(0 8px 24px rgba(64, 224, 208, 0.2));
}

.about-image-accent {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(64, 224, 208, 0.1);
  border-radius: var(--radius-lg);
  z-index: -1;
  transition: all 0.5s var(--ease-out);
}

.about-image-wrapper:hover .about-image-accent {
  top: -8px;
  right: -8px;
  border-color: rgba(64, 224, 208, 0.2);
}

.about-card {
  background: var(--clr-surface);
  padding: 44px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border-2);
  box-shadow: var(--shadow-card);
  transition: all 0.5s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(64, 224, 208, 0.05) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.5s var(--ease-out);
  pointer-events: none;
}

.about-card:hover::before { opacity: 1; }

.about-card:hover {
  border-color: rgba(64, 224, 208, 0.12);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.about-card p {
  font-size: 15px;
  color: var(--clr-text-2);
  line-height: 1.85;
  margin-bottom: 18px;
}

.about-card p:last-child { margin-bottom: 0; }

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-card { padding: 28px; }
  .about-image-accent { display: none; }
}

/* ============================================================
   MOTTO
   ============================================================ */
.motto-headline {
  text-align: center;
  font-family: var(--ff-display);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  font-style: italic;
  color: var(--clr-primary);
  margin-bottom: 40px;
  line-height: 1.5;
}

.motto-card {
  background: var(--clr-surface);
  padding: 56px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border-2);
  box-shadow: var(--shadow-card);
  max-width: 860px;
  margin: 0 auto;
  transition: all 0.5s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.motto-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(64, 224, 208, 0.05) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.5s var(--ease-out);
  pointer-events: none;
}

.motto-card:hover::before { opacity: 1; }

.motto-card:hover {
  border-color: rgba(64, 224, 208, 0.12);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-6px);
}

.motto-card p {
  font-size: 15px;
  color: var(--clr-text-2);
  line-height: 1.9;
  margin-bottom: 22px;
  text-align: justify;
}

.motto-quote {
  font-family: var(--ff-display);
  font-size: 18px;
  font-weight: 700;
  font-style: italic;
  color: var(--clr-primary);
  border-left: 3px solid var(--clr-primary);
  padding: 20px 0 20px 24px;
  margin-top: 32px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .motto-card { padding: 28px; }
  .motto-card p { text-align: left; }
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--clr-surface);
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border-2);
  transition: all 0.5s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-primary), var(--clr-accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 1px;
  background: linear-gradient(135deg, rgba(64, 224, 208, 0.05) 0%, transparent 100%);
  opacity: 0;
  border-radius: var(--radius-lg);
  transition: opacity 0.5s var(--ease-out);
  pointer-events: none;
  z-index: 0;
}

.service-card:hover::after { opacity: 1; }

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(64, 224, 208, 0.2);
  box-shadow: var(--shadow-card-hover);
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(64, 224, 208, 0.06);
  border-radius: var(--radius-md);
  margin-bottom: 18px;
  color: var(--clr-primary);
  transition: all 0.4s var(--ease-out);
  position: relative;
  z-index: 1;
}

.service-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(64, 224, 208, 0.12);
  border-radius: var(--radius-md);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
  z-index: -1;
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, rgba(64, 224, 208, 0.15), rgba(64, 224, 208, 0.08));
  box-shadow: 0 8px 24px rgba(64, 224, 208, 0.25);
  transform: translateY(-4px) scale(1.08);
}

.service-card:hover .service-icon::before { opacity: 1; }

.service-icon svg { width: 22px; height: 22px; }

.service-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: var(--clr-text-2);
  line-height: 1.75;
}

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

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  box-shadow: var(--shadow-card);
  transition: all 0.4s var(--ease-out);
}

.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(64, 224, 208, 0.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
  z-index: 1;
}

.gallery-item:hover::before { opacity: 1; }
.gallery-item:hover { box-shadow: var(--shadow-card-hover); }

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out), filter 0.7s var(--ease-out);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  opacity: 0;
  transition: opacity 0.5s var(--ease-out);
  backdrop-filter: blur(4px);
}

.gallery-item:hover .gallery-img { 
  transform: scale(1.1) rotate(2deg);
  filter: brightness(1.15) saturate(1.2);
}

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

.gallery-overlay h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--clr-primary);
  margin-bottom: 6px;
}

.gallery-overlay p {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
}

@media (max-width: 768px) { .gallery-grid { grid-template-columns: 1fr 1fr; gap: 12px; } }
@media (max-width: 480px) { .gallery-grid { grid-template-columns: 1fr; } }

/* ============================================================
   PORTFOLIO
   ============================================================ */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.portfolio-card {
  background: var(--clr-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border-2);
  overflow: hidden;
  transition: all 0.5s var(--ease-out);
  position: relative;
}

.portfolio-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(64, 224, 208, 0.05) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.5s var(--ease-out);
  pointer-events: none;
  z-index: 1;
}

.portfolio-card:hover::before { opacity: 1; }

.portfolio-card:hover {
  transform: translateY(-8px);
  border-color: rgba(64, 224, 208, 0.15);
  box-shadow: var(--shadow-card-hover);
}

.portfolio-card-header {
  padding: 28px 24px 18px;
  border-bottom: 1px solid var(--clr-border-2);
}

.portfolio-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(64, 224, 208, 0.06);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  color: var(--clr-primary);
  transition: all 0.4s var(--ease-out);
  position: relative;
  z-index: 1;
}

.portfolio-card:hover .portfolio-icon {
  background: linear-gradient(135deg, rgba(64, 224, 208, 0.15), rgba(64, 224, 208, 0.08));
  box-shadow: 0 6px 18px rgba(64, 224, 208, 0.2);
  transform: translateY(-3px) scale(1.06);
}

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

.portfolio-card-header h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--clr-text);
}

.portfolio-card-body { padding: 22px 24px 28px; }

.portfolio-card-body p {
  font-size: 14px;
  color: var(--clr-text-2);
  line-height: 1.75;
  margin-bottom: 14px;
}

.portfolio-card-body ul { margin-bottom: 18px; }

.portfolio-card-body li {
  font-size: 13px;
  color: var(--clr-text-2);
  padding: 5px 0 5px 18px;
  position: relative;
}

.portfolio-card-body li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 5px;
  height: 5px;
  background: var(--clr-primary);
  border-radius: 50%;
}

.portfolio-cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--clr-primary);
  transition: all 0.3s var(--ease-out);
  display: inline-block;
}

.portfolio-cta:hover { transform: translateX(4px); }

.portfolio-tagline {
  text-align: center;
  margin-top: 48px;
  font-size: 16px;
  color: var(--clr-text-3);
  font-style: italic;
}

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

/* ============================================================
   OTHER OFFERS
   ============================================================ */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.offer-card {
  background: var(--clr-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border-2);
  overflow: hidden;
  transition: all 0.5s var(--ease-out);
  position: relative;
}

.offer-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(64, 224, 208, 0.05) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.5s var(--ease-out);
  pointer-events: none;
  z-index: 2;
}

.offer-card:hover::before { opacity: 1; }

.offer-card:hover {
  transform: translateY(-8px);
  border-color: rgba(64, 224, 208, 0.15);
  box-shadow: var(--shadow-card-hover);
}

.offer-img-wrap {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.offer-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out), filter 0.6s var(--ease-out);
  cursor: pointer;
}

.offer-card:hover .offer-img { 
  transform: scale(1.1) rotate(1deg);
  filter: brightness(1.12) saturate(1.15);
}

.offer-body { padding: 20px; }

.offer-body h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: 8px;
}

.offer-body p {
  font-size: 13px;
  color: var(--clr-text-2);
  line-height: 1.7;
}

.offers-note {
  text-align: center;
  font-size: 15px;
  color: var(--clr-text-2);
  font-style: italic;
}

@media (max-width: 1024px) { .offers-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .offers-grid { grid-template-columns: 1fr; } .offer-img-wrap { height: 180px; } }

/* ============================================================
   BLOG / ARTICLES
   ============================================================ */
.blog-feed-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.blog-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--clr-surface);
  padding: 16px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border-2);
  transition: all 0.5s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.blog-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(64, 224, 208, 0.05) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.5s var(--ease-out);
  pointer-events: none;
}

.blog-card:hover::before { opacity: 1; }

.blog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(64, 224, 208, 0.15);
  box-shadow: var(--shadow-card-hover);
}

.blog-card-thumb {
  width: 90px;
  height: 90px;
  min-width: 90px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.4), inset 0 0 15px rgba(64, 224, 208, 0.1);
  transition: all 0.5s var(--ease-out);
  position: relative;
  z-index: 1;
}

.blog-card:hover .blog-card-thumb { 
  transform: scale(1.12) rotate(-5deg);
  box-shadow: 0 10px 32px rgba(64, 224, 208, 0.3), inset 0 0 20px rgba(64, 224, 208, 0.15);
}

.blog-card-body h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: 6px;
  line-height: 1.4;
}

.blog-card-body p {
  font-size: 13px;
  color: var(--clr-text-2);
  line-height: 1.6;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.article-card {
  background: var(--clr-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border-2);
  overflow: hidden;
  transition: all 0.5s var(--ease-out);
  position: relative;
}

.article-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(64, 224, 208, 0.05) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.5s var(--ease-out);
  pointer-events: none;
  z-index: 2;
}

.article-card:hover::before { opacity: 1; }

.article-card:hover {
  transform: translateY(-8px);
  border-color: rgba(64, 224, 208, 0.15);
  box-shadow: var(--shadow-card-hover);
}

.article-img-wrap {
  height: 200px;
  overflow: hidden;
  background: var(--clr-surface-2);
  position: relative;
}

.article-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out), filter 0.6s var(--ease-out);
}

.article-card:hover .article-img { 
  transform: scale(1.12) rotate(2deg);
  filter: brightness(1.15) saturate(1.2);
}

.article-body { padding: 22px; }

.article-body h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: 8px;
}

.article-body p {
  font-size: 14px;
  color: var(--clr-text-2);
  line-height: 1.7;
  margin-bottom: 12px;
}

.article-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--clr-primary);
  transition: all 0.3s var(--ease-out);
}

.article-card:hover .article-link { letter-spacing: 0.5px; }

@media (max-width: 1024px) {
  .blog-feed-grid { grid-template-columns: 1fr; }
  .articles-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .articles-grid { grid-template-columns: 1fr; }
  .blog-card { flex-direction: column; text-align: center; }
  .blog-card-thumb { width: 80px; height: 80px; min-width: 80px; }
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.contact-card {
  background: var(--clr-surface);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border-2);
  box-shadow: var(--shadow-card);
  transition: all 0.5s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(64, 224, 208, 0.05) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.5s var(--ease-out);
  pointer-events: none;
}

.contact-card:hover::before { opacity: 1; }

.contact-card:hover {
  border-color: rgba(64, 224, 208, 0.15);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--clr-border-2);
}

.contact-item:last-child { border-bottom: none; }

.contact-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(64, 224, 208, 0.06);
  border-radius: var(--radius-md);
  color: var(--clr-primary);
  transition: all 0.4s var(--ease-out);
}

.contact-item:hover .contact-icon {
  background: linear-gradient(135deg, rgba(64, 224, 208, 0.15), rgba(64, 224, 208, 0.08));
  box-shadow: 0 6px 18px rgba(64, 224, 208, 0.2);
  transform: scale(1.12) rotate(5deg);
}

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

.contact-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--clr-text-3);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.contact-item a, .contact-item span:not(.contact-label) {
  font-size: 15px;
  color: var(--clr-text);
  font-weight: 500;
}

.contact-item a { 
  transition: all 0.4s var(--ease-out);
  position: relative;
  display: inline-block;
}

.contact-item a::before {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--clr-primary), var(--clr-accent));
  transition: width 0.4s var(--ease-out);
}

.contact-item a:hover::before { width: 100%; }

.contact-item a:hover { 
  color: var(--clr-primary);
}

.contact-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all 0.5s var(--ease-out);
  position: relative;
}

.contact-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(64, 224, 208, 0.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.5s var(--ease-out);
  z-index: 1;
  pointer-events: none;
}

.contact-img-wrap:hover::before { opacity: 1; }

.contact-img-wrap:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.contact-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out), filter 0.6s var(--ease-out);
}

.contact-img-wrap:hover .contact-img { 
  transform: scale(1.05) rotate(1deg);
  filter: brightness(1.1) saturate(1.1);
}

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-card { padding: 28px; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--clr-surface);
  border-top: 1px solid var(--clr-border-2);
  padding: 56px 0 0;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--clr-border-2);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.footer-brand-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--clr-text);
}

.footer-tagline {
  font-size: 12px;
  color: var(--clr-text-3);
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 13px;
  color: var(--clr-text-2);
  transition: all 0.4s var(--ease-out);
  position: relative;
  display: inline-block;
}

.footer-links a::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--clr-primary), var(--clr-accent));
  transition: width 0.4s var(--ease-out);
}

.footer-links a:hover::before { width: 100%; }

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

.footer-social { display: flex; gap: 10px; }

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.social-icon {
  width: 15px;
  height: 15px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  position: relative;
  z-index: 1;
  transition: transform 0.4s var(--ease-out);
}

.social-btn:hover .social-icon { transform: scale(1.15) rotate(5deg); }

.social-btn.facebook { background: #3b5998; }
.social-btn.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-btn.twitter { background: #1DA1F2; }
.social-btn.email { background: #6c757d; }
.social-btn.whatsapp { background: #25D366; }

.social-btn:hover {
  transform: translateY(-5px) scale(1.12);
  box-shadow: 0 10px 32px rgba(64, 224, 208, 0.3);
}

.social-btn:focus-visible {
  outline: 2px solid var(--clr-primary);
  outline-offset: 3px;
}

.footer-bottom {
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--clr-text-3);
}

@media (max-width: 768px) {
  .footer-top { flex-direction: column; align-items: center; text-align: center; }
  .footer-links { justify-content: center; }
}

/* ============================================================
   MODAL
   ============================================================ */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(10px) saturate(120%);
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.5s ease, backdrop-filter 0.5s ease;
}

.modal.show { 
  display: flex; 
  opacity: 1; 
}

.modal-content {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 100px rgba(0,0,0,0.8), 0 0 60px rgba(64, 224, 208, 0.2);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.5s var(--ease-out);
  animation: modalAppear 0.5s var(--ease-out) forwards;
}

@keyframes modalAppear {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.modal.show .modal-content { 
  transform: scale(1) translateY(0); 
}

.modal-close {
  position: fixed;
  top: 20px;
  right: 28px;
  font-size: 36px;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  z-index: 10;
  transition: all 0.4s var(--ease-out);
  background: none;
  border: none;
  line-height: 1;
}

.modal-close:hover { 
  color: var(--clr-primary);
  transform: scale(1.2) rotate(90deg);
}

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

:focus-visible {
  outline: 2px solid var(--clr-primary);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal-group, .reveal-item { opacity: 1; transform: none; }
}

/* ============================================================
   RESPONSIVE GLOBAL
   ============================================================ */
@media (max-width: 768px) {
  .section { padding: 80px 0; }
  .section-header { margin-bottom: 40px; }
  .hero { padding: 100px 20px 60px; }
  .hero-stats { gap: 28px; }
  .stat-num { font-size: 28px; }
  .hero-desc { font-size: 15px; }
  .scroll-indicator { display: none; }
  .section-wave-top { display: none; }
}