/* ===========================
   NEUROREAD ACADEMY — STYLES
   =========================== */

/* ── Variables ── */
:root {
  --primary:        #6B3FA0;
  --primary-light:  #8B5CC0;
  --primary-dark:   #4A2A7A;
  --secondary:      #29B6F6;
  --secondary-dark: #0288D1;
  --accent:         #FFD54F;
  --accent-dark:    #FFC107;
  --dark:           #1A1A2E;
  --dark-2:         #2D2D4E;
  --light:          #F5F5F5;
  --light-2:        #FAFAFA;
  --success:        #66BB6A;
  --teal:           #4DB6AC;
  --orange:         #FF7043;
  --pink:           #E91E8C;
  --text:           #2D2D4E;
  --text-light:     #5A5A7A;
  --text-muted:     #8888AA;
  --border:         #E0E0F0;
  --white:          #FFFFFF;

  --font:           'Nunito', system-ui, sans-serif;

  --shadow-xs:  0 1px 4px rgba(0,0,0,.06);
  --shadow-sm:  0 2px 12px rgba(0,0,0,.08);
  --shadow-md:  0 8px 28px rgba(0,0,0,.12);
  --shadow-lg:  0 16px 48px rgba(0,0,0,.16);
  --shadow-pri: 0 8px 32px rgba(107,63,160,.28);

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  36px;
  --radius-f:   9999px;

  --transition: .3s ease;
  --transition-s: .6s ease;

  --container:     1200px;
  --header-h:      72px;
  --section-py:    80px;

  --rainbow: linear-gradient(135deg, #FF6B9D, #FFA94D, #FFD54F, #69DB7C, #4FC3F7, #9775FA);
}

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

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

body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  padding-top: var(--header-h);
  overflow-x: hidden;
}

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

section { scroll-margin-top: var(--header-h); }

/* ── Container ── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--radius-f);
  font-family: var(--font);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  white-space: nowrap;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-pri);
}
.btn-primary:hover { background: var(--primary-light); box-shadow: 0 12px 36px rgba(107,63,160,.4); }

.btn-accent {
  background: var(--accent);
  color: var(--dark);
  box-shadow: 0 8px 28px rgba(255,213,79,.35);
}
.btn-accent:hover { background: var(--accent-dark); }

.btn-white {
  background: var(--white);
  color: var(--primary);
  box-shadow: var(--shadow-md);
}
.btn-white:hover { background: var(--light); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.6);
}
.btn-outline-white:hover { background: rgba(255,255,255,.12); border-color: var(--white); }

.btn-sm  { padding: .5rem 1.25rem; font-size: .9rem; }
.btn-lg  { padding: .9rem 2.2rem; font-size: 1.05rem; }

/* ── Section Shared ── */
.section { padding: var(--section-py) 0; }
.section-alt { background: var(--light); }

.section-header { text-align: center; margin-bottom: 3rem; }
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: .75rem;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 580px;
  margin: 0 auto;
}
.section-body {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .35rem 1rem;
  border-radius: var(--radius-f);
  margin-bottom: .85rem;
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 1000;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border), var(--shadow-xs);
  transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.1); }

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Nav Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: .7rem;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--teal);
  letter-spacing: -.01em;
}
.logo-sub {
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .18em;
  color: var(--text-muted);
}

/* Desktop Nav */
.nav { margin: 0 auto; }
.nav-links {
  display: flex;
  gap: .25rem;
  align-items: center;
}
.nav-link {
  padding: .5rem .75rem;
  font-size: .9rem;
  font-weight: 700;
  color: var(--text-light);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--primary); background: rgba(107,63,160,.08); }

/* Nav Actions */
.nav-actions { display: flex; align-items: center; gap: .75rem; flex-shrink: 0; }

.lang-toggle {
  padding: .4rem .85rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-f);
  font-size: .8rem;
  font-weight: 800;
  color: var(--text-light);
  letter-spacing: .06em;
  transition: all var(--transition);
}
.lang-toggle:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(107,63,160,.06);
}

