/* ==========================================================
   Shankar's Tuition Academy — Premium Light Theme
   Playfair Display + DM Sans · Navy + White + Gold accents
   ========================================================== */

/* ---------- Design Tokens ---------- */
:root {
  --navy:       #0f172a;
  --primary:    #1e3a8a;
  --blue:       #2563eb;
  --teal:       #0d9488;
  --gold:       #d97706;
  --gold-light: #fef3c7;

  --bg:         #f7f9fc;
  --bg-alt:     #ffffff;
  --surface:    #ffffff;
  --text:       #334155;
  --heading:    #0f172a;
  --muted:      #64748b;
  --border:     #e2e8f0;
  --blue-tint:  #dbeafe;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', 'Inter', sans-serif;

  --r-sm:  10px;
  --r-md:  16px;
  --r-lg:  24px;
  --r-xl:  32px;

  --shadow-sm:   0 2px 8px rgba(15,23,42,.04);
  --shadow-md:   0 8px 30px rgba(15,23,42,.07);
  --shadow-lg:   0 20px 50px rgba(15,23,42,.10);
  --shadow-card: 0 4px 20px rgba(30,58,138,.06);

  --ease: cubic-bezier(.4,0,.2,1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  background-color: var(--bg);
  background-image: 
    radial-gradient(at 0% 0%, rgba(37, 99, 235, 0.05) 0px, transparent 40%),
    radial-gradient(at 100% 100%, rgba(13, 148, 136, 0.05) 0px, transparent 40%),
    radial-gradient(rgba(30, 58, 138, 0.06) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 28px 28px;
  background-attachment: fixed;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--blue); color: #fff; }

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

/* ---------- Grain Texture Overlay ---------- */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}

/* ==========================================================
   HEADER — Sticky, Glassy
   ========================================================== */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226,232,240,0.5);
  padding: 18px 0;
  transition: padding .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease);
}

#site-header.scrolled {
  padding: 10px 0;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 4px 30px rgba(15,23,42,.06);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  letter-spacing: -.3px;
}

nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

nav a {
  position: relative;
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  padding: 4px 0;
  transition: color .3s var(--ease);
}

nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 2px;
  background: var(--blue);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s var(--ease);
}

nav a:hover,
nav a.active { color: var(--blue); }

nav a:not(.nav-cta):hover::after,
nav a:not(.nav-cta).active::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Pill CTA in navbar */
.nav-cta {
  background: var(--blue);
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  transition: background .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
  box-shadow: 0 4px 14px rgba(37,99,235,.2);
}

.nav-cta:hover {
  background: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(30,58,138,.25);
}

/* ==========================================================
   TOP BACKGROUND WRAPPER
   ========================================================== */
.top-bg-wrapper {
  position: relative;
  overflow: hidden;
}

/* ==========================================================
   HERO
   ========================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 5% 100px;
}

/* Background image — higher intensity */
.hero-bg-img {
  position: absolute;
  inset: 0;
  background-image: url('../img/hero-bg.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 0;
}

.hero-bg-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(247,249,252,0.30) 0%,
    rgba(247,249,252,0.40) 40%,
    rgba(247,249,252,0.70) 100%
  );
}

/* Animated gradient mesh blobs */
.hero-mesh {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.mesh-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: meshDrift 12s ease-in-out infinite alternate;
}

.mesh-1 {
  width: 500px; height: 500px;
  background: rgba(37,99,235,0.12);
  top: -10%; left: -5%;
  animation-delay: 0s;
}

.mesh-2 {
  width: 400px; height: 400px;
  background: rgba(13,148,136,0.10);
  top: 30%; right: -10%;
  animation-delay: -4s;
  animation-duration: 14s;
}

.mesh-3 {
  width: 350px; height: 350px;
  background: rgba(217,119,6,0.08);
  bottom: -5%; left: 30%;
  animation-delay: -8s;
  animation-duration: 16s;
}

@keyframes meshDrift {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(40px, -30px) scale(1.08); }
  100% { transform: translate(-20px, 20px) scale(0.95); }
}



.hero-inner {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 820px;
}

/* Eyebrow badge */
.eyebrow-badge {
  display: inline-block;
  background: var(--gold-light);
  color: var(--gold);
  font-weight: 700;
  font-size: 13px;
  padding: 8px 22px;
  border-radius: 50px;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 28px;
  box-shadow: 0 2px 8px rgba(217,119,6,.1);
}

.hero h1,
.hero h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 64px);
  font-weight: 900;
  color: var(--heading);
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}

