/* ============================================
   QUIROCENTER CIEZA — Premium CSS
   ============================================ */

/* === Google Fonts === */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

/* === CSS Custom Properties === */
:root {
  /* Primary Palette — Logo Blues */
  --blue-900: #0A2540;
  --blue-800: #0D3259;
  --blue-700: #00599D;
  --blue-600: #0070B8;
  --blue-500: #008ECE;
  --blue-400: #33A3D8;
  --blue-300: #66B8E2;
  --blue-200: #99CEEC;
  --blue-100: #CCE7F6;
  --blue-50: #E8F4FB;

  /* Gold Accent — Logo Gold */
  --gold-600: #D4A000;
  --gold-500: #FFBE00;
  --gold-400: #FFCB33;
  --gold-300: #FFD966;
  --gold-200: #FFE699;
  --gold-100: #FFF3CC;

  /* Neutrals — Light Theme */
  --dark-950: #0A1628;
  --dark-900: #0A2540;
  --dark-800: #0D3259;
  --dark-700: #1B3A5C;
  --dark-600: #2B4A6E;
  --dark-500: #6B7B8D;
  --dark-400: #8A9AAB;
  --dark-300: #B0BEC9;
  --dark-200: #D1DBE5;
  --dark-100: #E8EEF4;
  --dark-50: #F4F8FC;

  /* Semantic */
  --white: #FFFFFF;
  --success: #008C3A;
  --warning: #FFBE00;
  --danger: #E53E3E;

  /* Gradients */
  --gradient-hero: linear-gradient(135deg, #0A2540 0%, #00599D 50%, #008ECE 100%);
  --gradient-blue: linear-gradient(135deg, #00599D 0%, #008ECE 100%);
  --gradient-gold: linear-gradient(135deg, #D4A000 0%, #FFBE00 100%);
  --gradient-card: linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(244,248,252,0.95) 100%);
  --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(244,248,252,0.9) 100%);

  /* Shadows — Softer for Light Theme */
  --shadow-sm: 0 1px 3px rgba(10,37,64,0.06);
  --shadow-md: 0 4px 20px rgba(10,37,64,0.08);
  --shadow-lg: 0 10px 40px rgba(10,37,64,0.1);
  --shadow-xl: 0 20px 60px rgba(10,37,64,0.12);
  --shadow-glow-blue: 0 0 30px rgba(0,89,157,0.2);
  --shadow-glow-gold: 0 0 30px rgba(255,190,0,0.25);

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

  /* Spacing */
  --section-padding: 100px 0;
  --container-max: 1200px;
  --border-radius: 16px;
  --border-radius-sm: 8px;
  --border-radius-lg: 24px;
  --border-radius-xl: 32px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  scroll-padding-top: 80px;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--dark-700);
  line-height: 1.7;
  overflow-x: hidden;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol { list-style: none; }

/* === Utility === */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: rgba(0, 89, 157, 0.08);
  color: var(--blue-700);
  border: 1px solid rgba(0, 89, 157, 0.15);
  margin-bottom: 20px;
}

.section-badge .badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue-500);
  animation: pulse-dot 2s ease-in-out infinite;
}

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

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--dark-900);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--dark-500);
  max-width: 600px;
  line-height: 1.8;
}

.text-gradient {
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gold {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* === Animated Background Particles === */
.bg-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.bg-particles .particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  animation: float-particle linear infinite;
}

@keyframes float-particle {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 0.15; }
  90% { opacity: 0.15; }
  100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
}

/* === Scroll Animations === */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-scale {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* === Preloader === */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

body.mobile-no-preload #preloader {
  display: none !important;
}
body.mobile-no-preload {
  overflow: auto !important;
}

.preloader-spine {
  display: none !important;
}

.preloader-text {
  font-size: 0.85rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--blue-700);
  font-weight: 600;
}

.preloader-logo {
  width: 120px;
  height: auto;
  margin-bottom: 20px;
  animation: preloader-logo-pulse 2s ease-in-out infinite;
}

