/* ============================================================
   ROOT TOKENS
   ============================================================ */
:root {
  --primary:       #2A9D8F;
  --primary-dark:  #1F7A6F;
  --primary-light: #E8F6F5;
  --accent:        #F4A261;
  --accent-light:  #FFF4EC;
  --bg:            #FAFCFC;
  --surface:       #FFFFFF;
  --text:          #2D3748;
  --muted:         #718096;
  --border:        #E2E8F0;
  --star:          #F6C90E;
  --radius-sm:     0.5rem;
  --radius:        1rem;
  --radius-lg:     1.5rem;
  --radius-xl:     2rem;
  --shadow-sm:     0 1px 4px rgba(0,0,0,0.06);
  --shadow:        0 2px 12px rgba(0,0,0,0.07);
  --shadow-hover:  0 8px 28px rgba(42,157,143,0.15);
  --transition:    0.22s ease;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Nunito Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font: inherit; border: none; background: none; }
ul { list-style: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 { font-family: 'Nunito', sans-serif; line-height: 1.2; }
h1 { font-size: clamp(1.8rem, 5vw, 3rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 4vw, 2.25rem); font-weight: 700; }
h3 { font-size: 1.125rem; font-weight: 700; }

/* ============================================================
   UTILITIES
   ============================================================ */
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.25rem; }
.section { padding: 4.5rem 0; }
.btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.75rem 1.5rem; border-radius: 3rem;
  font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 0.95rem;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background: var(--primary); color: #fff;
  box-shadow: 0 4px 16px rgba(42,157,143,0.3);
}
.btn--primary:hover { background: var(--primary-dark); box-shadow: 0 6px 22px rgba(42,157,143,0.4); }
.btn--outline {
  background: transparent; color: var(--primary);
  border: 2px solid var(--primary);
}
.btn--outline:hover { background: var(--primary-light); }
.btn--large { padding: 0.9rem 1.9rem; font-size: 1.05rem; }

/* Section header */
.section__header { text-align: center; margin-bottom: 3rem; }
.section__label {
  display: inline-block; margin-bottom: 0.5rem;
  font-family: 'Nunito', sans-serif; font-weight: 700;
  font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--primary); background: var(--primary-light);
  padding: 0.25rem 0.75rem; border-radius: 2rem;
}
.section__title { margin-bottom: 0.75rem; }
.section__subtitle { color: var(--muted); font-size: 1.05rem; max-width: 540px; margin: 0 auto; }