.hero p {
  font-size: 20px;
  color: var(--text);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* ==========================================================
   BUTTONS
   ========================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all .3s var(--ease);
}

.btn .material-symbols-outlined { font-size: 20px; }

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--primary));
  color: #fff;
  box-shadow: 0 8px 24px rgba(37,99,235,.25);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(37,99,235,.35);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  box-shadow: 0 8px 24px rgba(37,211,102,.25);
  width: 100%;
  justify-content: center;
}

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

/* ==========================================================
   SECTIONS
   ========================================================== */
section {
  padding: 120px 5%;
  position: relative;
  z-index: 2;
}



.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

h3 {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: var(--heading);
  text-align: center;
  margin-bottom: 64px;
  position: relative;
  letter-spacing: -.5px;
}

h3::after {
  content: "";
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 4px;
  background: var(--primary);
  border-radius: 4px;
}

h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 8px;
}

/* ==========================================================
   ABOUT
   ========================================================== */
.about-card {
  max-width: 860px;
  margin: 0 auto;
  background: var(--surface);
  border-radius: var(--r-xl);
  padding: 52px 56px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.about-card p {
  font-size: 18px;
  line-height: 1.75;
  margin-bottom: 32px;
  color: var(--text);
}

.about-card strong { color: var(--primary); }

.about-card h4 {
  margin-bottom: 18px;
  color: var(--primary);
}

.qual-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.qual-list li {
  background: var(--blue-tint);
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: 50px;
  transition: all .3s var(--ease);
}

.qual-list li:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

/* ==========================================================
   CARD GRID
   ========================================================== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.offer-grid {
  grid-template-columns: repeat(3, 1fr);
  max-width: 900px;
  margin: 0 auto;
}

.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 40px 28px 36px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: all .35s var(--ease);
  overflow: hidden;
}

/* Accent corner strip */
.card-accent {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  opacity: 0;
  transition: opacity .35s var(--ease);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(37,99,235,.15);
}

.card:hover .card-accent { opacity: 1; }

.card-icon {
  width: 60px; height: 60px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-tint);
  color: var(--blue);
  border-radius: 50%;
  transition: all .35s var(--ease);
}

.card-icon .material-symbols-outlined { font-size: 28px; }

.card:hover .card-icon {
  background: var(--blue);
  color: #fff;
  transform: scale(1.1) rotate(-6deg);
}

.card p {
  color: var(--muted);
  font-size: 15px;
}

/* Why cards */
.why-card { padding: 36px 24px; display: flex; flex-direction: column; align-items: center; }
.why-card h4 { margin-bottom: 16px; font-size: 18px; text-align: center; }

.offer-points {
  list-style: none;
  margin-top: 10px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.offer-points li {
  font-size: 14.5px;
  color: var(--muted);
  position: relative;
  padding-left: 22px;
  line-height: 1.6;
}

.offer-points li::before {
  content: '✦';
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--teal);
  font-size: 12px;
}
/* ==========================================================
   CONTACT
   ========================================================== */
.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 36px;
  align-items: start;
}

.contact-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-block {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 24px;
  text-decoration: none;
  color: inherit;
  transition: all .3s var(--ease);
  cursor: pointer;
}

a.contact-block:hover {
  border-color: rgba(37,99,235,.2);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.cb-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-tint);
  color: var(--blue);
  border-radius: 12px;
  transition: all .3s var(--ease);
}

.cb-icon .material-symbols-outlined { font-size: 24px; }

a.contact-block:hover .cb-icon {
  background: var(--blue);
  color: #fff;
}

.cb-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--muted);
  margin-bottom: 4px;
}

.cb-value {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: var(--heading);
  line-height: 1.5;
}

.address-block-card {
  grid-column: 1 / -1;
  cursor: default;
}

/* WhatsApp card */
.whatsapp-card {
  background: linear-gradient(135deg, #0f172a, var(--primary));
  border-radius: var(--r-lg);
  padding: 48px 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.whatsapp-card::before {
  content: "";
  position: absolute;
  top: -60%;
  right: -40%;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(37,211,102,.12) 0%, transparent 55%);
  pointer-events: none;
}

.wa-card-inner { position: relative; z-index: 2; }

.wa-icon-big {
  font-size: 48px;
  color: #25d366;
  margin-bottom: 16px;
  display: block;
}

.whatsapp-card h4 {
  color: #fff;
  font-size: 24px;
  margin-bottom: 12px;
}

.whatsapp-card p {
  color: rgba(255,255,255,.7);
  margin-bottom: 28px;
  font-size: 15px;
}

/* ==========================================================
   FOOTER
   ========================================================== */
footer {
  background: var(--navy);
  color: rgba(255,255,255,.6);
  padding: 64px 5% 40px;
  border-top: 3px solid var(--blue);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}

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

.footer-links a {
  color: rgba(255,255,255,.55);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color .3s var(--ease);
}

.footer-links a:hover { color: #fff; }

.footer-copy { font-size: 13px; }

/* ==========================================================
   FLOATING WHATSAPP FAB
   ========================================================== */
.fab-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 60px; height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37,211,102,.35);
  transition: all .3s var(--ease);
  text-decoration: none;
}

