/* ============================================================
   AAKRITI SPEECH & HEARING CARE — STYLES
   ============================================================ */

/* ======================== CSS TOKENS ======================== */
:root {
  /* Brand Colors */
  --color-primary:       #E85D45;
  --color-primary-dark:  #c94730;
  --color-primary-light: #ff7a63;
  --color-secondary:     #2C3E50;
  --color-secondary-light: #3d5166;
  --color-accent:        #F7931E;
  --color-accent-dark:   #d97a10;

  /* Neutrals */
  --color-white:   #ffffff;
  --color-bg:      #f8f9fb;
  --color-bg-alt:  #f0f4f8;
  --color-text:    #2d3748;
  --color-text-muted: #718096;
  --color-border:  #e2e8f0;

  /* Typography */
  --font-heading: 'Montserrat', sans-serif;
  --font-body:    'Inter', sans-serif;

  /* Font sizes */
  --fs-xs:   0.75rem;
  --fs-sm:   0.875rem;
  --fs-base: 1rem;
  --fs-md:   1.125rem;
  --fs-lg:   1.25rem;
  --fs-xl:   1.5rem;
  --fs-2xl:  1.875rem;
  --fs-3xl:  2.25rem;
  --fs-4xl:  clamp(2rem, 4vw, 3rem);
  --fs-hero: clamp(2.2rem, 5vw, 3.5rem);

  /* Spacing */
  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;

  /* Layout */
  --container-max: 1200px;
  --container-pad: clamp(1rem, 4vw, 2rem);
  --navbar-h: 72px;

  /* Shadows */
  --shadow-sm:   0 1px 3px rgba(0,0,0,0.08);
  --shadow-md:   0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg:   0 8px 40px rgba(0,0,0,0.12);
  --shadow-card: 0 4px 24px rgba(44,62,80,0.09);

  /* Border radii */
  --r-sm:   6px;
  --r-md:   12px;
  --r-lg:   20px;
  --r-xl:   28px;
  --r-full: 9999px;

  /* Transitions */
  --t-fast: 150ms ease;
  --t-base: 250ms ease;
  --t-slow: 400ms ease;
}

/* ======================== RESET & BASE ======================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: var(--fs-base); }

/* ======================== TYPOGRAPHY ======================== */
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.2; color: var(--color-secondary); }
h1 { font-size: var(--fs-hero); font-weight: 800; }
h2 { font-size: var(--fs-4xl); font-weight: 700; }
h3 { font-size: var(--fs-xl); font-weight: 700; }
h4 { font-size: var(--fs-lg); font-weight: 600; }

.text--accent { color: var(--color-primary); }