/* Scroll animations */
.animate-on-scroll {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }
.animate-delay { transition-delay: 0.15s; }
.animate-delay-2 { transition-delay: 0.3s; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,252,252,0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}
.nav--scrolled {
  background: rgba(255,255,255,0.95);
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.nav__container {
  max-width: 1100px; margin: 0 auto; padding: 0 1.25rem;
  display: flex; align-items: center; gap: 1.5rem;
  height: 64px;
}
.nav__logo {
  font-family: 'Nunito', sans-serif; font-weight: 800;
  font-size: 1.1rem; color: var(--primary);
  flex-shrink: 0; white-space: nowrap;
}
.nav__menu {
  display: none; gap: 0.25rem; margin-left: auto;
}
.nav__link {
  font-family: 'Nunito', sans-serif; font-weight: 600;
  font-size: 0.9rem; color: var(--text);
  padding: 0.4rem 0.75rem; border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.nav__link:hover { color: var(--primary); background: var(--primary-light); }
.nav__cta { display: none; margin-left: 0.5rem; }
.nav__burger {
  display: flex; flex-direction: column; justify-content: center;
  gap: 5px; width: 36px; height: 36px;
  margin-left: auto; padding: 4px;
}
.nav__burger span {
  display: block; height: 2px; background: var(--text);
  border-radius: 2px; transition: transform var(--transition), opacity var(--transition);
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav__mobile {
  display: flex; flex-direction: column;
  position: fixed; top: 64px; left: 0; right: 0; bottom: 0;
  background: var(--surface); z-index: 99;
  padding: 2rem 1.5rem; gap: 0.5rem;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.nav__mobile.open { transform: translateX(0); }
.nav__mobile-link {
  font-family: 'Nunito', sans-serif; font-weight: 700;
  font-size: 1.25rem; color: var(--text);
  padding: 0.75rem 1rem; border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.nav__mobile-link:hover { color: var(--primary); background: var(--primary-light); }
.nav__mobile-cta { margin-top: 1rem; text-align: center; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: linear-gradient(135deg, #fff 0%, var(--primary-light) 60%, #fff 100%);
  padding: 3rem 0 2.5rem;
  overflow: hidden;
}
.hero__container {
  max-width: 1100px; margin: 0 auto; padding: 0 1.25rem;
  display: flex; flex-direction: column; align-items: center;
  gap: 2.5rem;
}

/* Photo – mobile first */
.hero__photo-wrap {
  position: relative; order: -1;
  display: flex; justify-content: center;
}
.hero__photo-frame {
  width: 220px; height: 220px; border-radius: 50%;
  overflow: hidden; border: 5px solid #fff;
  box-shadow: 0 8px 32px rgba(42,157,143,0.2);
  position: relative; z-index: 1;
}
.hero__photo { width: 100%; height: 100%; object-fit: cover; object-position: center 32%; }
.hero__deco {
  position: absolute; border-radius: 50%; z-index: 0;
}
.hero__deco--1 {
  width: 260px; height: 260px;
  background: var(--primary); opacity: 0.1;
  top: -20px; left: 50%; transform: translateX(-50%);
}
.hero__deco--2 {
  width: 80px; height: 80px;
  background: var(--accent); opacity: 0.25;
  bottom: 0; right: 20px;
}

/* Hero content */
.hero__content { text-align: center; max-width: 600px; }
.hero__badges {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 0.5rem; margin-bottom: 1.25rem;
}
.badge {
  font-family: 'Nunito', sans-serif; font-weight: 700;
  font-size: 0.78rem; color: var(--primary);
  background: var(--primary-light); border: 1px solid rgba(42,157,143,0.2);
  padding: 0.3rem 0.85rem; border-radius: 2rem;
}
.hero__name {
  color: var(--text); margin-bottom: 0.4rem;
}
.hero__title {
  font-family: 'Nunito', sans-serif; font-weight: 700;
  font-size: 1.05rem; color: var(--primary);
  letter-spacing: 0.04em; margin-bottom: 1rem;
}
.hero__tagline {
  color: var(--muted); font-size: 1rem; line-height: 1.7;
  margin-bottom: 1.75rem;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--surface); }
.about__grid { display: flex; flex-direction: column; gap: 2.5rem; }
.about__text {
  color: var(--text); line-height: 1.8; margin-bottom: 1rem;
}
.about__text.lead {
  font-family: 'Nunito', sans-serif; font-weight: 700;
  font-size: 1.15rem; color: var(--text);
}
.about__text:last-child { margin-bottom: 0; }

.credential-card {
  display: flex; gap: 1rem; align-items: flex-start;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.25rem;
  margin-bottom: 1rem;
}
.credential-card:last-child { margin-bottom: 0; }
.credential-card__icon {
  font-size: 1.5rem; flex-shrink: 0;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--primary-light); border-radius: var(--radius-sm);
}
.credential-card__title {
  font-size: 0.875rem; font-weight: 700;
  color: var(--primary); text-transform: uppercase;
  letter-spacing: 0.05em; margin-bottom: 0.35rem;
}
.credential-card__text { font-size: 0.95rem; color: var(--text); font-weight: 600; }
.credential-card__sub { font-size: 0.85rem; color: var(--muted); margin-top: 0.2rem; }

.cert-list {
  display: flex; flex-direction: column; gap: 0.45rem;
  margin-top: 0.35rem;
}
.cert-list li {
  font-size: 0.875rem; color: var(--text);
  padding-left: 1.1rem; position: relative;
}
.cert-list li::before {
  content: '✓';
  position: absolute; left: 0;
  color: var(--primary); font-weight: 700;
}

.uakp-badge {
  display: flex; align-items: center; gap: 1rem;
  background: linear-gradient(135deg, var(--primary-light), #fff);
  border: 2px solid var(--primary); border-radius: var(--radius);
  padding: 1rem 1.25rem; margin-top: 1rem;
}
.uakp-badge__icon { font-size: 1.75rem; flex-shrink: 0; }
.uakp-badge strong { display: block; font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 1rem; color: var(--primary); }
.uakp-badge span { font-size: 0.8rem; color: var(--muted); }

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--bg); }
.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.service-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.75rem 1.5rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(42,157,143,0.3);
}
.service-card__icon {
  width: 52px; height: 52px;
  background: var(--primary); color: #fff;
  border-radius: var(--radius); display: flex;
  align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.service-card__icon svg { width: 24px; height: 24px; stroke-width: 2; }
.service-card__title {
  color: var(--text); margin-bottom: 0.6rem; font-size: 1.05rem;
}
.service-card__text { color: var(--muted); font-size: 0.9rem; line-height: 1.7; }

/* ============================================================
   REVIEWS / CAROUSEL
   ============================================================ */
.reviews { background: var(--surface); }

.carousel {
  position: relative;
  max-width: 700px; margin: 0 auto 1.75rem;
}
.carousel__viewport { overflow: hidden; border-radius: var(--radius-lg); }
.carousel__track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-card {
  min-width: 100%;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem 1.75rem;
  display: flex; flex-direction: column; gap: 1rem;
}
.testimonial-card__stars {
  font-size: 1.1rem; letter-spacing: 0.1em;
  color: var(--star);
}
.testimonial-card__text {
  font-size: 1.02rem; line-height: 1.75; color: var(--text);
  font-style: italic;
}
.testimonial-card__footer {
  display: flex; flex-direction: column; gap: 0.2rem;
  border-top: 1px solid var(--border); padding-top: 1rem;
}
.testimonial-card__name {
  font-family: 'Nunito', sans-serif; font-weight: 700;
  font-size: 0.95rem; color: var(--primary);
}
.testimonial-card__service { font-size: 0.8rem; color: var(--muted); }

.carousel__controls {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; margin-top: 1.25rem;
}
.carousel__btn {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--surface); border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  flex-shrink: 0;
}
.carousel__btn:hover { background: var(--primary-light); border-color: var(--primary); transform: scale(1.05); }
.carousel__btn svg { width: 18px; height: 18px; stroke-width: 2.5; }
.carousel__dots { display: flex; gap: 0.4rem; }
.carousel__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border);
  transition: background var(--transition), transform var(--transition);
}
.carousel__dot.active { background: var(--primary); transform: scale(1.3); }