@keyframes preloader-logo-pulse {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.08); opacity: 1; }
}

/* Hero Logo Watermark */
.hero-logo-watermark {
  position: absolute;
  right: 5%;
  bottom: 8%;
  width: 280px;
  height: auto;
  opacity: 0.06;
  z-index: 3;
  pointer-events: none;
  filter: brightness(2);
}

/* === Navigation === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition-base);
  backdrop-filter: blur(0px);
}

.navbar:not(.scrolled) .brand-name {
  color: var(--white) !important;
  text-shadow: 0 2px 4px rgba(10,37,64,0.3);
}
.navbar:not(.scrolled) .brand-tagline {
  color: var(--blue-300) !important;
  text-shadow: 0 1px 2px rgba(10,37,64,0.3);
}
.navbar:not(.scrolled) .nav-links a {
  color: var(--white) !important;
  text-shadow: 0 2px 4px rgba(10,37,64,0.3);
}
.navbar:not(.scrolled) .nav-links a:hover {
  color: var(--blue-200) !important;
  background: rgba(255, 255, 255, 0.1);
}
.navbar:not(.scrolled) .nav-links a.active {
  color: var(--gold-300) !important;
}
.navbar:not(.scrolled) .nav-toggle span {
  background: var(--white) !important;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(10,37,64,0.06);
  padding: 10px 0;
  box-shadow: var(--shadow-lg);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.nav-logo img,
.nav-logo-img {
  height: 52px;
  width: auto;
  border-radius: 8px;
}

.footer-logo-img {
  height: 56px;
  width: auto;
  border-radius: 8px;
}

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

.nav-logo-text .brand-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--dark-900);
  letter-spacing: 1px;
  line-height: 1.2;
  transition: color var(--transition-base);
}

.nav-logo-text .brand-tagline {
  font-size: 0.65rem;
  color: var(--blue-500);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  transition: color var(--transition-base);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 8px 18px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark-700);
  border-radius: var(--border-radius-sm);
  transition: all var(--transition-fast);
  position: relative;
}

.nav-links a:hover {
  color: var(--blue-700);
  background: rgba(0, 89, 157, 0.06);
}

.nav-links a.active {
  color: var(--blue-700);
}

.nav-cta {
  padding: 10px 24px !important;
  background: var(--gradient-blue) !important;
  color: var(--white) !important;
  font-weight: 600 !important;
  border-radius: 100px !important;
  box-shadow: var(--shadow-glow-blue);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(0, 89, 157,0.4) !important;
  background: var(--gradient-blue) !important;
}

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--dark-900);
  border-radius: 2px;
  transition: all var(--transition-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); }

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

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

.hero-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  filter: blur(2px);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    135deg,
    rgba(10, 37, 64, 0.92) 0%,
    rgba(10, 37, 64, 0.7) 40%,
    rgba(0, 89, 157, 0.5) 100%
  );
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 2;
  opacity: 0.4;
  animation: glow-float 8s ease-in-out infinite;
}

.hero-glow-1 {
  top: -200px;
  right: -100px;
  background: var(--blue-700);
}

.hero-glow-2 {
  bottom: -200px;
  left: -100px;
  background: var(--gold-600);
  opacity: 0.15;
  animation-delay: -4s;
}

@keyframes glow-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -20px) scale(1.05); }
  50% { transform: translate(-20px, 30px) scale(0.95); }
  75% { transform: translate(20px, 20px) scale(1.02); }
}

.hero-content {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 120px 0 80px;
}

.hero-text {
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: rgba(255, 190, 0, 0.15);
  color: var(--gold-300);
  border: 1px solid rgba(255, 190, 0, 0.25);
  margin-bottom: 28px;
  animation: fadeInUp 0.8s ease forwards;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.15s forwards;
  opacity: 0;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--dark-100);
  line-height: 1.8;
  margin-bottom: 36px;
  animation: fadeInUp 0.8s ease 0.3s forwards;
  opacity: 0;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.45s forwards;
  opacity: 0;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-blue);
  color: var(--white);
  box-shadow: var(--shadow-glow-blue);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 50px rgba(0, 89, 157,0.5);
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn-primary:active::after {
  width: 300px;
  height: 300px;
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.2);
}

.btn-outline:hover {
  border-color: var(--blue-300);
  color: var(--blue-300);
  background: rgba(0, 142, 206, 0.1);
  transform: translateY(-3px);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: var(--white);
  box-shadow: 0 0 30px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 50px rgba(37, 211, 102, 0.5);
}

/* Hero Image */
.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--border-radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  animation: fadeInRight 1s ease 0.5s forwards;
  opacity: 0;
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}

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