/* ======================== LAYOUT UTILITIES ======================== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.section { padding: var(--sp-20) 0; }
.section--alt { background: var(--color-bg); }

.section__header { text-align: center; margin-bottom: var(--sp-12); }
.section__label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: rgba(232,93,69,0.1);
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--r-full);
  margin-bottom: var(--sp-3);
}
.section__title { margin-bottom: var(--sp-4); }
.section__subtitle { color: var(--color-text-muted); font-size: var(--fs-md); max-width: 620px; margin: 0 auto; }

/* ======================== BUTTONS ======================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 0.75rem 1.75rem;
  border-radius: var(--r-full);
  font-family: var(--font-heading);
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: all var(--t-base);
  white-space: nowrap;
  border: 2px solid transparent;
  text-decoration: none;
}
.btn--primary {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
  box-shadow: 0 4px 16px rgba(232,93,69,0.35);
}
.btn--primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  box-shadow: 0 6px 24px rgba(232,93,69,0.45);
  transform: translateY(-2px);
}
.btn--outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn--outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
}
.btn--lg { padding: 1rem 2.25rem; font-size: var(--fs-base); }
.btn--full { width: 100%; justify-content: center; }

/* ======================== NAVBAR ======================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--navbar-h);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow var(--t-base), border-color var(--t-base);
}
.navbar--scrolled {
  box-shadow: var(--shadow-md);
  border-color: var(--color-border);
}
.navbar__inner {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
  height: 100%;
}
.navbar__logo { flex-shrink: 0; }
.navbar__logo img { height: 46px; width: auto; object-fit: contain; }

.navbar__links {
  display: none;
  gap: var(--sp-6);
  align-items: center;
}
.navbar__links li { display: flex; }
.nav-link {
  font-family: var(--font-heading);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--color-secondary);
  padding: var(--sp-2) var(--sp-1);
  position: relative;
  transition: color var(--t-fast);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 2px;
  background: var(--color-primary);
  transform: scaleX(0);
  transition: transform var(--t-base);
  border-radius: var(--r-full);
}
.nav-link:hover { color: var(--color-primary); }
.nav-link:hover::after, .nav-link--active::after { transform: scaleX(1); }
.nav-link--active { color: var(--color-primary); }

.navbar__cta {
  display: none;
  margin-left: auto;
  flex-shrink: 0;
  animation: pulse-ring 2.5s ease-out infinite;
}

.navbar__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: var(--sp-2);
  margin-left: auto;
}
.navbar__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-secondary);
  border-radius: var(--r-full);
  transition: all var(--t-base);
}
.navbar__hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.navbar__hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.navbar__links.is-open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: var(--navbar-h); left: 0; right: 0;
  background: var(--color-white);
  padding: var(--sp-6) var(--container-pad) var(--sp-8);
  box-shadow: var(--shadow-lg);
  gap: 0;
  align-items: flex-start;
  border-top: 1px solid var(--color-border);
  animation: slideDown 0.25s ease;
}
.navbar__links.is-open li { width: 100%; border-bottom: 1px solid var(--color-border); }
.navbar__links.is-open .nav-link { display: block; padding: var(--sp-4) 0; font-size: var(--fs-base); }
.navbar__links.is-open .navbar__mobile-cta { margin-top: var(--sp-4); }

/* ======================== HERO ======================== */
.hero {
  padding-top: calc(var(--navbar-h) + var(--sp-16));
  padding-bottom: var(--sp-20);
  background: linear-gradient(135deg, #fff 60%, rgba(232,93,69,0.05) 100%);
  overflow: hidden;
}
.hero__inner {
  display: grid;
  gap: var(--sp-12);
  align-items: center;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: rgba(247,147,30,0.12);
  color: var(--color-accent-dark);
  font-family: var(--font-heading);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--r-full);
  margin-bottom: var(--sp-4);
}
.hero__badge i { color: var(--color-accent); }
.hero__headline {
  color: var(--color-secondary);
  margin-bottom: var(--sp-4);
}
.hero__subtext {
  color: var(--color-text-muted);
  font-size: var(--fs-md);
  max-width: 520px;
  margin-bottom: var(--sp-6);
}
.hero__promo {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  color: var(--color-white);
  padding: var(--sp-3) var(--sp-6);
  border-radius: var(--r-full);
  font-size: var(--fs-sm);
  margin-bottom: var(--sp-6);
  animation: shimmer 3s linear infinite;
  background-size: 200% auto;
}
.hero__ctas {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
  margin-bottom: var(--sp-6);
}
.hero__contact-quick {
  display: flex;
  gap: var(--sp-6);
}
.hero__quick-link {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-heading);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--color-secondary);
  transition: color var(--t-fast);
}
.hero__quick-link:hover { color: var(--color-primary); }
.hero__quick-link .fa-whatsapp { color: #25D366; }

.hero__image { position: relative; }
.hero__image-wrap { position: relative; display: inline-block; }
.hero__image-wrap img {
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  animation: float 5s ease-in-out infinite;
  width: 100%;
  max-width: 560px;
  object-fit: cover;
}
.hero__image-badge {
  position: absolute;
  bottom: -1rem;
  left: -1rem;
  background: var(--color-white);
  border-radius: var(--r-lg);
  padding: var(--sp-3) var(--sp-4);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-family: var(--font-heading);
  font-size: var(--fs-xs);
  font-weight: 700;
  line-height: 1.4;
}
.hero__image-badge i { font-size: 1.5rem; color: var(--color-primary); }

/* ======================== TRUST BAR ======================== */
.trust-bar {
  background: var(--color-secondary);
  padding: var(--sp-10) 0;
}
.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-8);
  text-align: center;
}
.trust-bar__item { color: var(--color-white); }
.trust-bar__number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--color-primary-light);
  line-height: 1;
  margin-bottom: var(--sp-2);
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}
.trust-bar__suffix { font-size: 1.5rem; }
.trust-bar__item p {
  font-size: var(--fs-sm);
  font-family: var(--font-heading);
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ======================== SERVICES ======================== */
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--sp-6);
}
.service-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
  transition: transform var(--t-slow), box-shadow var(--t-slow), border-color var(--t-slow);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(232,93,69,0.2);
}
.service-card__icon {
  width: 60px; height: 60px;
  background: rgba(232,93,69,0.1);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-bottom: var(--sp-5);
  transition: background var(--t-base);
}
.service-card:hover .service-card__icon {
  background: var(--color-primary);
  color: var(--color-white);
}
.service-card h3 { margin-bottom: var(--sp-3); }
.service-card p { color: var(--color-text-muted); font-size: var(--fs-sm); margin-bottom: var(--sp-5); }
.service-card__link {
  font-family: var(--font-heading);
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  transition: gap var(--t-fast);
}
.service-card__link:hover { gap: var(--sp-3); }