.fab-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(37,211,102,.45);
}

.fab-tooltip {
  position: absolute;
  right: 72px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--navy);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 8px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
  transform: translateY(-50%) translateX(8px);
}

.fab-tooltip::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -6px;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--navy);
}

.fab-whatsapp:hover .fab-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* ==========================================================
   SCROLL REVEAL
   ========================================================== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .8s cubic-bezier(.5,0,0,1), transform .8s cubic-bezier(.5,0,0,1);
  will-change: opacity, transform;
}

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

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .mesh-blob { animation: none; }
  .btn:hover,
  .card:hover { transform: none; }
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */
/* ---------- Hamburger Button (hidden on desktop) ---------- */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
  flex-direction: column;
  gap: 5px;
}

.hamburger-line {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--primary);
  border-radius: 3px;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}

.hamburger.active .hamburger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}
.hamburger.active .hamburger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ---------- 1024px ---------- */
@media (max-width: 1024px) {
  .contact-layout { grid-template-columns: 1fr; }
  .contact-blocks { grid-template-columns: 1fr 1fr; }
  .offer-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- 768px ---------- */
@media (max-width: 768px) {
  /* — Header & Nav — */
  .header-inner { flex-wrap: wrap; justify-content: space-between; }
  .hamburger { display: flex; }

  #main-nav {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 0;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--border);
    margin-top: 14px;
    border-radius: 0 0 var(--r-md) var(--r-md);
    overflow: hidden;
  }

  #main-nav.open { display: flex; }

  #main-nav a {
    padding: 14px 20px;
    border-bottom: 1px solid var(--border);
    text-align: center;
    font-size: 16px;
  }
  #main-nav a:last-child { border-bottom: none; }

  .nav-cta {
    display: block !important;
    margin: 10px 16px 14px;
    text-align: center;
    border-radius: 50px;
  }

  /* — Hero — */
  .hero { padding: 120px 5% 60px; min-height: auto; }
  .hero h2 { font-size: 32px; letter-spacing: -1px; }
  .hero p { font-size: 16px; margin-bottom: 28px; }

  .eyebrow-badge { font-size: 11px; padding: 7px 16px; margin-bottom: 20px; }

  .btn { padding: 14px 28px; font-size: 15px; }

  /* — Sections — */
  section { padding: 64px 5%; }
  h3 { font-size: 26px; margin-bottom: 40px; }

  /* — About — */
  .about-card { padding: 28px 20px; }
  .about-card p { font-size: 16px; }
  .qual-list { gap: 8px; }
  .qual-list li { font-size: 13px; padding: 8px 16px; }

  /* — Card Grids — */
  .card-grid { grid-template-columns: 1fr; }
  .offer-grid { grid-template-columns: 1fr !important; max-width: 100%; }

  /* — Timings — */
  .timings-grid { grid-template-columns: 1fr; }

  /* — Testimonials — */
  .testimonials-grid { grid-template-columns: 1fr; }
  .tcard { padding: 24px 20px; }

  /* — Contact — */
  .contact-layout { grid-template-columns: 1fr; }
  .contact-blocks { grid-template-columns: 1fr; }
  .cb-value { font-size: 14px; word-break: break-word; overflow-wrap: break-word; }
  .whatsapp-card { padding: 32px 20px; }
  .whatsapp-card h4 { font-size: 20px; }

  /* — Footer — */
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 16px 20px; }
  .footer-brand { font-size: 20px; }

  /* — FAB — */
  .fab-whatsapp { bottom: 18px; right: 18px; width: 50px; height: 50px; }
  .fab-tooltip { display: none; }
}

/* ---------- 480px (small phones) ---------- */
@media (max-width: 480px) {
  .hero h2 { font-size: 28px; }
  .hero p { font-size: 15px; }
  .brand { font-size: 18px; }
  h3 { font-size: 24px; margin-bottom: 36px; }
  .about-card { padding: 24px 16px; }
  .card { padding: 32px 20px 28px; }
  .contact-block { padding: 18px 14px; gap: 12px; }
  .cb-icon { width: 40px; height: 40px; }
  .cb-icon .material-symbols-outlined { font-size: 20px; }
  .timing-slot { padding: 12px 18px; }
  .section-desc { font-size: 14px; }
  .eyebrow-badge { font-size: 10.5px; padding: 6px 14px; letter-spacing: .3px; }
  .btn { padding: 13px 24px; font-size: 14px; width: 100%; justify-content: center; }
}