.hero-image-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--border-radius-xl);
  padding: 2px;
  background: linear-gradient(135deg, var(--blue-500), transparent, var(--gold-400));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 2;
}

/* Floating Stats */
.hero-stats {
  display: flex;
  gap: 24px;
  margin-top: 48px;
  animation: fadeInUp 0.8s ease 0.6s forwards;
  opacity: 0;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-right: 1px solid rgba(255,255,255,0.1);
  padding-right: 24px;
}

.hero-stat:last-child {
  border-right: none;
  padding-right: 0;
}

.hero-stat-number {
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--dark-300);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

/* === ABOUT SECTION === */
.about {
  padding: var(--section-padding);
  position: relative;
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

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

.about-image-main {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.about-image-main img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-image-container:hover .about-image-main img {
  transform: scale(1.03);
}

.about-image-main::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,37,64,0.3) 100%);
}

.about-experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--gradient-gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-glow-gold);
  z-index: 5;
  animation: badge-float 3s ease-in-out infinite;
}

@keyframes badge-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.about-experience-badge .number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--dark-950);
  line-height: 1;
}

.about-experience-badge .label {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--dark-800);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  line-height: 1.3;
}

.about-content {
  display: flex;
  flex-direction: column;
}

.about-text {
  font-size: 1.05rem;
  color: var(--dark-600);
  line-height: 1.8;
  margin-bottom: 32px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 36px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: var(--border-radius);
  background: var(--white);
  border: 1px solid var(--dark-200);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 1;
}

.about-feature:hover {
  border-color: rgba(0, 89, 157, 0.3);
  background: rgba(0, 89, 157, 0.05);
  transform: translateX(6px) translateY(-2px);
  box-shadow: var(--shadow-md);
  z-index: 3;
}

.about-feature-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--border-radius-sm);
  background: var(--gradient-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.about-feature-text {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark-700);
}

/* === SERVICES SECTION === */
.services {
  padding: var(--section-padding);
  position: relative;
  background: var(--dark-50);
}

.services-header {
  text-align: center;
  margin-bottom: 60px;
}

.services-header .section-subtitle {
  margin: 0 auto;
}

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

.service-card {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--dark-200);
  transition: all var(--transition-slow);
  cursor: pointer;
  group: true;
  box-shadow: var(--shadow-md);
  z-index: 1;
}

.service-card:hover {
  transform: translateY(-12px);
  border-color: rgba(0, 89, 157, 0.3);
  box-shadow: var(--shadow-glow-blue);
  z-index: 3;
}

.service-card-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
  position: relative;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.service-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(255,255,255,0.95) 100%);
}

.service-card-content {
  padding: 28px;
  position: relative;
}

.service-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--gradient-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-top: -56px;
  position: relative;
  z-index: 5;
  box-shadow: var(--shadow-glow-blue);
  margin-bottom: 20px;
}

.service-card-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark-900);
  margin-bottom: 12px;
}

.service-card-description {
  font-size: 0.95rem;
  color: var(--dark-600);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-card-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-card-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--dark-600);
}

.service-card-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue-400);
  flex-shrink: 0;
}

/* === BENEFITS / WHY US SECTION === */
.benefits {
  padding: var(--section-padding);
  position: relative;
}

.benefits-header {
  text-align: center;
  margin-bottom: 60px;
}