/* ======================== WHY CHOOSE US ======================== */
.why-us__inner {
  display: grid;
  gap: var(--sp-16);
  align-items: center;
}
.why-us__img-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}
.why-us__img-wrap img {
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
}
.why-us__img-badge {
  position: absolute;
  top: -1rem;
  right: -1rem;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: var(--r-lg);
  padding: var(--sp-3) var(--sp-4);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-family: var(--font-heading);
  font-size: var(--fs-xs);
  font-weight: 700;
  line-height: 1.4;
  box-shadow: var(--shadow-md);
}
.why-us__img-badge i { font-size: 1.4rem; }
.why-us__intro {
  color: var(--color-text-muted);
  font-size: var(--fs-md);
  margin-bottom: var(--sp-8);
}
.why-us__features { display: flex; flex-direction: column; gap: var(--sp-6); }
.feature-row {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
}
.feature-row__icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: rgba(232,93,69,0.1);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--color-primary);
}
.feature-row__text h4 { margin-bottom: var(--sp-1); }
.feature-row__text p { color: var(--color-text-muted); font-size: var(--fs-sm); }

/* ======================== ABOUT ======================== */
.about__inner {
  display: grid;
  gap: var(--sp-16);
  align-items: center;
}
.about__content h2 { margin-bottom: var(--sp-4); }
.about__content p { color: var(--color-text-muted); margin-bottom: var(--sp-4); }
.about__highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3);
  margin: var(--sp-8) 0;
}
.about__highlight {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-family: var(--font-heading);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--color-secondary);
}
.about__highlight i { color: var(--color-primary); font-size: 1.1rem; }
.about__image-frame {
  position: relative;
  display: inline-block;
  width: 100%;
}
.about__image-placeholder {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, rgba(232,93,69,0.1), rgba(44,62,80,0.05));
  padding: var(--sp-12);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about__image-placeholder img { max-width: 240px; margin: 0 auto; }
.about__experience-badge {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background: var(--color-secondary);
  color: var(--color-white);
  border-radius: var(--r-lg);
  padding: var(--sp-4) var(--sp-6);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.about__exp-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-primary-light);
  line-height: 1;
}
.about__exp-text {
  font-size: var(--fs-xs);
  font-family: var(--font-heading);
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  line-height: 1.3;
}

/* ======================== HEARING AIDS ======================== */
.hearing-aids__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--sp-6);
  margin-bottom: var(--sp-6);
}
.ha-card {
  background: var(--color-white);
  border: 2px solid var(--color-border);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  text-align: center;
  position: relative;
  transition: transform var(--t-slow), box-shadow var(--t-slow);
}
.ha-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.ha-card--featured {
  border-color: var(--color-primary);
  background: linear-gradient(180deg, rgba(232,93,69,0.04) 0%, #fff 100%);
  transform: scale(1.02);
}
.ha-card--featured:hover { transform: scale(1.02) translateY(-6px); }
.ha-card__popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: var(--r-full);
}
.ha-card__tier {
  font-family: var(--font-heading);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--sp-4);
}
.ha-card__icon {
  font-size: 2.5rem;
  color: var(--color-primary);
  margin-bottom: var(--sp-4);
}
.ha-card__name { margin-bottom: var(--sp-3); }
.ha-card__desc { color: var(--color-text-muted); font-size: var(--fs-sm); margin-bottom: var(--sp-6); }
.ha-card__features {
  text-align: left;
  margin-bottom: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.ha-card__features li {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--fs-sm);
  color: var(--color-text);
}
.ha-card__features .fa-check { color: var(--color-primary); font-size: 0.75rem; flex-shrink: 0; }
.ha-card__price {
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  font-weight: 800;
  color: var(--color-secondary);
  margin-bottom: var(--sp-6);
}
.ha-card--featured .ha-card__price { color: var(--color-primary); }
.hearing-aids__note {
  text-align: center;
  color: var(--color-text-muted);
  font-size: var(--fs-sm);
  background: rgba(232,93,69,0.06);
  border: 1px solid rgba(232,93,69,0.15);
  border-radius: var(--r-md);
  padding: var(--sp-4) var(--sp-6);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
}
.hearing-aids__note i { color: var(--color-primary); flex-shrink: 0; }