.nav-cta { flex-shrink: 0; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: .5rem;
  margin-left: auto;
}
.hamburger-line {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.open .hamburger-line:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open .hamburger-line:nth-child(2) { opacity: 0; }
.hamburger.open .hamburger-line:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  background: var(--white);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  border-top: 1px solid var(--border);
  z-index: 999;
  animation: slideDown .3s ease;
}
.mobile-menu[hidden] { display: none; }
.mobile-nav-links { display: flex; flex-direction: column; gap: .25rem; margin-bottom: 1.25rem; }
.mobile-nav-link {
  display: block;
  padding: .75rem 1rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}
.mobile-nav-link:hover { background: rgba(107,63,160,.08); color: var(--primary); }
.btn-mobile-cta { display: block; text-align: center; width: 100%; margin-bottom: 1rem; }
.lang-toggle-mobile { display: block; width: 100%; text-align: center; }

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero {
  position: relative;
  height: calc(100vh - var(--header-h));
  min-height: 560px;
  overflow: hidden;
}

.slider { position: relative; width: 100%; height: 100%; }

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .8s ease;
  pointer-events: none;
  overflow: hidden;
}
.slide.active { opacity: 1; pointer-events: auto; }

/* Slide Backgrounds */
.slide-bg {
  position: absolute;
  inset: 0;
}
.slide-bg-1 {
  background: linear-gradient(135deg, #1A1A2E 0%, #3A1A6B 55%, #6B3FA0 100%);
}
.slide-bg-4 {
  background: linear-gradient(135deg, #0D47A1 0%, #1565C0 40%, #29B6F6 100%);
}

/* Photo slides */
.slide-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 5s ease;
}
.slide.active .slide-photo { transform: scale(1); }

.slide-overlay {
  position: absolute;
  inset: 0;
}
.slide-overlay-purple { background: linear-gradient(135deg, rgba(107,63,160,.82) 0%, rgba(41,182,246,.65) 100%); }
.slide-overlay-dark   { background: linear-gradient(135deg, rgba(26,26,46,.88) 0%, rgba(107,63,160,.7) 100%); }

/* Decorations — Slide 1 */
.slide-decoration {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.dec-circle {
  position: absolute;
  border-radius: 50%;
  opacity: .2;
}
.dec-c1 { width: 300px; height: 300px; background: var(--primary-light); top: -80px; right: -60px; }
.dec-c2 { width: 200px; height: 200px; background: var(--secondary);     bottom: 20px; right: 10%; opacity: .15; }
.dec-c3 { width: 160px; height: 160px; background: var(--accent);        bottom: -50px; left: 8%; }
.dec-c4 { width: 100px; height: 100px; background: var(--teal);          top: 30%; left: 2%; opacity: .25; }

.dec-stars { position: absolute; inset: 0; }
.star {
  position: absolute;
  font-size: 1.2rem;
  opacity: .35;
  color: var(--accent);
  animation: twinkle 3s ease-in-out infinite;
}
.s1 { top: 15%; left: 12%; animation-delay: 0s;   font-size: 1.5rem; }
.s2 { top: 25%; right: 20%; animation-delay: .8s; }
.s3 { top: 70%; left: 20%; animation-delay: 1.4s; }
.s4 { top: 55%; right: 10%; animation-delay: .4s; font-size: 1rem; }
.s5 { top: 82%; right: 30%; animation-delay: 2s; }

/* Decorations — Slide 4 */
.slide-decoration-4 { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.dec-wave {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  opacity: .12;
}
.dec-w1 { background: var(--white); top: -100px; right: -80px; }
.dec-w2 { background: var(--accent); bottom: -120px; left: -60px; opacity: .15; }

/* Slide Content */
.slide-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 0;
  color: var(--white);
}
.slide-content-center { align-items: center; text-align: center; }
.slide-content-left   { align-items: flex-start; max-width: 620px; }

.slide-logo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
  border: 3px solid rgba(255,255,255,.3);
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.3);
  color: var(--white);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .35rem 1rem;
  border-radius: var(--radius-f);
  margin-bottom: 1rem;
}
.hero-badge-accent { background: var(--accent); color: var(--dark); border-color: var(--accent); }
.hero-badge-light  { background: rgba(255,255,255,.25); color: var(--white); }