.benefits-header .section-subtitle {
  margin: 0 auto;
}

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

.benefit-card {
  padding: 36px 28px;
  border-radius: var(--border-radius-lg);
  background: var(--white);
  backdrop-filter: blur(20px);
  border: 1px solid var(--dark-200);
  text-align: center;
  transition: all var(--transition-slow);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  z-index: 1;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gradient-blue);
  border-radius: 0 0 4px 4px;
  opacity: 0;
  transition: all var(--transition-base);
}

.benefit-card:hover::before {
  opacity: 1;
  width: 100px;
}

.benefit-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 89, 157, 0.2);
  box-shadow: var(--shadow-glow-blue);
  z-index: 3;
}

.benefit-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: rgba(0, 89, 157, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2rem;
  transition: all var(--transition-base);
}

.benefit-card:hover .benefit-icon {
  background: var(--gradient-blue);
  transform: scale(1.1) rotate(5deg);
  box-shadow: var(--shadow-glow-blue);
}

.benefit-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark-900);
  margin-bottom: 12px;
}

.benefit-description {
  font-size: 0.9rem;
  color: var(--dark-600);
  line-height: 1.7;
}

/* === TESTIMONIALS SECTION === */
.testimonials {
  padding: var(--section-padding);
  background: var(--dark-50);
  position: relative;
  overflow: hidden;
  --cards-visible: 3;
  --gap: 20px;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 60px;
}

.testimonials-header .section-subtitle {
  margin: 0 auto;
}

/* === NEW CAROUSEL === */
.testimonials-carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-lg);
}

.testimonials-track {
  display: flex;
  gap: var(--gap);
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.testimonial-card {
  min-width: calc((100% - var(--gap) * (var(--cards-visible) - 1)) / var(--cards-visible));
  max-width: calc((100% - var(--gap) * (var(--cards-visible) - 1)) / var(--cards-visible));
  flex-shrink: 0;
  padding: 32px 28px;
  border-radius: var(--border-radius-lg);
  background: var(--white);
  border: 1px solid var(--dark-200);
  position: relative;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
  display: flex;
  flex-direction: column;
  gap: 0;
  box-shadow: var(--shadow-glow-blue);
  z-index: 1;
}

.testimonial-card:hover {
  border-color: rgba(0, 89, 157, 0.3);
  box-shadow: var(--shadow-glow-blue);
  transform: translateY(-4px);
  z-index: 3;
}

.testimonial-stars {
  font-size: 1.2rem;
  color: var(--gold-400);
  letter-spacing: 4px;
  margin-bottom: 20px;
}

.testimonial-quote-icon {
  font-size: 3.5rem;
  color: var(--blue-600);
  opacity: 0.35;
  line-height: 0.8;
  margin-bottom: 8px;
  font-family: Georgia, serif;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--dark-600);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gradient-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.testimonial-author-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-author-name {
  font-weight: 700;
  color: var(--dark-900);
  font-size: 1rem;
}

.testimonial-author-location {
  font-size: 0.85rem;
  color: var(--blue-400);
}

/* Carousel Controls */
.testimonials-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 36px;
}

.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(10,37,64,0.06);
  border: 1px solid rgba(10,37,64,0.1);
  color: var(--dark-700);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-base);
  flex-shrink: 0;
}

.carousel-btn:hover {
  background: var(--gradient-blue);
  border-color: transparent;
  box-shadow: var(--shadow-glow-blue);
  transform: scale(1.1);
}

.carousel-dots {
  display: flex;
  gap: 10px;
  align-items: center;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(10,37,64,0.15);
  cursor: pointer;
  transition: all var(--transition-base);
  border: none;
  padding: 0;
}

.carousel-dot.active {
  background: var(--blue-400);
  width: 24px;
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(0, 142, 206,0.5);
}

/* === MAP STYLES === */
.contact-map {
  margin: 20px 0 28px;
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid rgba(0, 89, 157, 0.25);
  box-shadow: var(--shadow-md);
}

.contact-map iframe {
  width: 100%;
  height: 180px;
  display: block;
  border: none;
}