/* ======================== TESTIMONIALS ======================== */
.testimonials__carousel {
  position: relative;
  overflow: hidden;
}
.testimonials__track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.testimonial-card {
  min-width: 100%;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--r-xl);
  padding: var(--sp-10);
  box-shadow: var(--shadow-card);
}
.testimonial-card__stars {
  display: flex;
  gap: 4px;
  margin-bottom: var(--sp-5);
  color: #FFB800;
  font-size: 1.1rem;
}
.testimonial-card blockquote {
  font-size: var(--fs-md);
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: var(--sp-6);
  quotes: "\201C" "\201D";
  position: relative;
  padding-left: var(--sp-6);
}
.testimonial-card blockquote::before {
  content: open-quote;
  position: absolute;
  left: 0;
  top: -0.5rem;
  font-size: 3rem;
  color: var(--color-primary);
  line-height: 1;
  font-family: Georgia, serif;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}
.testimonial-card__avatar {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-white);
  flex-shrink: 0;
}
.testimonial-card__author strong { display: block; font-family: var(--font-heading); color: var(--color-secondary); }
.testimonial-card__author span { font-size: var(--fs-sm); color: var(--color-text-muted); }

.testimonials__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  margin-top: var(--sp-8);
}
.carousel__btn {
  width: 44px; height: 44px;
  background: var(--color-white);
  border: 2px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-secondary);
  transition: all var(--t-base);
}
.carousel__btn:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}
.carousel__dots { display: flex; gap: var(--sp-2); }
.carousel__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--color-border);
  transition: all var(--t-base);
  border: none;
}
.carousel__dot--active {
  background: var(--color-primary);
  width: 28px;
  border-radius: var(--r-full);
}