/* Expand all reviews */
.reviews-expand { text-align: center; margin-bottom: 0; }
.reviews-expand__icon { transition: transform var(--transition); }
.reviews-expand__icon.rotated { transform: rotate(180deg); }

/* All reviews grid (hidden by default) */
.all-reviews {
  max-height: 0; overflow: hidden;
  transition: max-height 0.6s ease;
  margin-top: 0;
}
.all-reviews.open {
  max-height: 9999px;
  margin-top: 2rem;
}
.all-reviews__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.review-mini {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.25rem;
}
.review-mini__stars { color: var(--star); font-size: 0.85rem; margin-bottom: 0.5rem; }
.review-mini__text { font-size: 0.9rem; line-height: 1.65; color: var(--text); margin-bottom: 0.75rem; }
.review-mini__footer {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  align-items: baseline;
  border-top: 1px solid var(--border); padding-top: 0.65rem;
}
.review-mini__name {
  font-family: 'Nunito', sans-serif; font-weight: 700;
  font-size: 0.875rem; color: var(--primary);
}
.review-mini__meta { font-size: 0.78rem; color: var(--muted); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--bg); }
.contact__grid { display: flex; flex-direction: column; gap: 1.75rem; }
.contact__info { display: flex; flex-direction: column; gap: 1rem; }
.contact-card {
  display: flex; align-items: center; gap: 1rem;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.1rem 1.25rem;
}
.contact-card__icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--primary-light); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
}
.contact-card__icon svg { width: 20px; height: 20px; stroke-width: 2; }
.contact-card__label { font-size: 0.78rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; font-weight: 700; }
.contact-card__value { font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 1rem; color: var(--text); }
.contact__language-note {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.875rem; color: var(--muted); padding: 0 0.25rem;
}
.contact__language-note svg { width: 16px; height: 16px; color: var(--primary); flex-shrink: 0; }