.map-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 0.82rem;
  color: var(--blue-400);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all var(--transition-fast);
  border-bottom: 1px solid transparent;
}

.map-link:hover {
  color: var(--blue-300);
  border-bottom-color: var(--blue-400);
}

/* === FAQ SECTION === */
.faq {
  padding: var(--section-padding);
  position: relative;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.faq-content { position: relative; }

.faq-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border-radius: var(--border-radius);
  background: var(--white);
  border: 1px solid var(--dark-200);
  overflow: hidden;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 89, 157, 0.15);
}

.faq-item.active {
  border-color: rgba(0, 89, 157, 0.3);
  background: rgba(0, 89, 157, 0.05);
  box-shadow: var(--shadow-glow-blue);
}

.faq-question {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  color: var(--dark-700);
  font-size: 0.95rem;
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--blue-400);
}

.faq-toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(10,37,64,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
  flex-shrink: 0;
  font-size: 1.2rem;
  color: var(--dark-500);
}

.faq-item.active .faq-toggle {
  background: var(--gradient-blue);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--dark-500);
  line-height: 1.8;
}

/* === CONTACT / CTA SECTION === */
.contact {
  padding: var(--section-padding);
  position: relative;
  overflow: hidden;
}

.contact-wrapper {
  border-radius: var(--border-radius-xl);
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #0D3259 0%, #00599D 50%, #0070B8 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow-xl);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.contact-info {
  padding: 60px;
  position: relative;
  z-index: 2;
  background: rgba(10, 37, 64, 0.45);
  backdrop-filter: blur(10px);
}

.contact-info .section-title {
  color: var(--white) !important;
  text-shadow: 0 2px 4px rgba(10,37,64,0.4);
}

.contact-info .section-subtitle {
  color: var(--dark-100) !important;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(0, 89, 157, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  border: 1px solid rgba(0, 89, 157, 0.2);
}

.contact-info-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--blue-400);
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-info-value {
  font-size: 1rem;
  color: var(--dark-100);
  font-weight: 500;
}

.contact-socials {
  display: flex;
  gap: 12px;
  margin-top: 36px;
}

#social-facebook {
  background: rgba(24, 119, 242, 0.25);
  border-color: rgba(24, 119, 242, 0.45);
  color: #3b8cf7;
}

#social-facebook:hover {
  background: #1877F2 !important;
  border-color: #1877F2 !important;
  color: var(--white) !important;
  transform: translateY(-4px);
  box-shadow: 0 0 20px rgba(24, 119, 242, 0.5);
}

#social-instagram {
  background: rgba(220, 39, 67, 0.25);
  border-color: rgba(220, 39, 67, 0.45);
  color: #ff4a65;
}

#social-instagram:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
  border-color: transparent !important;
  color: var(--white) !important;
  transform: translateY(-4px);
  box-shadow: 0 0 20px rgba(220, 39, 67, 0.5);
}

#social-youtube {
  background: rgba(255, 0, 0, 0.25);
  border-color: rgba(255, 0, 0, 0.45);
  color: #ff3333;
}

#social-youtube:hover {
  background: #FF0000 !important;
  border-color: #FF0000 !important;
  color: var(--white) !important;
  transform: translateY(-4px);
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
}

#social-whatsapp {
  background: rgba(37, 211, 102, 0.25);
  border-color: rgba(37, 211, 102, 0.45);
  color: #38e578;
}

#social-whatsapp:hover {
  background: #25D366 !important;
  border-color: #25D366 !important;
  color: var(--white) !important;
  transform: translateY(-4px);
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.5);
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
  font-size: 1.2rem;
  border: 1px solid transparent;
}

/* Contact Form */
.contact-form-wrapper {
  padding: 60px;
  background: #071A2E;
  position: relative;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark-200);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 14px 18px;
  border-radius: var(--border-radius-sm);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--dark-300);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--blue-400);
  background: rgba(0, 89, 157, 0.05);
  box-shadow: 0 0 0 3px rgba(0, 89, 157, 0.1);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group select option {
  background: var(--dark-900);
  color: var(--white);
}