/* ======================== APPOINTMENT FORM ======================== */
.appointment__inner {
  display: grid;
  gap: var(--sp-12);
  align-items: start;
}
.appointment__info { display: flex; flex-direction: column; gap: var(--sp-6); }
.appointment__info h3 {
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: var(--sp-2);
}
.appt-info-item {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
}
.appt-info-item i {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(232,93,69,0.1);
  color: var(--color-primary);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.appt-info-item div strong { display: block; font-family: var(--font-heading); font-size: var(--fs-sm); margin-bottom: 2px; color: var(--color-secondary); }
.appt-info-item div a, .appt-info-item div span { font-size: var(--fs-sm); color: var(--color-text-muted); }
.appt-info-item div a:hover { color: var(--color-primary); }
.appt-offer { color: var(--color-primary) !important; font-weight: 700 !important; font-family: var(--font-heading); }

/* Form */
.appointment__form {
  background: var(--color-white);
  border-radius: var(--r-xl);
  padding: var(--sp-10);
  box-shadow: var(--shadow-lg);
}
.form__row {
  display: grid;
  gap: var(--sp-4);
  margin-bottom: var(--sp-4);
}
.form__group { display: flex; flex-direction: column; gap: var(--sp-2); }
.form__group--full { margin-bottom: var(--sp-4); }
label {
  font-family: var(--font-heading);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--color-secondary);
}
.required { color: var(--color-primary); }
input, select, textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--r-md);
  color: var(--color-text);
  background: var(--color-white);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(232,93,69,0.12);
}
textarea { resize: vertical; min-height: 90px; }
.form__group--error input,
.form__group--error select,
.form__group--error textarea {
  border-color: #e53e3e;
}
.form__error {
  font-size: var(--fs-xs);
  color: #e53e3e;
  font-family: var(--font-heading);
  font-weight: 600;
  min-height: 1rem;
}
.form__disclaimer {
  text-align: center;
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  margin-top: var(--sp-3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
}
.form__disclaimer i { color: var(--color-primary); }
.form__success {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  background: rgba(72,187,120,0.1);
  border: 1.5px solid rgba(72,187,120,0.3);
  border-radius: var(--r-md);
  padding: var(--sp-5);
  margin-top: var(--sp-4);
}
.form__success i { font-size: 1.5rem; color: #48bb78; flex-shrink: 0; margin-top: 2px; }
.form__success strong { display: block; color: #276749; font-family: var(--font-heading); margin-bottom: var(--sp-1); }
.form__success p { font-size: var(--fs-sm); color: #276749; }
.form--prefilled { animation: form-flash 0.6s ease; }

/* ======================== CONTACT ======================== */
.contact__inner {
  display: grid;
  gap: var(--sp-12);
  align-items: start;
}
.contact__details { display: flex; flex-direction: column; gap: var(--sp-5); margin: var(--sp-6) 0; }
.contact__detail-item { display: flex; gap: var(--sp-4); align-items: flex-start; }
.contact__detail-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(232,93,69,0.1);
  color: var(--color-primary);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.contact__detail-item strong { display: block; font-family: var(--font-heading); font-size: var(--fs-sm); margin-bottom: 2px; color: var(--color-secondary); }
.contact__detail-item p { font-size: var(--fs-sm); color: var(--color-text-muted); }
.contact__detail-item a:hover { color: var(--color-primary); }
.contact__hours { margin-bottom: var(--sp-6); }
.contact__hours h4 {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-4);
  color: var(--color-secondary);
}
.contact__hours h4 i { color: var(--color-primary); }
.hours-table { width: 100%; border-collapse: collapse; font-size: var(--fs-sm); }
.hours-table td { padding: var(--sp-2) 0; }
.hours-table td:first-child { color: var(--color-text-muted); padding-right: var(--sp-6); }
.hours-table td:last-child { font-family: var(--font-heading); font-weight: 600; color: var(--color-secondary); }
.hours-table tr { border-bottom: 1px solid var(--color-border); }
.contact__social { display: flex; gap: var(--sp-3); }
.social-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1rem;
  transition: transform var(--t-base), opacity var(--t-base);
}
.social-btn:hover { transform: translateY(-3px); opacity: 0.9; }
.social-btn--facebook  { background: #1877F2; }
.social-btn--instagram { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.social-btn--youtube   { background: #FF0000; }
.social-btn--whatsapp  { background: #25D366; }
.contact__map iframe { box-shadow: var(--shadow-lg); }

/* ======================== FOOTER ======================== */
.footer { background: var(--color-secondary); color: rgba(255,255,255,0.8); padding: var(--sp-16) 0 0; }
.footer__inner { display: grid; gap: var(--sp-10); padding-bottom: var(--sp-12); }
.footer__brand p { font-size: var(--fs-sm); margin: var(--sp-4) 0; max-width: 280px; }
.footer__brand img {
  background: var(--color-white);
  border-radius: var(--r-md);
  padding: 8px 14px;
  display: block;
  max-width: 160px;
}
.footer__social { display: flex; gap: var(--sp-3); }
.footer__social a {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: all var(--t-base);
}
.footer__social a:hover { background: var(--color-primary); border-color: var(--color-primary); color: var(--color-white); }
.footer__col h4 {
  font-family: var(--font-heading);
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: var(--sp-5);
}
.footer__col ul { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer__col a { font-size: var(--fs-sm); transition: color var(--t-fast); }
.footer__col a:hover { color: var(--color-primary-light); }
.footer__contact-info { display: flex; flex-direction: column; gap: var(--sp-3); font-size: var(--fs-sm); }
.footer__contact-info p { display: flex; align-items: flex-start; gap: var(--sp-3); }
.footer__contact-info i { color: var(--color-primary); flex-shrink: 0; margin-top: 3px; }
.footer__contact-info a:hover { color: var(--color-primary-light); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: var(--sp-6) 0;
}
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-4);
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.5);
}

/* ======================== BACK TO TOP ======================== */
.back-to-top {
  position: fixed;
  bottom: 5.5rem;
  right: 1.5rem;
  width: 44px; height: 44px;
  background: var(--color-secondary);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  z-index: 990;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity var(--t-base), transform var(--t-base);
  pointer-events: none;
}
.back-to-top.visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.back-to-top:hover { background: var(--color-primary); }

/* ======================== COPILOT WIDGET ======================== */
.copilot {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
}
.copilot__toggle {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 20px rgba(232,93,69,0.5);
  transition: transform var(--t-base), box-shadow var(--t-base);
  position: relative;
}
.copilot__toggle:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(232,93,69,0.6); }
.copilot__badge {
  position: absolute;
  top: -4px; right: -4px;
  background: var(--color-secondary);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 800;
  width: 20px; height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--color-white);
  animation: badge-pulse 1.5s ease-in-out infinite;
}
.copilot__panel {
  position: absolute;
  bottom: calc(100% + 12px);
  right: 0;
  width: 360px;
  background: var(--color-white);
  border-radius: var(--r-xl);
  box-shadow: 0 16px 60px rgba(44,62,80,0.2);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-height: 540px;
  animation: panel-slide-up 0.3s cubic-bezier(0.4,0,0.2,1);
}
.copilot__header {
  background: linear-gradient(135deg, var(--color-secondary), var(--color-secondary-light));
  padding: var(--sp-4) var(--sp-5);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.copilot__header-info { display: flex; align-items: center; gap: var(--sp-3); flex: 1; }
.copilot__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.3);
  flex-shrink: 0;
  background: rgba(255,255,255,0.1);
}
.copilot__avatar img { width: 100%; height: 100%; object-fit: cover; }
.copilot__name { font-family: var(--font-heading); font-size: var(--fs-sm); font-weight: 700; color: var(--color-white); }
.copilot__status { font-size: var(--fs-xs); color: rgba(255,255,255,0.7); display: flex; align-items: center; gap: var(--sp-2); }
.copilot__dot {
  width: 8px; height: 8px;
  background: #48bb78;
  border-radius: 50%;
  animation: copilot-pulse 2s ease-in-out infinite;
}
.copilot__close-btn {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t-fast);
  flex-shrink: 0;
}
.copilot__close-btn:hover { background: rgba(255,255,255,0.15); color: var(--color-white); }
.copilot__messages {
  flex: 1;
  overflow-y: auto;
  padding: var(--sp-4);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  scroll-behavior: smooth;
  min-height: 200px;
  max-height: 300px;
}
.copilot__messages::-webkit-scrollbar { width: 4px; }
.copilot__messages::-webkit-scrollbar-track { background: transparent; }
.copilot__messages::-webkit-scrollbar-thumb { background: var(--color-border); border-radius: 2px; }