.hero-title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: var(--white);
  text-shadow: 0 2px 16px rgba(0,0,0,.25);
}
.hero-title-light { color: var(--white); }

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,.9);
  max-width: 540px;
  margin-bottom: 2rem;
  line-height: 1.6;
}
.hero-subtitle-white { color: rgba(255,255,255,.9); text-align: center; max-width: 540px; }

/* Services chips in Slide 2 */
.hero-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  margin: 1.25rem 0;
}
.hero-service-chip {
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--radius-md);
  padding: .7rem 1rem;
  font-size: .95rem;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.hero-more { color: rgba(255,255,255,.75); font-size: .9rem; font-style: italic; margin-top: .5rem; }

/* 4 Spots slide */
.hero-spots {
  display: flex;
  align-items: baseline;
  gap: .75rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-spots-text { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; color: var(--white); }
.hero-spots-num {
  font-size: clamp(5rem, 12vw, 9rem);
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  text-shadow: 0 4px 24px rgba(0,0,0,.3);
}

/* Schedule slide 4 */
.hero-schedule {
  font-size: 1.05rem;
  color: rgba(255,255,255,.9);
  margin-bottom: 2rem;
  font-weight: 700;
  letter-spacing: .02em;
}
.hero-cta-group { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

/* Slider Controls */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  backdrop-filter: blur(8px);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), transform var(--transition);
  border: 1px solid rgba(255,255,255,.3);
}
.slider-btn:hover { background: rgba(255,255,255,.35); transform: translateY(-50%) scale(1.08); }
.slider-prev { left: 1.25rem; }
.slider-next { right: 1.25rem; }

.slider-dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: .5rem;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.45);
  border: 2px solid rgba(255,255,255,.5);
  transition: background var(--transition), transform var(--transition), width var(--transition);
}
.dot.active {
  background: var(--white);
  width: 28px;
  border-radius: 5px;
  border-color: var(--white);
}

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

.about-text { max-width: 540px; }
.about-text .section-title { margin-bottom: 1.25rem; }

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.stat-item {
  background: var(--light);
  border-radius: var(--radius-md);
  padding: 1.25rem 1rem;
  text-align: center;
  border: 2px solid var(--border);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.stat-item:hover { border-color: var(--primary); box-shadow: var(--shadow-sm); }
.stat-val {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: .25rem;
}
.stat-label { font-size: .8rem; font-weight: 700; color: var(--text-light); text-transform: uppercase; letter-spacing: .06em; }

/* Educator Card */
.educator-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.educator-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: var(--rainbow);
}

.educator-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  position: relative;
  box-shadow: var(--shadow-pri);
}
.educator-initials {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -.02em;
}
.educator-name  { font-size: 1.15rem; font-weight: 900; color: var(--dark);       margin-bottom: .25rem; }
.educator-role  { font-size: .85rem;  font-weight: 700; color: var(--text-muted);  margin-bottom: 1.25rem; }

.educator-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.edu-badge {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius-f);
  padding: .35rem .85rem;
  font-size: .8rem;
  font-weight: 700;
  color: var(--text-light);
}

.educator-quote {
  background: var(--light);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  border-left: 4px solid var(--primary);
}
.quote-text { font-style: italic; font-size: .9rem; color: var(--text-light); line-height: 1.5; }

/* ============================================================
   SERVICES
   ============================================================ */