.btn-submit {
  width: 100%;
  justify-content: center;
  padding: 18px 32px;
  font-size: 1rem;
}

.form-decorative-bg {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 36px;
  opacity: 0.15;
  pointer-events: none;
  text-align: center;
}

.decor-spine {
  width: 24px;
  height: 24px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M12 2c1.1 0 2 .9 2 2v1c0 1.1-.9 2-2 2s-2-.9-2-2V4c0-1.1.9-2 2-2zm0 18c1.1 0 2 .9 2 2v-1c0 1.1-.9 2-2 2s-2-.9-2-2v-1c0-1.1.9-2 2-2zm0-9c1.1 0 2 .9 2 2v1c0 1.1-.9 2-2 2s-2-.9-2-2v-1c0-1.1.9-2 2-2zm0-4.5c1.1 0 2 .9 2 2v.5c0 1.1-.9 2-2 2s-2-.9-2-2v-.5c0-1.1.9-2 2-2zm0 9c1.1 0 2 .9 2 2v.5c0 1.1-.9 2-2 2s-2-.9-2-2v-.5c0-1.1.9-2 2-2z'/%3E%3C/svg%3E") no-repeat center/contain;
  animation: pulse-dot 2.5s ease-in-out infinite;
}

.decor-spine-text {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-top: 10px;
  font-weight: 500;
}

/* === FOOTER === */
.footer {
  padding: 60px 0 0;
  background: #0A2540;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

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

.footer-brand .nav-logo { margin-bottom: 8px; }

.footer-brand .nav-logo .brand-name {
  color: var(--white) !important;
}

.footer-brand .nav-logo .brand-tagline {
  color: var(--blue-300) !important;
}

.footer-brand-description {
  font-size: 0.9rem;
  color: var(--dark-400);
  line-height: 1.7;
}

.footer-brand .contact-socials .social-link {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.8) !important;
}

.footer-brand .contact-socials .social-link:hover {
  color: var(--white) !important;
}

.footer-heading {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--dark-400);
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  color: var(--blue-400);
  transform: translateX(6px);
}

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

.footer-bottom-text {
  font-size: 0.85rem;
  color: var(--dark-500);
}

/* === Floating WhatsApp Button === */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  transition: all var(--transition-base);
  animation: whatsapp-pulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.15);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

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

.whatsapp-float .tooltip {
  position: absolute;
  right: 70px;
  white-space: nowrap;
  padding: 10px 18px;
  background: #0D3259;
  color: var(--white);
  border-radius: var(--border-radius-sm);
  font-size: 0.85rem;
  font-weight: 500;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
  pointer-events: none;
  box-shadow: var(--shadow-md);
}

.whatsapp-float:hover .tooltip {
  opacity: 1;
  visibility: visible;
}

@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 40px rgba(37, 211, 102, 0.6); }
}

/* === Counter Animation === */
.counter { display: inline-block; }

/* === Scroll-to-top === */
.scroll-top {
  position: fixed;
  bottom: 100px;
  right: 28px;
  z-index: 999;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0,89,157,0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0,89,157,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  color: var(--blue-700);
  font-size: 1.2rem;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: var(--gradient-blue);
  border-color: transparent;
  transform: translateY(-4px);
}

/* === WELLNESS EXPLORER SECTION === */
.gallery {
  padding: var(--section-padding);
  position: relative;
  background: var(--dark-50);
}

.explorer-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: center;
  margin-top: 40px;
}

.explorer-model-side {
  display: flex;
  justify-content: center;
  align-items: center;
}

.explorer-model-wrapper {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: var(--white);
  border: 1px solid var(--dark-200);
  border-radius: var(--border-radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(10px);
}

.explorer-image-container {
  position: relative;
  width: 100%;
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(10, 37, 64, 0.15);
  background: var(--dark-50);
}

.explorer-base-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-sm);
  opacity: 0.9;
  transition: opacity var(--transition-base);
}