/* Message bubbles */
.msg { max-width: 85%; display: flex; flex-direction: column; gap: 4px; animation: msg-in 0.25s ease; }
.msg--bot { align-self: flex-start; }
.msg--user { align-self: flex-end; align-items: flex-end; }
.msg__bubble {
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--r-lg);
  font-size: var(--fs-sm);
  line-height: 1.6;
}
.msg--bot .msg__bubble {
  background: var(--color-bg);
  color: var(--color-text);
  border-bottom-left-radius: 4px;
}
.msg--user .msg__bubble {
  background: var(--color-primary);
  color: var(--color-white);
  border-bottom-right-radius: 4px;
}
.msg__time {
  font-size: 0.65rem;
  color: var(--color-text-muted);
  padding: 0 var(--sp-2);
}

/* Typing indicator */
.typing-indicator {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 12px 16px;
  background: var(--color-bg);
  border-radius: var(--r-lg);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
  width: fit-content;
}
.typing-indicator span {
  width: 7px; height: 7px;
  background: var(--color-text-muted);
  border-radius: 50%;
  animation: bounce-dot 1.4s ease-in-out infinite;
}
.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

/* Quick replies */
.copilot__quick-replies {
  padding: 0 var(--sp-4) var(--sp-3);
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}
.quick-reply {
  background: rgba(232,93,69,0.08);
  color: var(--color-primary);
  border: 1px solid rgba(232,93,69,0.25);
  border-radius: var(--r-full);
  padding: 6px 14px;
  font-family: var(--font-heading);
  font-size: var(--fs-xs);
  font-weight: 700;
  cursor: pointer;
  transition: all var(--t-fast);
  white-space: nowrap;
}
.quick-reply:hover { background: var(--color-primary); color: var(--color-white); border-color: var(--color-primary); }

/* Copilot input */
.copilot__input-row {
  display: flex;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-4);
  border-top: 1px solid var(--color-border);
  background: var(--color-white);
}
#copilotInput {
  flex: 1;
  border: 1.5px solid var(--color-border);
  border-radius: var(--r-full);
  padding: 8px 14px;
  font-size: var(--fs-sm);
  transition: border-color var(--t-fast);
  outline: none;
}
#copilotInput:focus { border-color: var(--color-primary); }
#copilotSend {
  width: 38px; height: 38px;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--t-fast);
}
#copilotSend:hover { background: var(--color-primary-dark); }

/* ======================== SCROLL ANIMATIONS ======================== */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-up    { transform: translateY(40px); }
.reveal-left  { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

.revealed {
  opacity: 1 !important;
  transform: none !important;
}

/* ======================== ANIMATIONS ======================== */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}
@keyframes shimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}
@keyframes pulse-ring {
  0%   { box-shadow: 0 4px 16px rgba(232,93,69,0.35), 0 0 0 0 rgba(232,93,69,0.45); }
  70%  { box-shadow: 0 4px 16px rgba(232,93,69,0.35), 0 0 0 10px rgba(232,93,69,0); }
  100% { box-shadow: 0 4px 16px rgba(232,93,69,0.35), 0 0 0 0 rgba(232,93,69,0); }
}
@keyframes badge-pulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.15); }
}
@keyframes copilot-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}
@keyframes bounce-dot {
  0%, 80%, 100% { transform: scale(0.6); opacity: 0.6; }
  40%           { transform: scale(1); opacity: 1; }
}
@keyframes panel-slide-up {
  from { opacity: 0; transform: translateY(12px) scale(0.97); }
  to   { opacity: 1; transform: none; }
}
@keyframes msg-in {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: none; }
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: none; }
}
@keyframes form-flash {
  0%   { box-shadow: 0 0 0 0 rgba(232,93,69,0.6); }
  50%  { box-shadow: 0 0 0 12px rgba(232,93,69,0.2); }
  100% { box-shadow: 0 0 0 0 rgba(232,93,69,0); }
}