.booking-box {
  background: var(--accent-light);
  border: 2px solid var(--accent);
  border-radius: var(--radius-lg); padding: 2rem 1.75rem;
  display: flex; flex-direction: column; gap: 1rem;
}
.booking-box__title {
  font-family: 'Nunito', sans-serif; font-weight: 800;
  font-size: 1.2rem; color: var(--text);
}
.booking-box__text { color: var(--muted); font-size: 0.95rem; line-height: 1.7; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--text); color: rgba(255,255,255,0.8);
  padding: 2.5rem 0;
}
.footer__container {
  max-width: 1100px; margin: 0 auto; padding: 0 1.25rem;
  display: flex; flex-direction: column; align-items: center;
  gap: 1.25rem; text-align: center;
}
.footer__brand { display: flex; flex-direction: column; gap: 0.2rem; }
.footer__name {
  font-family: 'Nunito', sans-serif; font-weight: 800;
  font-size: 1.05rem; color: #fff;
}
.footer__location { font-size: 0.85rem; }
.footer__nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.25rem; }
.footer__link {
  font-family: 'Nunito', sans-serif; font-weight: 600;
  font-size: 0.875rem; padding: 0.3rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.footer__link:hover { color: #fff; background: rgba(255,255,255,0.1); }
.footer__copy { font-size: 0.8rem; color: rgba(255,255,255,0.45); }

/* ============================================================
   TABLET  640px+
   ============================================================ */
@media (min-width: 640px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .all-reviews__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   DESKTOP  1024px+
   ============================================================ */
@media (min-width: 1024px) {
  /* Nav */
  .nav__menu { display: flex; }
  .nav__cta { display: inline-flex; }
  .nav__burger { display: none; }
  .nav__mobile { display: none !important; }

  /* Hero */
  .hero { padding: 5rem 0 4.5rem; }
  .hero__container {
    flex-direction: row; align-items: center;
    justify-content: space-between; gap: 3rem;
  }
  .hero__content { text-align: left; order: 0; }
  .hero__badges { justify-content: flex-start; }
  .hero__photo-wrap { order: 1; flex-shrink: 0; }
  .hero__photo-frame {
    width: 360px; height: 420px;
    border-radius: var(--radius-xl);
  }
  .hero__deco--1 {
    width: 420px; height: 420px;
    left: auto; right: -30px; top: -30px;
    transform: none;
  }
  .hero__deco--2 {
    width: 100px; height: 100px;
    bottom: -20px; left: -20px; right: auto;
  }

  /* About */
  .about__grid { flex-direction: row; gap: 3.5rem; }
  .about__narrative { flex: 1; }
  .about__credentials { flex: 1; }

  /* Services */
  .services__grid { grid-template-columns: repeat(3, 1fr); }

  /* All reviews */
  .all-reviews__grid { grid-template-columns: repeat(3, 1fr); }

  /* Contact */
  .contact__grid { flex-direction: row; gap: 2.5rem; align-items: flex-start; }
  .contact__info { flex: 1; }
  .contact__booking { flex: 1; }

  /* Section */
  .section { padding: 6rem 0; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
  .animate-on-scroll { opacity: 1; transform: none; }
  .carousel__track { transition: none; }
}