.schedule-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: var(--radius-xl);
  padding: 1.25rem 2rem;
  margin-bottom: 3rem;
  color: var(--white);
}
.schedule-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-weight: 700;
  font-size: .95rem;
}
.schedule-highlight {
  background: rgba(255,255,255,.18);
  border-radius: var(--radius-f);
  padding: .4rem 1rem;
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  border-radius: 2px 2px 0 0;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* Service card colors */
.service-card-1::before, .service-card-1:hover { border-color: #6B3FA0; }
.service-card-1::before { background: #6B3FA0; }
.service-card-2::before, .service-card-2:hover { border-color: #29B6F6; }
.service-card-2::before { background: #29B6F6; }
.service-card-3::before, .service-card-3:hover { border-color: #66BB6A; }
.service-card-3::before { background: #66BB6A; }
.service-card-4::before, .service-card-4:hover { border-color: #FFD54F; }
.service-card-4::before { background: #FFD54F; }
.service-card-5::before, .service-card-5:hover { border-color: #FF7043; }
.service-card-5::before { background: #FF7043; }
.service-card-6::before, .service-card-6:hover { border-color: #E91E8C; }
.service-card-6::before { background: #E91E8C; }
.service-card-7::before, .service-card-7:hover { border-color: #4DB6AC; }
.service-card-7::before { background: #4DB6AC; }
.service-card-8::before, .service-card-8:hover { border-color: #8B5CC0; }
.service-card-8::before { background: #8B5CC0; }
.service-card-9::before, .service-card-9:hover { border-color: #FFC107; }
.service-card-9::before { background: #FFC107; }

.service-icon { font-size: 2.5rem; margin-bottom: .85rem; line-height: 1; }
.service-title { font-size: 1.05rem; font-weight: 800; color: var(--dark); margin-bottom: .5rem; }
.service-desc  { font-size: .9rem;  color: var(--text-light); line-height: 1.55; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  text-align: center;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.why-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(107,63,160,.1), rgba(41,182,246,.1));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--primary);
  transition: background var(--transition);
}
.why-card:hover .why-icon {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
}

.why-title { font-size: 1.05rem; font-weight: 800; color: var(--dark); margin-bottom: .5rem; }
.why-desc  { font-size: .9rem;  color: var(--text-light); line-height: 1.55; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--border);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial-featured {
  border-color: var(--primary);
  box-shadow: var(--shadow-pri);
  transform: translateY(-6px);
}
.testimonial-featured:hover { transform: translateY(-10px); }

.testimonial-quote-icon {
  font-size: 4rem;
  font-weight: 900;
  line-height: .7;
  color: var(--primary);
  opacity: .2;
  font-family: Georgia, serif;
  margin-bottom: .75rem;
}

.testimonial-text {
  font-size: .95rem;
  color: var(--text);
  line-height: 1.65;
  font-style: italic;
  flex: 1;
  margin-bottom: 1.5rem;
  quotes: none;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: .85rem;
}
.author-avatar { font-size: 2rem; }
.author-name  { display: block; font-size: .9rem;  font-weight: 800; color: var(--dark);       font-style: normal; }
.author-detail{ display: block; font-size: .8rem; color: var(--text-muted); }
.testimonial-disclaimer { text-align: center; font-size: .8rem; color: var(--text-muted); font-style: italic; margin-bottom: 2.5rem; }

/* Gallery Strip */
.gallery-strip {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  height: 220px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
  transition: transform var(--transition-s);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item { overflow: hidden; border-radius: var(--radius-md); }

.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-ig {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}
.gallery-ig a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: var(--white);
  font-size: .9rem;
  font-weight: 700;
  text-decoration: none;
}
.gallery-ig svg { fill: var(--white); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  text-decoration: none;
  color: inherit;
}
.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.contact-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition), color var(--transition);
}

.contact-card-phone     { border-color: #4DB6AC; }
.contact-card-phone:hover { border-color: #4DB6AC; box-shadow: 0 8px 28px rgba(77,182,172,.2); }
.contact-card-phone .contact-icon { background: rgba(77,182,172,.12); color: #4DB6AC; }
.contact-card-phone:hover .contact-icon { background: #4DB6AC; color: white; }

.contact-card-email     { border-color: var(--primary); }
.contact-card-email:hover { box-shadow: var(--shadow-pri); }
.contact-card-email .contact-icon { background: rgba(107,63,160,.1); color: var(--primary); }
.contact-card-email:hover .contact-icon { background: var(--primary); color: white; }

.contact-card-instagram { border-color: #E91E8C; }
.contact-card-instagram:hover { box-shadow: 0 8px 28px rgba(233,30,140,.2); }
.contact-card-instagram .contact-icon { background: rgba(233,30,140,.1); color: #E91E8C; }
.contact-card-instagram:hover .contact-icon { background: linear-gradient(135deg, #f09433, #dc2743, #bc1888); color: white; }

.contact-card-location  { border-color: var(--orange); }
.contact-card-location .contact-icon { background: rgba(255,112,67,.1); color: var(--orange); }
.contact-card-location:hover { border-color: var(--orange); box-shadow: 0 8px 28px rgba(255,112,67,.18); }
.contact-card-location:hover .contact-icon { background: var(--orange); color: white; }

.contact-card-schedule  { border-color: var(--secondary); }
.contact-card-schedule .contact-icon { background: rgba(41,182,246,.1); color: var(--secondary-dark); }
.contact-card-schedule:hover { border-color: var(--secondary); box-shadow: 0 8px 28px rgba(41,182,246,.18); }
.contact-card-schedule:hover .contact-icon { background: var(--secondary); color: white; }

.contact-card-whatsapp  { border-color: #25D366; }
.contact-card-whatsapp .contact-icon { background: rgba(37,211,102,.1); color: #25D366; }
.contact-card-whatsapp:hover { border-color: #25D366; box-shadow: 0 8px 28px rgba(37,211,102,.25); }
.contact-card-whatsapp:hover .contact-icon { background: #25D366; color: white; }

.contact-label { font-size: .75rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); margin-bottom: .2rem; }
.contact-value { font-size: .95rem; font-weight: 700; color: var(--text); word-break: break-all; }
.contact-badge {
  display: inline-block;
  margin-top: .35rem;
  background: rgba(107,63,160,.1);
  color: var(--primary);
  font-size: .72rem;
  font-weight: 800;
  padding: .2rem .6rem;
  border-radius: var(--radius-f);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,.8);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-top: 3.5rem;
  padding-bottom: 2.5rem;
}

.footer-logo { border-radius: 50%; object-fit: cover; margin-bottom: .85rem; }
.footer-tagline { font-size: .9rem; line-height: 1.55; color: rgba(255,255,255,.65); margin-bottom: .35rem; }
.footer-location{ font-size: .8rem; color: rgba(255,255,255,.45); }

.footer-heading { font-size: .8rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 1rem; }
.footer-nav li  { margin-bottom: .5rem; }
.footer-nav a, .footer-contact a { font-size: .9rem; color: rgba(255,255,255,.7); transition: color var(--transition); }
.footer-nav a:hover, .footer-contact a:hover { color: var(--accent); }
.footer-contact li { margin-bottom: .5rem; }

.social-links { display: flex; gap: .6rem; margin-bottom: 1rem; }
.social-link {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.social-link:hover        { background: var(--primary); color: white; transform: translateY(-2px); }
.social-link.social-wa:hover { background: #25D366; }
.social-link svg { fill: currentColor; }

.lang-toggle-footer {
  padding: .4rem .9rem;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-f);
  color: rgba(255,255,255,.65);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .06em;
  transition: all var(--transition);
}
.lang-toggle-footer:hover { border-color: var(--accent); color: var(--accent); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  text-align: center;
  padding: 1.25rem 1.5rem;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 1.5rem;
  z-index: 900;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-pri);
  transition: background var(--transition), transform var(--transition);
}
.back-to-top:hover { background: var(--primary-light); transform: translateY(-3px); }
.back-to-top[hidden] { display: none; }

/* ============================================================
   FOCUS STYLES (Accessibility)
   ============================================================ */
:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
  border-radius: 4px;
}