/* ======================== RESPONSIVE ======================== */

/* 640px+ */
@media (min-width: 640px) {
  .trust-bar__grid { grid-template-columns: repeat(4, 1fr); gap: var(--sp-4); }
  .form__row { grid-template-columns: 1fr 1fr; }
  .about__highlights { gap: var(--sp-4); }
}

/* 768px+ */
@media (min-width: 768px) {
  .footer__inner { grid-template-columns: 2fr 1fr 1fr 1.5fr; }
  .contact__inner { grid-template-columns: 1fr 1fr; }
  .appointment__inner { grid-template-columns: 340px 1fr; }
}

/* 1024px+ */
@media (min-width: 1024px) {
  .navbar__links { display: flex; margin-right: var(--sp-4); }
  .navbar__cta { display: inline-flex; }
  .navbar__hamburger { display: none; }
  .hero__inner { grid-template-columns: 1fr 1fr; }
  .why-us__inner { grid-template-columns: 1fr 1fr; }
  .about__inner { grid-template-columns: 1fr 1fr; }
  .clinic-gallery__grid { grid-template-columns: repeat(4, 1fr); }
  .clinic-gallery__img { height: 200px; }
  .military-trust__inner { flex-wrap: nowrap; }
}

/* ======================== MILITARY TRUST BANNER ======================== */
.military-trust {
  background: linear-gradient(135deg, var(--color-secondary) 0%, #1a2a38 100%);
  padding: var(--sp-10) 0;
  position: relative;
  overflow: hidden;
}
.military-trust::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,0.015) 40px,
    rgba(255,255,255,0.015) 80px
  );
}
.military-trust__inner {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
  flex-wrap: wrap;
  position: relative;
}
.military-trust__badge {
  width: 72px; height: 72px; flex-shrink: 0;
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.india-flag-emoji { font-size: 2.4rem; line-height: 1; }
.military-trust__content { flex: 1; min-width: 260px; }
.military-trust__content h3 {
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--sp-3);
}
.military-trust__content p {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
}
.military-trust__content strong { color: var(--color-accent); }
.military-trust__logos {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  flex-shrink: 0;
}
.military-trust__logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  text-align: center;
  color: var(--color-white);
}
.military-trust__logo-item i { font-size: 2rem; color: var(--color-accent); }
.military-trust__logo-item span { font-family: var(--font-heading); font-size: var(--fs-sm); font-weight: 700; line-height: 1.3; }
.military-trust__logo-item small { font-size: var(--fs-xs); color: rgba(255,255,255,0.6); font-weight: 400; }
.military-trust__divider { width: 1px; height: 50px; background: rgba(255,255,255,0.2); }