/* Hotspots on image */
.hotspot-node {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(0, 142, 206, 0.35);
  border: 2px solid var(--blue-300);
  cursor: pointer;
  transform: translate(-50%, -50%);
  z-index: 10;
  transition: all var(--transition-base);
  box-shadow: 0 0 10px rgba(0, 142, 206, 0.4);
}

.hotspot-node::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1.5px solid var(--blue-400);
  opacity: 0;
  transform: scale(0.8);
  animation: hotspot-pulse 2s infinite ease-in-out;
}

@keyframes hotspot-pulse {
  0% { transform: scale(0.8); opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}

.hotspot-node:hover,
.hotspot-node.active {
  background: var(--blue-300);
  box-shadow: 0 0 15px var(--blue-400), 0 0 30px var(--blue-400);
  border-color: var(--white);
  transform: translate(-50%, -50%) scale(1.25);
}

/* Yellow dot for posture/cadera to match image dot */
.hotspot-node[data-target-zone="postura"] {
  background: rgba(212, 168, 67, 0.35);
  border-color: var(--gold-300);
  box-shadow: 0 0 10px rgba(212, 168, 67, 0.4);
}

.hotspot-node[data-target-zone="postura"]::after {
  border-color: var(--gold-400);
}

.hotspot-node[data-target-zone="postura"]:hover,
.hotspot-node[data-target-zone="postura"].active {
  background: var(--gold-300);
  box-shadow: 0 0 15px var(--gold-400), 0 0 30px var(--gold-400);
}

/* Floating labels next to hotspots */
.model-label {
  position: absolute;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--dark-200);
  border-radius: 100px;
  color: var(--dark-600);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
  z-index: 12;
}

.model-label:hover,
.model-label.active {
  color: var(--white);
  border-color: var(--blue-400);
  background: var(--blue-700);
  box-shadow: 0 0 15px rgba(0, 89, 157, 0.3);
}

/* Coordinate offsets for buttons overlayed on Image */
.label-cervical { top: 17.5%; left: calc(50% + 24px); transform: translateY(-50%); }
.label-lumbar { top: 41.5%; right: calc(50.5% + 24px); transform: translateY(-50%); }
.label-postura { top: 48.2%; left: calc(50% + 24px); transform: translateY(-50%); }
.label-piernas { top: 65.5%; right: calc(42.5% + 24px); transform: translateY(-50%); }
.label-pies { top: 83.2%; left: calc(57.5% + 24px); transform: translateY(-50%); }

/* Card styles */
.explorer-panel-side {
  width: 100%;
}

.explorer-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--dark-200);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  min-height: 520px;
  backdrop-filter: blur(20px);
}

.explorer-content {
  display: none;
  opacity: 0;
  transform: translateY(15px);
  grid-template-columns: 1.15fr 1fr;
  transition: all var(--transition-slow);
}

.explorer-content.active {
  display: grid;
  opacity: 1;
  transform: translateY(0);
  animation: card-reveal 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

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

.explorer-media {
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 520px;
  border-right: 1px solid var(--dark-200);
}

/* Carousel inside explorer */
.explorer-carousel {
  position: relative;
  width: 100%;
  height: 100%;
}

.explorer-slides {
  width: 100%;
  height: 100%;
}

.explorer-slides img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity var(--transition-slow);
}

.explorer-slides img.active {
  opacity: 1;
  z-index: 1;
}

.explorer-carousel-controls {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid var(--dark-200);
  padding: 6px 16px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.mini-carousel-btn {
  background: none;
  border: none;
  color: var(--dark-700);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0 4px;
  transition: color var(--transition-fast);
}

.mini-carousel-btn:hover {
  color: var(--blue-400);
}

.mini-carousel-dots {
  display: flex;
  gap: 6px;
}

.mini-carousel-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(10,37,64,0.2);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.mini-carousel-dots span.active {
  background: var(--blue-400);
  transform: scale(1.3);
}

/* Text and details styling */
.explorer-details {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.explorer-zone-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--blue-400);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.explorer-zone-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--dark-900);
  margin-bottom: 16px;
  line-height: 1.2;
}