/* ==========================================================
   SECTION EYEBROW & DESCRIPTION — Shared pattern
   ========================================================== */
.section-eyebrow {
  display: block;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}

.section-desc {
  text-align: center;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  max-width: 520px;
  margin: -28px auto 52px;
}

/* ==========================================================
   TIMINGS SECTION
   ========================================================== */
.timings-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}

.timing-card {
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.timing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.timing-header {
  background: linear-gradient(135deg, var(--blue), var(--primary));
  padding: 18px 26px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
}

.timing-header .material-symbols-outlined {
  font-size: 22px;
  opacity: 0.85;
}

.timing-header-alt {
  background: linear-gradient(135deg, var(--navy), #1e3a8a);
}

.timing-day {
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.timing-body {
  padding: 8px 0;
}

.timing-slot {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 26px;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}

.timing-slot:last-child {
  border-bottom: none;
}

.timing-slot:hover {
  background: var(--blue-tint);
}

.timing-clock {
  color: var(--blue);
  font-size: 22px;
  flex-shrink: 0;
}

.slot-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}

.slot-time {
  display: block;
  font-weight: 600;
  font-size: 15px;
  color: var(--heading);
}

/* Flexible timing note card */
.timing-card-note {
  border: 1.5px dashed var(--border);
  background: var(--blue-tint);
}

.timing-card-note:hover {
  border-color: var(--blue);
}

.timing-note-inner {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 28px 26px;
}

.timing-note-inner .material-symbols-outlined {
  color: var(--blue);
  font-size: 26px;
  flex-shrink: 0;
  margin-top: 2px;
}

.timing-note-inner strong {
  display: block;
  font-size: 15px;
  color: var(--heading);
  margin-bottom: 6px;
}

.timing-note-inner p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* ==========================================================
   TESTIMONIALS SECTION
   ========================================================== */
.testimonials-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--primary) 50%, #0d4f8b 100%) !important;
  position: relative;
  overflow: hidden;
}

/* Subtle pattern overlay */
.testimonials-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 30px 30px;
  z-index: 0;
}

.testimonials-section > .section-inner {
  position: relative;
  z-index: 1;
}

.testimonials-eyebrow {
  color: rgba(147,197,253,1) !important;
}

.testimonials-title {
  color: #fff !important;
}

.testimonials-title::after {
  background: rgba(255,255,255,0.3) !important;
}

.testimonials-desc {
  color: rgba(255,255,255,0.55) !important;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.tcard {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--r-md);
  padding: 30px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease), border-color 0.3s, background 0.3s;
}

.tcard:hover {
  transform: translateY(-5px);
  border-color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.1);
}

/* Shimmer effect on hover */
.tcard::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -75%;
  width: 55%;
  height: 200%;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.08) 50%, transparent 100%);
  transform: skewX(-20deg);
  opacity: 0;
  transition: opacity 0.1s;
}

.tcard:hover::after {
  animation: tcard-shimmer 0.6s ease forwards;
  opacity: 1;
}

@keyframes tcard-shimmer {
  0%   { left: -75%; }
  100% { left: 130%; }
}

.tcard-quote {
  font-family: var(--font-display);
  font-size: 4.5rem;
  color: rgba(255,255,255,0.08);
  position: absolute;
  top: 6px;
  right: 18px;
  line-height: 1;
  pointer-events: none;
}

.tcard-text {
  color: rgba(255,255,255,0.72);
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.tcard-stars {
  color: #fbbf24;
  font-size: 1rem;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.tcard-author {
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
}

.tcard-grade {
  color: rgba(147,197,253,0.8);
  font-size: 0.82rem;
  margin-top: 2px;
}

/* ==========================================================
   ENHANCED CARD SHIMMER EFFECT
   ========================================================== */
.card::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -75%;
  width: 55%;
  height: 200%;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.5) 50%, transparent 100%);
  transform: skewX(-20deg);
  opacity: 0;
  transition: opacity 0.1s;
  z-index: 1;
}

.card:hover::after {
  animation: card-shimmer 0.55s ease forwards;
  opacity: 1;
}

@keyframes card-shimmer {
  0%   { left: -75%; }
  100% { left: 130%; }
}