/* ======================== HA CARD IMAGES ======================== */
.ha-brands {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: var(--sp-8);
  font-family: var(--font-heading);
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.ha-brand {
  background: var(--color-white);
  border: 1.5px solid var(--color-border);
  border-radius: var(--r-full);
  padding: 4px 14px;
  color: var(--color-secondary);
  font-size: var(--fs-xs);
  font-weight: 700;
  transition: all var(--t-fast);
}
.ha-brand:hover { border-color: var(--color-primary); color: var(--color-primary); }

.ha-card__img {
  width: 100%;
  height: 140px;
  background: linear-gradient(135deg, #f0f4f8 0%, #e2e8f0 100%);
  border-radius: var(--r-md);
  margin-bottom: var(--sp-5);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ha-card__img--featured {
  background: linear-gradient(135deg, rgba(232,93,69,0.08) 0%, rgba(247,147,30,0.08) 100%);
}
.ha-card__img-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
}
.ha-card__img-inner i {
  font-size: 3.5rem;
  color: var(--color-secondary);
  opacity: 0.18;
}
.ha-card--featured .ha-card__img-inner i { color: var(--color-primary); opacity: 0.25; }
.ha-card__img-label {
  font-family: var(--font-heading);
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
}
.ha-card__img-tag {
  position: absolute;
  top: 8px; right: 8px;
  background: var(--color-secondary);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--r-full);
}
.ha-card--featured .ha-card__img-tag { background: var(--color-primary); }

/* ======================== CLINIC GALLERY ======================== */
.clinic-gallery { margin-top: var(--sp-12); }
.clinic-gallery__title {
  text-align: center;
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: var(--sp-6);
}
.clinic-gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-4);
  margin-bottom: var(--sp-4);
}
.clinic-gallery__img {
  height: 180px;
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.clinic-gallery__img--1 { background: linear-gradient(135deg, #1a2a38 0%, #2C3E50 100%); }
.clinic-gallery__img--2 { background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%); }
.clinic-gallery__img--3 { background: linear-gradient(135deg, #742a2a 0%, #E85D45 100%); }
.clinic-gallery__img--4 { background: linear-gradient(135deg, #744210 0%, #F7931E 100%); }
.clinic-gallery__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  padding: var(--sp-4);
  text-align: center;
  transition: background var(--t-base);
}
.clinic-gallery__img:hover .clinic-gallery__overlay { background: rgba(0,0,0,0.15); }
.clinic-gallery__overlay i {
  font-size: 2.5rem;
  color: rgba(255,255,255,0.5);
}
.clinic-gallery__overlay span {
  font-family: var(--font-heading);
  font-size: var(--fs-sm);
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
.clinic-gallery__note {
  text-align: center;
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
}

/* About highlight gold variant */
.about__highlight--gold i { color: var(--color-accent); }
.about__highlight--gold span { color: var(--color-accent-dark); font-weight: 700; }

/* ======================== WHATSAPP REVIEWS ======================== */
/* ======================== GMB REVIEWS ======================== */
.gmb-reviews { max-width: 1100px; margin: 0 auto; }

/* Summary panel */
.gmb-summary {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
  background: var(--color-white);
  border: 1.5px solid var(--color-border);
  border-radius: var(--r-xl);
  padding: var(--sp-6) var(--sp-8);
  margin-bottom: var(--sp-8);
  flex-wrap: wrap;
  box-shadow: 0 2px 12px rgba(44,62,80,0.06);
}
.gmb-summary__left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-1);
  min-width: 130px;
}
.gmb-summary__logo-row {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  margin-bottom: var(--sp-2);
}
.gmb-summary__platform {
  font-family: var(--font-heading);
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--color-text-muted);
}
.gmb-summary__score {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--color-secondary);
  line-height: 1;
}
.gmb-summary__stars { color: #fbbc04; font-size: 1.3rem; letter-spacing: 2px; }
.gmb-summary__count { font-size: var(--fs-xs); color: var(--color-text-muted); margin: 0; }

.gmb-summary__bars {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-width: 180px;
}
.gmb-bar { display: flex; align-items: center; gap: var(--sp-2); }
.gmb-bar__label {
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--color-text-muted);
  width: 10px;
  text-align: right;
  flex-shrink: 0;
}
.gmb-bar__track {
  flex: 1;
  height: 8px;
  background: #f1f3f4;
  border-radius: 4px;
  overflow: hidden;
}
.gmb-bar__fill {
  height: 100%;
  background: #fbbc04;
  border-radius: 4px;
}

/* Reviews grid */
.gmb-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
}
@media (min-width: 640px) {
  .gmb-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .gmb-grid { grid-template-columns: repeat(3, 1fr); }
}

.gmb-card {
  background: var(--color-white);
  border: 1.5px solid var(--color-border);
  border-radius: var(--r-lg);
  padding: var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  transition: box-shadow var(--t-base), transform var(--t-base);
}
.gmb-card:hover {
  box-shadow: 0 8px 30px rgba(44,62,80,0.12);
  transform: translateY(-2px);
}
.gmb-card__header {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
}
.gmb-card__avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-white);
  flex-shrink: 0;
}
.gmb-card__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.gmb-card__name {
  font-family: var(--font-heading);
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--color-secondary);
  margin: 0;
  line-height: 1.3;
}
.gmb-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.68rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: #5f6368;
}
.gmb-card__badge i { font-size: 0.65rem; color: #70757a; }
.gmb-card__badge--army { color: #b71c1c; }
.gmb-card__badge--army i { color: #b71c1c; }
.gmb-card__date { font-size: 0.72rem; color: #70757a; margin: 0; }
.gmb-card__g-logo { flex-shrink: 0; opacity: 0.8; margin-top: 2px; }
.gmb-card__stars { color: #fbbc04; font-size: 1rem; letter-spacing: 1px; }
.gmb-card__text {
  font-size: var(--fs-sm);
  color: var(--color-text);
  line-height: 1.65;
  margin: 0;
}

.testimonials__cta {
  text-align: center;
  margin-top: var(--sp-8);
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
}
.testimonials__cta a {
  color: #4285F4;
  font-family: var(--font-heading);
  font-weight: 700;
  text-decoration: underline;
}

/* ======================== REDUCED MOTION ======================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal-up, .reveal-left, .reveal-right {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ======================== MOBILE COPILOT ======================== */
@media (max-width: 480px) {
  .copilot__panel {
    position: fixed;
    inset: 0;
    width: 100vw;
    max-height: 100vh;
    border-radius: 0;
    bottom: 0;
    right: 0;
    animation: slideDown 0.3s ease;
  }
  .copilot__messages { max-height: none; flex: 1; }
}