.explorer-zone-desc {
  font-size: 0.95rem;
  color: var(--dark-500);
  line-height: 1.6;
  margin-bottom: 24px;
}

.explorer-subheading {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold-400);
  margin-bottom: 12px;
  border-bottom: 1px dashed rgba(212, 168, 67, 0.15);
  padding-bottom: 6px;
}

.explorer-symptoms-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.explorer-symptoms-list li {
  font-size: 0.9rem;
  color: var(--dark-600);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.explorer-symptoms-list li span {
  color: var(--blue-400);
  font-size: 0.8rem;
  margin-top: 2px;
}

.explorer-approach-text {
  font-size: 0.9rem;
  color: var(--dark-500);
  line-height: 1.5;
  margin-bottom: 32px;
}

.explorer-cta {
  width: 100%;
  justify-content: center;
  padding: 14px 28px !important;
  font-size: 0.9rem !important;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-image { order: -1; }
  .hero-image-wrapper img { height: 350px; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .explorer-container { grid-template-columns: 1fr; gap: 40px; }
  .explorer-model-wrapper { max-width: 300px; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-card { padding: 36px 32px; }
  .testimonials { --cards-visible: 2; }
}

@media (max-width: 768px) {
  :root { --section-padding: 60px 0; }
  .testimonials { --cards-visible: 1; }

  .navbar {
    z-index: 10000;
  }
  
  .nav-logo {
    position: relative;
    z-index: 10002;
  }

  .nav-links { 
    display: none; 
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    background: #FFFFFF;
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 100px 24px 40px;
    gap: 16px;
    overflow-y: auto;
    z-index: 10000;
  }

  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.2rem; padding: 10px 20px; }
  
  .nav-toggle { 
    display: flex; 
    z-index: 10002;
  }

  .hero-title { font-size: clamp(2rem, 6vw, 3rem); }
  .hero-image-wrapper img { height: 280px; }
  .hero-stats { flex-direction: column; align-items: center; }
  .hero-stat { border-right: none; padding-right: 0; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 16px; }

  .about-experience-badge { bottom: -10px; right: 10px; width: 110px; height: 110px; }
  .about-experience-badge .number { font-size: 2rem; }
  .about-features { grid-template-columns: 1fr; }

  .services-grid { grid-template-columns: 1fr; }
  .service-card-image { height: 200px; }
  .explorer-card { min-height: auto; }
  .explorer-content { grid-template-columns: 1fr; }
  .explorer-media { min-height: 350px; border-right: none; border-bottom: 1px solid var(--dark-200); }
  .explorer-details { padding: 28px; }

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

  .testimonial-card { padding: 28px 20px; }
  .testimonial-text { font-size: 1rem; }
  .testimonials-controls { gap: 16px; }
  .contact-map iframe { height: 150px; }

  .contact-info, .contact-form-wrapper { padding: 24px; }
  .contact-info-item { gap: 12px; margin-bottom: 24px; }
  .contact-info-icon { width: 42px; height: 42px; font-size: 1.1rem; border-radius: 10px; }
  .contact-info-value { font-size: 0.95rem; word-break: break-word; overflow-wrap: break-word; }
  .contact-info-value a { display: inline-block; word-break: break-all; }
  
  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .section-title { font-size: 1.8rem; }
  .explorer-media { min-height: 250px; }
  .explorer-details { padding: 24px 16px; }
  .testimonial-card { padding: 24px 16px; }
  .carousel-btn { width: 40px; height: 40px; }
  
  .contact-info, .contact-form-wrapper { padding: 20px 16px; }
  .contact-info-item { gap: 10px; margin-bottom: 20px; }
  .contact-info-icon { width: 38px; height: 38px; font-size: 1rem; border-radius: 8px; }
  .contact-info-value { font-size: 0.9rem; }
  .contact-socials { margin-top: 24px; justify-content: flex-start; }
}


