/* ================================================================
   NDS INTERNATIONAL SCHOOL — Premium Bootstrap 4.6 Theme
   Fixed: Real logo · Single-line navbar · Clean Apply button · Map footer
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@600;700;800&family=DM+Sans:wght@400;500;600;700&display=swap');

:root {
  --royal:       #0B2447;
  --royal-mid:   #19376D;
  --royal-light: #2d5986;
  --gold:        #C9972C;
  --gold-light:  #E5B84A;
  --gold-pale:   #FFF5DC;
  --crimson:     #B91C3B;
  --white:       #FFFFFF;
  --off-white:   #F8F9FC;
  --light:       #EEF2FB;
  --muted:       #6B7A99;
  --dark:        #0D1B2A;
  --border:      #DDE4F0;
  --shadow-sm:   0 2px 12px rgba(11,36,71,.08);
  --shadow:      0 6px 30px rgba(11,36,71,.12);
  --shadow-lg:   0 20px 60px rgba(11,36,71,.18);
  --shadow-gold: 0 8px 30px rgba(201,151,44,.35);
  --radius:      14px;
  --radius-lg:   24px;
  --transition:  all .32s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; color: var(--dark); background: var(--white); line-height: 1.75; overflow-x: hidden; }
h1,h2,h3,h4,h5 { font-family: 'Cormorant Garamond', serif; font-weight: 700; line-height: 1.2; }
a { transition: var(--transition); }
img { max-width: 100%; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--light); }
::-webkit-scrollbar-thumb { background: var(--royal-mid); border-radius: 3px; }

/* ══════════════════════════════════════════
   PRELOADER
══════════════════════════════════════════ */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--royal);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  transition: opacity .5s ease, visibility .5s ease;
}
#preloader.hide { opacity: 0; visibility: hidden; }
.preloader-bar { width: 180px; height: 3px; background: rgba(255,255,255,.15); border-radius: 2px; overflow: hidden; }
.preloader-bar-fill { height: 100%; background: linear-gradient(90deg, var(--gold), var(--gold-light)); border-radius: 2px; animation: fillBar 1.8s ease forwards; }
@keyframes fillBar { from { width: 0; } to { width: 100%; } }

/* ══════════════════════════════════════════
   TOP BAR
══════════════════════════════════════════ */
.topbar {
  background: var(--royal);
  padding: 8px 0;
  font-size: .76rem;
  font-weight: 500;
  color: rgba(255,255,255,.7);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.topbar-items { gap: 20px; }
.topbar-items span { display: flex; align-items: center; gap: 6px; }
.topbar-items i { color: var(--gold); font-size: .72rem; }
.topbar-social { display: flex; gap: 6px; }
.topbar-social a {
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.65); font-size: .65rem;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; transition: var(--transition);
}
.topbar-social a:hover { background: var(--gold); color: var(--royal); border-color: var(--gold); }
.topbar-portal-btn {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.75); padding: 4px 14px; border-radius: 50px;
  font-size: .74rem; font-weight: 600; text-decoration: none;
  display: flex; align-items: center; gap: 6px; transition: var(--transition);
}
.topbar-portal-btn:hover { background: var(--gold); color: var(--royal); border-color: var(--gold); text-decoration: none; }

/* ══════════════════════════════════════════
   NAVBAR — Completely Custom (single line)
══════════════════════════════════════════ */
.site-navbar {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(11,36,71,.09);
  position: sticky; top: 0; z-index: 1000;
  transition: box-shadow .3s ease;
}
.site-navbar.scrolled { box-shadow: 0 4px 28px rgba(11,36,71,.15); }

.navbar-inner {
  display: flex;
  align-items: center;
  height: 76px;          /* fixed height keeps everything on ONE line */
  gap: 0;
}

/* ── Logo / Brand ── */
.navbar-brand-wrap {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; flex-shrink: 0;
  margin-right: 16px;
}
.navbar-brand-wrap:hover { text-decoration: none; }

.nav-logo-img {
  width: 60px; height: 60px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 6px rgba(11,36,71,.15));
}

.nav-brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.nav-school-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.22rem; font-weight: 800;
  color: var(--royal); white-space: nowrap;
}
.nav-tagline {
  font-size: .63rem; font-weight: 700; color: var(--gold);
  text-transform: uppercase; letter-spacing: 1.2px; white-space: nowrap;
}
.nav-affil {
  font-size: .6rem; color: var(--muted); font-weight: 500; white-space: nowrap;
}

/* ── Nav Menu List ── */
.nav-menu-list {
  display: flex; align-items: stretch; list-style: none;
  margin: 0; padding: 0; height: 100%; flex: 1;
  justify-content: center;
}
.nav-menu-item {
  position: relative; display: flex; align-items: stretch;
}
.nav-menu-link {
  display: flex; align-items: center; gap: 4px;
  padding: 0 11px;
  font-size: .79rem; font-weight: 600;
  color: var(--dark); text-decoration: none;
  white-space: nowrap;
  text-transform: uppercase; letter-spacing: .5px;
  position: relative; transition: color .25s ease;
  border-bottom: 3px solid transparent;
}
.nav-menu-link::after {
  content: ''; position: absolute; bottom: -1px; left: 11px; right: 11px;
  height: 3px; background: var(--gold); border-radius: 2px 2px 0 0;
  transform: scaleX(0); transition: transform .28s ease;
}
.nav-menu-link:hover,
.nav-menu-link.active { color: var(--royal); text-decoration: none; }
.nav-menu-link:hover::after,
.nav-menu-link.active::after { transform: scaleX(1); }

.nav-caret { font-size: .55rem; margin-top: 1px; opacity: .6; }

/* ── Dropdown ── */
.nav-dropdown {
  position: absolute; top: calc(100% + 2px); left: 0;
  background: white; min-width: 220px;
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow-lg);
  border-top: 3px solid var(--gold);
  padding: 8px; z-index: 200;
  opacity: 0; visibility: hidden;
  transform: translateY(8px);
  transition: all .25s ease;
  pointer-events: none;
}
.has-dropdown:hover .nav-dropdown {
  opacity: 1; visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.nav-dropdown a {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 13px; border-radius: 8px;
  font-size: .83rem; font-weight: 500; color: var(--dark);
  text-decoration: none; transition: var(--transition);
}
.nav-dropdown a i { color: var(--gold); font-size: .75rem; width: 14px; }
.nav-dropdown a:hover { background: var(--light); color: var(--royal); padding-left: 17px; }

/* ── Apply Now Button (desktop) ── */
.nav-apply-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--royal) 0%, var(--royal-mid) 100%);
  color: white !important;
  font-family: 'DM Sans', sans-serif;
  font-size: .84rem; font-weight: 700;
  padding: 10px 22px;
  border-radius: 8px;
  border: none; text-decoration: none !important;
  white-space: nowrap; flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(11,36,71,.3);
  transition: var(--transition);
  margin-left: 14px;
}
.nav-apply-btn i { font-size: .8rem; }
.nav-apply-btn:hover {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--royal) !important;
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

/* ── Mobile Toggle ── */
.nav-mob-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; padding: 8px; cursor: pointer;
  margin-left: 10px;
}
.nav-mob-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--royal); border-radius: 2px; transition: all .3s ease;
}
.nav-mob-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-mob-toggle.open span:nth-child(2) { opacity: 0; }
.nav-mob-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile Nav Drawer ── */
.mobile-nav {
  display: none; background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(11,36,71,.12);
}
.mobile-nav.open { display: block; }
.mobile-nav-inner { padding: 14px 16px 20px; }
.mob-link {
  display: block; padding: 11px 16px;
  font-size: .9rem; font-weight: 600; color: var(--dark);
  border-radius: 8px; text-decoration: none;
  transition: var(--transition);
}
.mob-link:hover { background: var(--light); color: var(--royal); text-decoration: none; }
.mob-apply-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: linear-gradient(135deg, var(--royal), var(--royal-mid));
  color: white !important; font-weight: 700; font-size: .92rem;
  padding: 13px; border-radius: 10px; margin-top: 14px;
  text-decoration: none !important; transition: var(--transition);
}
.mob-apply-btn:hover { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--royal) !important; }

/* ══════════════════════════════════════════
   HERO SLIDER
══════════════════════════════════════════ */
.hero-section { position: relative; overflow: hidden; background: var(--royal); min-height: 600px; }
.hero-slide { position: relative; min-height: 600px; display: flex; align-items: center; min-width: 100%; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 7s ease; }
.hero-slide.active .hero-bg { transform: scale(1.04); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(105deg, rgba(11,36,71,.93) 0%, rgba(11,36,71,.72) 45%, rgba(11,36,71,.28) 100%); }
.hero-shape-1 { position: absolute; top: -80px; right: -80px; width: 420px; height: 420px; border-radius: 50%; background: rgba(201,151,44,.07); z-index: 1; }
.hero-shape-2 { position: absolute; bottom: -100px; right: 15%; width: 280px; height: 280px; border-radius: 50%; background: rgba(201,151,44,.04); z-index: 1; }
.hero-shape-3 { position: absolute; top: 50%; right: 8%; width: 160px; height: 160px; border: 2px solid rgba(201,151,44,.13); border-radius: 28px; transform: translateY(-50%) rotate(15deg); z-index: 1; }
.hero-content { position: relative; z-index: 5; padding: 80px 0; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 9px; background: rgba(201,151,44,.14); border: 1px solid rgba(201,151,44,.3); color: var(--gold-light); padding: 6px 16px; border-radius: 50px; font-size: .73rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 20px; animation: fadeInDown .6s ease both; }
.hero-title { font-size: clamp(2rem, 4.5vw, 3.6rem); color: white; font-weight: 800; line-height: 1.1; margin-bottom: 18px; animation: fadeInUp .7s .1s ease both; }
.hero-title .highlight { color: var(--gold-light); position: relative; }
.hero-title .highlight::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--gold-light); border-radius: 2px; opacity: .35; }
.hero-desc { font-size: 1rem; color: rgba(255,255,255,.82); margin-bottom: 34px; max-width: 500px; animation: fadeInUp .7s .2s ease both; line-height: 1.8; }
.hero-actions { animation: fadeInUp .7s .3s ease both; }
.hero-card { position: absolute; bottom: 30px; right: 0; background: white; border-radius: var(--radius); padding: 16px 20px; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 12px; animation: fadeInRight .7s .5s ease both; z-index: 5; min-width: 230px; }
.hero-card-icon { font-size: 1.9rem; }
.hero-card-title { font-weight: 700; color: var(--royal); font-size: .86rem; }
.hero-card-sub { font-size: .76rem; color: var(--muted); }
.hero-dots { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); display: flex; gap: 7px; z-index: 10; }
.hero-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.32); cursor: pointer; transition: var(--transition); }
.hero-dot.active { background: var(--gold-light); width: 26px; border-radius: 4px; }
.hero-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.1); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.18); color: white; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 10; transition: var(--transition); font-size: .95rem; }
.hero-arrow:hover { background: var(--gold); border-color: var(--gold); color: var(--royal); }
.hero-arrow.prev { left: 20px; }
.hero-arrow.next { right: 20px; }
.hero-track { display: flex; transition: transform .8s cubic-bezier(.77,0,.175,1); }

/* ══════════════════════════════════════════
   TICKER
══════════════════════════════════════════ */
.ticker-bar { background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%); padding: 10px 0; overflow: hidden; }
.ticker-label { background: var(--royal); color: white; padding: 3px 14px; border-radius: 50px; font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; white-space: nowrap; flex-shrink: 0; }
.ticker-content { display: inline-flex; gap: 72px; white-space: nowrap; animation: ticker 32s linear infinite; }
.ticker-content span { font-size: .83rem; font-weight: 600; color: var(--royal); }
.ticker-content span i { margin-right: 5px; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ══════════════════════════════════════════
   STATS BAND
══════════════════════════════════════════ */
.stats-band { background: linear-gradient(135deg, var(--royal) 0%, var(--royal-mid) 100%); padding: 0; overflow: hidden; position: relative; }
.stat-block { padding: 30px 18px; text-align: center; position: relative; transition: var(--transition); }
.stat-block:not(:last-child)::after { content: ''; position: absolute; right: 0; top: 20%; bottom: 20%; width: 1px; background: rgba(255,255,255,.1); }
.stat-block:hover { background: rgba(255,255,255,.04); }
.stat-num { font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; font-weight: 800; color: var(--gold-light); line-height: 1; }
.stat-lbl { font-size: .72rem; font-weight: 700; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }
.stat-icon { font-size: 1.3rem; margin-bottom: 7px; color: rgba(255,255,255,.12); }

/* ══════════════════════════════════════════
   SECTIONS
══════════════════════════════════════════ */
.section { padding: 86px 0; }
.section-sm { padding: 56px 0; }
.section-bg { background: var(--off-white); }
.section-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(201,151,44,.11); border: 1px solid rgba(201,151,44,.22); color: var(--gold); padding: 5px 15px; border-radius: 50px; font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 13px; }
.section-title { font-size: clamp(1.75rem, 3vw, 2.7rem); color: var(--royal); margin-bottom: 12px; }
.section-title-dark { color: white; }
.section-title span { color: var(--gold); }
.section-divider { width: 48px; height: 4px; background: linear-gradient(to right, var(--gold), var(--gold-light)); border-radius: 2px; margin: 14px auto 18px; }
.section-desc { font-size: .96rem; color: var(--muted); max-width: 540px; margin: 0 auto; }

/* ══════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════ */
.btn-nds-primary { background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%); color: var(--royal); font-weight: 700; font-size: .9rem; padding: 12px 28px; border-radius: 8px; border: none; display: inline-flex; align-items: center; gap: 8px; box-shadow: var(--shadow-gold); transition: var(--transition); cursor: pointer; font-family: 'DM Sans', sans-serif; text-decoration: none; }
.btn-nds-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 35px rgba(201,151,44,.45); color: var(--royal); text-decoration: none; }
.btn-nds-outline { background: transparent; color: white; font-weight: 700; font-size: .9rem; padding: 11px 26px; border-radius: 8px; border: 2px solid rgba(255,255,255,.38); display: inline-flex; align-items: center; gap: 8px; transition: var(--transition); cursor: pointer; font-family: 'DM Sans', sans-serif; text-decoration: none; }
.btn-nds-outline:hover { background: rgba(255,255,255,.1); border-color: white; color: white; transform: translateY(-2px); text-decoration: none; }
.btn-nds-dark { background: var(--royal); color: white; font-weight: 700; font-size: .9rem; padding: 12px 28px; border-radius: 8px; border: none; display: inline-flex; align-items: center; gap: 8px; box-shadow: var(--shadow); transition: var(--transition); cursor: pointer; font-family: 'DM Sans', sans-serif; text-decoration: none; }
.btn-nds-dark:hover { background: var(--royal-mid); transform: translateY(-2px); box-shadow: var(--shadow-lg); color: white; text-decoration: none; }
.cta-outline-btn { background: rgba(11,36,71,.11); color: var(--royal); font-weight: 700; padding: 12px 26px; border-radius: 8px; border: 2px solid rgba(11,36,71,.18); display: inline-flex; align-items: center; gap: 8px; text-decoration: none; transition: var(--transition); }
.cta-outline-btn:hover { background: rgba(11,36,71,.18); color: var(--royal); text-decoration: none; transform: translateY(-2px); }

/* ══════════════════════════════════════════
   ABOUT SECTION
══════════════════════════════════════════ */
.about-img-frame { position: relative; }
.about-img-main { border-radius: var(--radius-lg); overflow: hidden; height: 460px; box-shadow: var(--shadow-lg); }
.about-img-main > div { width: 100%; height: 100%; }
.about-floating-card { position: absolute; bottom: -20px; right: -20px; background: white; border-radius: var(--radius); padding: 18px 22px; box-shadow: var(--shadow-lg); border-left: 4px solid var(--gold); min-width: 160px; }
.about-floating-card .big-num { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; font-weight: 800; color: var(--gold); line-height: 1; }
.about-floating-card .lbl { font-size: .72rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .7px; margin-top: 2px; }
.about-badge { position: absolute; top: 22px; left: -14px; background: var(--royal); color: white; padding: 9px 14px; border-radius: var(--radius); font-size: .73rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; box-shadow: var(--shadow); display: flex; align-items: center; gap: 7px; }
.about-badge i { color: var(--gold-light); }
.feature-check { display: flex; align-items: flex-start; gap: 11px; padding: 12px; border-radius: 9px; background: var(--off-white); border-left: 3px solid var(--gold); margin-bottom: 9px; transition: var(--transition); }
.feature-check:hover { background: var(--light); transform: translateX(3px); }
.feature-check .chk { width: 26px; height: 26px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.feature-check .chk i { color: white; font-size: .72rem; }
.feature-check .chk-title { font-weight: 700; color: var(--royal); font-size: .88rem; }
.feature-check .chk-sub { font-size: .78rem; color: var(--muted); }

/* ══════════════════════════════════════════
   PROGRAM CARDS
══════════════════════════════════════════ */
.program-card { background: white; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); border: 1px solid var(--border); height: 100%; }
.program-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.program-card-head { height: 170px; display: flex; align-items: center; justify-content: center; font-size: 3.8rem; position: relative; overflow: hidden; }
.program-card-head::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 55px; background: linear-gradient(to top, white, transparent); }
.program-badge { position: absolute; top: 12px; right: 12px; background: white; color: var(--gold); padding: 3px 11px; border-radius: 50px; font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .4px; box-shadow: var(--shadow-sm); }
.program-card-body { padding: 20px 22px 24px; }
.program-card-title { font-size: 1.15rem; font-weight: 700; color: var(--royal); margin-bottom: 5px; }
.program-age { font-size: .72rem; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: .7px; margin-bottom: 9px; }
.program-card p { font-size: .86rem; color: var(--muted); line-height: 1.7; margin-bottom: 14px; }
.program-link { font-size: .84rem; font-weight: 700; color: var(--royal); display: flex; align-items: center; gap: 6px; text-decoration: none; }
.program-link:hover { color: var(--gold); gap: 10px; text-decoration: none; }

/* ══════════════════════════════════════════
   NOTICE BOARD
══════════════════════════════════════════ */
.notice-wrapper { background: white; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.notice-header { background: linear-gradient(135deg, var(--royal) 0%, var(--royal-mid) 100%); padding: 18px 22px; display: flex; align-items: center; justify-content: space-between; }
.notice-header h4 { color: white; margin: 0; font-size: 1.05rem; }
.notice-header a { color: var(--gold-light); font-size: .8rem; font-weight: 700; text-decoration: none; }
.notice-header a:hover { color: white; }
.notice-list-inner { max-height: 370px; overflow-y: auto; padding: 12px; }
.notice-list-inner::-webkit-scrollbar { width: 3px; }
.notice-item-card { display: flex; gap: 12px; align-items: flex-start; padding: 13px; border-radius: 10px; background: var(--off-white); margin-bottom: 9px; border-left: 3px solid var(--gold); transition: var(--transition); }
.notice-item-card:hover { background: var(--light); transform: translateX(3px); }
.notice-date-box { background: var(--royal); color: white; padding: 6px 9px; border-radius: 7px; text-align: center; min-width: 46px; flex-shrink: 0; }
.notice-date-box .day { display: block; font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-weight: 800; line-height: 1; }
.notice-date-box .mon { display: block; font-size: .58rem; font-weight: 700; text-transform: uppercase; color: var(--gold-light); margin-top: 2px; }
.notice-text h6 { font-size: .88rem; font-weight: 700; color: var(--royal); margin-bottom: 3px; }
.notice-text p { font-size: .76rem; color: var(--muted); margin: 0; }
.badge-new-pill { display: inline-block; background: var(--crimson); color: white; font-size: .56rem; font-weight: 800; padding: 2px 6px; border-radius: 50px; text-transform: uppercase; letter-spacing: .5px; margin-left: 5px; vertical-align: middle; }

/* ══════════════════════════════════════════
   GALLERY MOSAIC
══════════════════════════════════════════ */
.gallery-mosaic { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: 190px 190px; gap: 11px; }
.gallery-mosaic .g-item { border-radius: var(--radius); overflow: hidden; cursor: pointer; }
.gallery-mosaic .g-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-mosaic .g-item:nth-child(4) { grid-column: span 2; }
.g-inner { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 2.8rem; transition: transform .5s ease; }
.g-item { position: relative; }
.g-item:hover .g-inner { transform: scale(1.08); }
.g-overlay { position: absolute; inset: 0; background: rgba(11,36,71,.55); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; opacity: 0; transition: var(--transition); border-radius: var(--radius); }
.g-item:hover .g-overlay { opacity: 1; }
.g-overlay i { color: white; font-size: 1.4rem; }
.g-overlay span { color: white; font-size: .76rem; font-weight: 700; }

/* ══════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════ */
.testimonial-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-lg); padding: 30px; backdrop-filter: blur(10px); height: 100%; transition: var(--transition); }
.testimonial-card:hover { border-color: rgba(201,151,44,.28); background: rgba(255,255,255,.08); transform: translateY(-4px); }
.testimonial-stars { color: var(--gold-light); font-size: .84rem; margin-bottom: 14px; }
.testimonial-quote-icon { font-size: 2.3rem; color: rgba(201,151,44,.18); line-height: 1; margin-bottom: 10px; font-family: Georgia, serif; }
.testimonial-text { color: rgba(255,255,255,.76); font-size: .9rem; line-height: 1.85; margin-bottom: 22px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 11px; }
.t-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%); display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 800; color: var(--royal); flex-shrink: 0; }
.t-name { font-weight: 700; color: white; font-size: .86rem; }
.t-role { font-size: .74rem; color: rgba(255,255,255,.42); }

/* ══════════════════════════════════════════
   FEATURE TILES
══════════════════════════════════════════ */
.feature-tile { background: white; border-radius: var(--radius); padding: 28px 20px; text-align: center; box-shadow: var(--shadow-sm); border: 1px solid var(--border); transition: var(--transition); height: 100%; cursor: pointer; }
.feature-tile:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.feature-tile-icon { width: 64px; height: 64px; border-radius: 16px; background: linear-gradient(135deg, var(--royal) 0%, var(--royal-mid) 100%); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: white; margin: 0 auto 16px; box-shadow: 0 4px 16px rgba(11,36,71,.18); transition: var(--transition); }
.feature-tile:hover .feature-tile-icon { background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%); box-shadow: var(--shadow-gold); }
.feature-tile-title { font-size: .92rem; font-weight: 700; color: var(--royal); margin-bottom: 7px; }
.feature-tile p { font-size: .82rem; color: var(--muted); line-height: 1.7; margin: 0; }

/* ══════════════════════════════════════════
   FACULTY CARDS
══════════════════════════════════════════ */
.faculty-card { background: white; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--border); transition: var(--transition); }
.faculty-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.faculty-photo { height: 200px; display: flex; align-items: center; justify-content: center; font-size: 4.8rem; position: relative; }
.faculty-photo::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 45px; background: linear-gradient(to top, white, transparent); }
.faculty-body { padding: 14px 16px 20px; text-align: center; }
.faculty-name { font-size: .97rem; font-weight: 700; color: var(--royal); margin-bottom: 3px; }
.faculty-subject { font-size: .7rem; font-weight: 800; color: var(--gold); text-transform: uppercase; letter-spacing: .7px; margin-bottom: 4px; }
.faculty-qual { font-size: .78rem; color: var(--muted); }

/* ══════════════════════════════════════════
   ADMISSION CTA BAND
══════════════════════════════════════════ */
.cta-band { background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%); padding: 65px 0; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; top: -80px; left: -80px; width: 320px; height: 320px; border-radius: 50%; background: rgba(255,255,255,.07); }
.cta-band::after { content: ''; position: absolute; bottom: -90px; right: -70px; width: 360px; height: 360px; border-radius: 50%; background: rgba(11,36,71,.07); }
.cta-band h2 { font-size: 2.4rem; color: var(--royal); position: relative; z-index: 1; }
.cta-band p { color: rgba(11,36,71,.72); position: relative; z-index: 1; font-size: .97rem; }
.cta-btns { position: relative; z-index: 1; }

.launch-badge { display: inline-flex; align-items: center; gap: 9px; background: var(--crimson); color: white; padding: 7px 18px; border-radius: 50px; font-size: .76rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; box-shadow: 0 4px 18px rgba(185,28,59,.4); animation: pulse 2s ease infinite; }
@keyframes pulse { 0%,100%{box-shadow:0 4px 18px rgba(185,28,59,.38)} 50%{box-shadow:0 4px 28px rgba(185,28,59,.65)} }

/* ══════════════════════════════════════════
   FOOTER MAP STRIP
══════════════════════════════════════════ */
.footer-map-strip { background: var(--dark); }

.footer-map-header {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 0;
  font-size: .82rem; font-weight: 600;
  color: rgba(255,255,255,.65);
}
.footer-map-header i { color: var(--gold); font-size: .9rem; flex-shrink: 0; }
.footer-map-header span { flex: 1; }
.map-directions-btn {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--gold); color: var(--royal);
  padding: 7px 16px; border-radius: 6px;
  font-size: .78rem; font-weight: 800;
  text-decoration: none; white-space: nowrap;
  transition: var(--transition); flex-shrink: 0;
}
.map-directions-btn:hover { background: var(--gold-light); color: var(--royal); text-decoration: none; transform: translateY(-1px); }

.footer-map-frame iframe {
  display: block; width: 100%; height: 300px; border: 0;
  filter: grayscale(20%) contrast(1.05);
}

/* ══════════════════════════════════════════
   FOOTER MAIN
══════════════════════════════════════════ */
.site-footer { background: var(--dark); color: rgba(255,255,255,.6); padding: 65px 0 0; border-top: 1px solid rgba(255,255,255,.04); }

/* Footer Logo Block */
.footer-brand-block { }
.footer-logo-link { display: flex; align-items: center; gap: 12px; text-decoration: none; margin-bottom: 16px; }
.footer-logo-link:hover { text-decoration: none; }
.footer-logo-img { width: 58px; height: 58px; object-fit: contain; flex-shrink: 0; }
.footer-school-name { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 800; color: white; line-height: 1.1; }
.footer-about-text { font-size: .85rem; line-height: 1.85; margin-bottom: 18px; }

.footer-social-links { display: flex; gap: 8px; }
.footer-social-links a { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.55); font-size: .8rem; transition: var(--transition); text-decoration: none; }
.footer-social-links a:hover { background: var(--gold); color: var(--royal); border-color: var(--gold); transform: translateY(-3px); }

/* Footer Headings & Links */
.footer-heading { color: white; font-size: .95rem; margin-bottom: 18px; padding-bottom: 9px; border-bottom: 2px solid var(--gold); display: inline-block; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 9px; }
.footer-links a { font-size: .85rem; color: rgba(255,255,255,.52); text-decoration: none; display: flex; align-items: center; gap: 7px; transition: var(--transition); }
.footer-links a i { font-size: .58rem; color: var(--gold); }
.footer-links a:hover { color: var(--gold-light); padding-left: 3px; text-decoration: none; }

/* Footer Contact */
.footer-contact-row { display: flex; gap: 13px; align-items: flex-start; margin-bottom: 16px; }
.fci { width: 32px; height: 32px; border-radius: 8px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.fci i { color: var(--gold); font-size: .8rem; }
.fc-label { font-size: .67rem; font-weight: 800; text-transform: uppercase; letter-spacing: .8px; color: rgba(255,255,255,.35); margin-bottom: 2px; }
.fc-val { font-size: .84rem; color: rgba(255,255,255,.75); line-height: 1.65; }
.fc-val a { color: rgba(255,255,255,.75); text-decoration: none; transition: var(--transition); }
.fc-val a:hover { color: var(--gold-light); }

.footer-admit-btn { display: flex; align-items: center; justify-content: center; gap: 8px; background: var(--gold); color: var(--royal) !important; font-weight: 800; font-size: .86rem; padding: 11px 20px; border-radius: 8px; text-decoration: none !important; margin-top: 18px; transition: var(--transition); }
.footer-admit-btn:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: var(--shadow-gold); }

/* Footer Bottom */
.footer-bottom { border-top: 1px solid rgba(255,255,255,.06); padding: 18px 0; margin-top: 46px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.32); margin: 0; }
.footer-bottom-links { display: flex; gap: 14px; }
.footer-bottom-links a { font-size: .78rem; color: rgba(255,255,255,.32); text-decoration: none; }
.footer-bottom-links a:hover { color: var(--gold-light); }

/* ══════════════════════════════════════════
   PAGE BANNER
══════════════════════════════════════════ */
.page-banner { background: linear-gradient(120deg, var(--royal) 0%, var(--royal-mid) 60%, var(--royal-light) 100%); padding: 65px 0; position: relative; overflow: hidden; }
.page-banner::after { content: ''; position: absolute; top: -60px; right: -60px; width: 280px; height: 280px; border-radius: 50%; background: rgba(201,151,44,.07); }
.page-banner h1 { color: white; font-size: 2.4rem; margin-bottom: 9px; position: relative; z-index: 1; }
.breadcrumb-custom { display: flex; align-items: center; gap: 7px; font-size: .83rem; color: rgba(255,255,255,.55); margin: 0; background: transparent; padding: 0; position: relative; z-index: 1; }
.breadcrumb-custom a { color: var(--gold-light); text-decoration: none; }
.breadcrumb-custom a:hover { color: white; }
.breadcrumb-custom i { font-size: .58rem; }

/* ══════════════════════════════════════════
   FORMS
══════════════════════════════════════════ */
.form-card { background: white; border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-lg); }
.form-section-title { font-size: .8rem; font-weight: 800; color: var(--royal); text-transform: uppercase; letter-spacing: 1px; padding: 11px 16px; background: var(--light); border-radius: 8px; border-left: 4px solid var(--gold); margin-bottom: 20px; display: flex; align-items: center; gap: 7px; }
.form-section-title i { color: var(--gold); }
.form-label { font-size: .83rem; font-weight: 700; color: var(--royal); margin-bottom: 5px; }
.form-label .req { color: var(--crimson); }
.form-control { border: 1.5px solid var(--border); border-radius: 8px; padding: 10px 14px; font-family: 'DM Sans', sans-serif; font-size: .88rem; background: var(--off-white); transition: var(--transition); }
.form-control:focus { border-color: var(--royal); background: white; box-shadow: 0 0 0 3px rgba(11,36,71,.06); outline: none; }
.custom-select { border: 1.5px solid var(--border); border-radius: 8px; padding: 10px 14px; font-family: 'DM Sans', sans-serif; font-size: .88rem; background: var(--off-white); }
.custom-select:focus { border-color: var(--royal); box-shadow: 0 0 0 3px rgba(11,36,71,.06); }
.btn-submit { background: linear-gradient(135deg, var(--royal) 0%, var(--royal-mid) 100%); color: white; font-weight: 700; padding: 13px 34px; border-radius: 8px; border: none; font-family: 'DM Sans', sans-serif; font-size: .93rem; cursor: pointer; display: inline-flex; align-items: center; gap: 8px; box-shadow: 0 4px 18px rgba(11,36,71,.28); transition: var(--transition); }
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(11,36,71,.38); color: white; }
.btn-reset-form { background: transparent; color: var(--muted); font-weight: 700; padding: 12px 24px; border-radius: 8px; border: 2px solid var(--border); font-family: 'DM Sans', sans-serif; font-size: .88rem; cursor: pointer; transition: var(--transition); display: inline-flex; align-items: center; gap: 8px; }
.btn-reset-form:hover { border-color: var(--royal); color: var(--royal); }

/* ══════════════════════════════════════════
   CONTACT
══════════════════════════════════════════ */
.contact-info-panel { background: linear-gradient(135deg, var(--royal) 0%, var(--royal-mid) 100%); border-radius: var(--radius-lg); padding: 36px; height: 100%; }
.contact-info-panel h3 { color: white; margin-bottom: 6px; }
.contact-info-panel .sub { color: rgba(255,255,255,.62); font-size: .86rem; margin-bottom: 28px; }
.contact-detail { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 22px; }
.contact-detail-icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.11); display: flex; align-items: center; justify-content: center; color: var(--gold-light); font-size: .88rem; flex-shrink: 0; }
.contact-detail-label { font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .7px; color: rgba(255,255,255,.42); margin-bottom: 2px; }
.contact-detail-val { font-size: .85rem; color: rgba(255,255,255,.8); line-height: 1.6; }

/* ══════════════════════════════════════════
   MISC WIDGETS
══════════════════════════════════════════ */
.sidebar-widget { background: white; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); margin-bottom: 22px; }
.sidebar-widget-header { background: linear-gradient(135deg, var(--royal), var(--royal-mid)); padding: 13px 18px; }
.sidebar-widget-header h5 { color: white; font-size: .92rem; margin: 0; }
.sidebar-widget-body { padding: 14px; }
.download-item { display: flex; align-items: center; gap: 11px; padding: 10px 13px; border-radius: 7px; background: var(--off-white); margin-bottom: 7px; font-size: .84rem; font-weight: 600; color: var(--dark); text-decoration: none; transition: var(--transition); }
.download-item:hover { background: var(--royal); color: white; transform: translateX(3px); text-decoration: none; }
.download-item:hover i { color: white; }
.download-item .di-icon { font-size: .95rem; color: var(--crimson); }
.download-item .di-arrow { margin-left: auto; font-size: .72rem; opacity: .45; }
.download-item-disabled { opacity: .5; cursor: not-allowed; }
.download-item-disabled:hover { background: var(--off-white); color: var(--dark); transform: none; }
.filter-pills { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 26px; }
.filter-pill { padding: 6px 16px; border-radius: 50px; font-size: .8rem; font-weight: 700; border: 2px solid var(--border); background: white; color: var(--muted); cursor: pointer; transition: var(--transition); font-family: 'DM Sans', sans-serif; }
.filter-pill.active, .filter-pill:hover { background: var(--royal); color: white; border-color: var(--royal); }
.video-card { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); cursor: pointer; }
.video-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.video-thumb { height: 155px; display: flex; align-items: center; justify-content: center; position: relative; font-size: 2.8rem; }
.play-btn { position: absolute; width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,.9); display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.play-btn i { color: var(--royal); font-size: .95rem; margin-left: 3px; }
.video-card:hover .play-btn { background: var(--gold); transform: scale(1.1); }

/* ══════════════════════════════════════════
   SCROLL TOP BUTTON
══════════════════════════════════════════ */
.scroll-top-btn { position: fixed; bottom: 26px; right: 26px; width: 42px; height: 42px; border-radius: 8px; background: var(--royal); color: white; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 999; box-shadow: var(--shadow); opacity: 0; visibility: hidden; transition: var(--transition); border: none; font-size: .9rem; }
.scroll-top-btn.show { opacity: 1; visibility: visible; }
.scroll-top-btn:hover { background: var(--gold); color: var(--royal); transform: translateY(-3px); }

/* ══════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════ */
@keyframes fadeInUp   { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInRight{ from { opacity: 0; transform: translateX(26px); } to { opacity: 1; transform: translateX(0); } }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.revealed { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1399px) {
  .nav-menu-link { padding: 0 9px; font-size: .75rem; }
  .nav-school-name { font-size: 1.1rem; }
  .nav-logo-img { width: 54px; height: 54px; }
  .nav-apply-btn { padding: 9px 16px; font-size: .8rem; }
}

/* Below xl (1200px): hide desktop nav, show mobile toggle */
@media (max-width: 1199px) {
  .nav-menu-list { display: none !important; }
  .nav-apply-btn { display: none !important; }
  .nav-mob-toggle { display: flex !important; }
  .navbar-inner { justify-content: space-between; }
}

@media (max-width: 991px) {
  .hero-card { display: none; }
  .gallery-mosaic { grid-template-columns: repeat(2,1fr); }
  .gallery-mosaic .g-item:nth-child(1) { grid-column: span 2; height: 240px; }
  .gallery-mosaic .g-item:nth-child(4) { grid-column: span 1; }
  .contact-info-panel { margin-bottom: 28px; height: auto; }
}
@media (max-width: 767px) {
  .section, .section-sm { padding: 55px 0; }
  .topbar-items span:nth-child(2), .topbar-items span:nth-child(3) { display: none; }
  .hero-section, .hero-slide { min-height: 480px; }
  .form-card { padding: 22px; }
  .stat-block::after { display: none !important; }
  .about-img-main { height: 300px; }
  .footer-map-header { flex-direction: column; align-items: flex-start; gap: 8px; }
}
@media (max-width: 575px) {
  .hero-title { font-size: 1.9rem; }
  .gallery-mosaic .g-item:nth-child(n+5) { display: none; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ══════════════════════════════════════════
   WHATSAPP FLOATING BUTTON
══════════════════════════════════════════ */

/* Wrapper — sits above scroll-top */
.wa-float-wrap {
  position: fixed;
  bottom: 80px;
  right: 24px;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

/* ── Main round button ── */
.wa-main-btn {
  position: relative;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  transition: transform .3s ease, box-shadow .3s ease;
  flex-shrink: 0;
}
.wa-main-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37,211,102,.6);
  text-decoration: none;
}
.wa-icon {
  color: white;
  font-size: 1.85rem;
  position: relative; z-index: 1;
}

/* Pulse ring animation */
.wa-pulse-ring {
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,.55);
  animation: waPulse 2.2s ease infinite;
}
@keyframes waPulse {
  0%   { transform: scale(1);   opacity: .8; }
  70%  { transform: scale(1.35); opacity: 0;  }
  100% { transform: scale(1.35); opacity: 0;  }
}

/* Notification badge */
.wa-badge {
  position: absolute;
  top: 0; right: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #e74c3c;
  color: white;
  font-size: .65rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid white;
  animation: waBadgePop .4s .8s cubic-bezier(.34,1.56,.64,1) both;
  pointer-events: none;
}
@keyframes waBadgePop { from { transform: scale(0); } to { transform: scale(1); } }
.wa-badge.hide { display: none; }

/* ── Tooltip / Chat popup ── */
.wa-tooltip {
  position: absolute;
  bottom: 70px; right: 0;
  width: 320px;
  opacity: 0; visibility: hidden;
  transform: translateY(14px) scale(.97);
  transition: all .3s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
}
.wa-float-wrap.open .wa-tooltip {
  opacity: 1; visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.wa-tooltip-inner {
  background: white;
  border-radius: 18px;
  box-shadow: 0 16px 60px rgba(0,0,0,.18);
  overflow: hidden;
}
.wa-tooltip-arrow {
  width: 16px; height: 10px;
  background: white;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  margin-left: auto;
  margin-right: 22px;
  filter: drop-shadow(0 3px 3px rgba(0,0,0,.08));
}

/* Header */
.wa-tooltip-header {
  background: #075E54;
  padding: 14px 16px;
  display: flex; align-items: center; gap: 11px;
}
.wa-tooltip-logo {
  width: 42px; height: 42px;
  border-radius: 50%; object-fit: contain;
  background: white; padding: 3px; flex-shrink: 0;
}
.wa-tooltip-name { font-size: .9rem; font-weight: 700; color: white; }
.wa-tooltip-status { font-size: .72rem; color: rgba(255,255,255,.7); display: flex; align-items: center; gap: 5px; margin-top: 2px; }
.wa-online-dot { width: 7px; height: 7px; border-radius: 50%; background: #25D366; display: inline-block; }
.wa-tooltip-close {
  margin-left: auto; background: none; border: none;
  color: rgba(255,255,255,.7); font-size: 1.3rem; line-height: 1;
  cursor: pointer; padding: 0; flex-shrink: 0; transition: color .2s;
}
.wa-tooltip-close:hover { color: white; }

/* Body */
.wa-tooltip-body {
  padding: 16px;
  background: #ECE5DD url("data:image/svg+xml,%3Csvg width='200' height='200' xmlns='http://www.w3.org/2000/svg'%3E%3Ctext x='10' y='40' font-size='28' opacity='.04'%3E💬%3C/text%3E%3C/svg%3E");
}
.wa-chat-bubble {
  background: white;
  border-radius: 0 12px 12px 12px;
  padding: 12px 14px;
  font-size: .85rem; line-height: 1.65;
  color: #333;
  box-shadow: 0 1px 4px rgba(0,0,0,.1);
  margin-bottom: 12px;
  position: relative;
}
.wa-chat-bubble::before {
  content: '';
  position: absolute; top: 0; left: -8px;
  border: 8px solid transparent;
  border-right-color: white;
  border-top: 0;
}

/* Quick reply buttons */
.wa-quick-btns { display: flex; flex-direction: column; gap: 7px; margin-bottom: 12px; }
.wa-quick-btn {
  display: block;
  background: white; color: #075E54;
  padding: 8px 13px; border-radius: 50px;
  font-size: .8rem; font-weight: 700;
  text-decoration: none; text-align: center;
  border: 1.5px solid rgba(7,94,84,.2);
  transition: all .22s ease;
  box-shadow: 0 1px 4px rgba(0,0,0,.07);
}
.wa-quick-btn:hover {
  background: #25D366; color: white;
  border-color: #25D366; text-decoration: none;
  transform: translateX(3px);
}

/* Start chat CTA */
.wa-start-chat-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: #25D366; color: white !important;
  padding: 11px; border-radius: 10px;
  font-size: .88rem; font-weight: 800;
  text-decoration: none !important;
  transition: all .25s ease;
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
}
.wa-start-chat-btn:hover {
  background: #20bf5a;
  box-shadow: 0 6px 22px rgba(37,211,102,.55);
  transform: translateY(-2px);
}
.wa-start-chat-btn i { font-size: 1.1rem; }

/* ── Responsive ── */
@media (max-width: 480px) {
  .wa-float-wrap { bottom: 76px; right: 16px; }
  .wa-tooltip    { width: calc(100vw - 32px); right: 0; }
  .wa-main-btn   { width: 52px; height: 52px; }
  .wa-icon       { font-size: 1.65rem; }
}

/* ══════════════════════════════════════════
   PARENT LOGIN FLOATING BUTTON
══════════════════════════════════════════ */

/* Vertical tab on left side */
.parent-login-float {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1060;
  display: flex;
  align-items: center;
}

/* The vertical tab button */
.parent-login-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 36px;
  padding: 16px 0;
  background: linear-gradient(180deg, #e65c00 0%, #f9a825 100%);
  color: white;
  border: none;
  border-radius: 0 10px 10px 0;
  cursor: pointer;
  box-shadow: 4px 0 20px rgba(230,92,0,.45);
  transition: var(--transition);
  animation: parentTabPulse 2.5s ease-in-out infinite;
  writing-mode: horizontal-tb;
}
@keyframes parentTabPulse {
  0%, 100% { box-shadow: 4px 0 20px rgba(230,92,0,.45); }
  50%       { box-shadow: 4px 0 32px rgba(230,92,0,.80), 0 0 0 4px rgba(230,92,0,.18); }
}
.parent-login-tab:hover {
  background: linear-gradient(180deg, #bf360c 0%, #e65c00 100%);
  color: white;
  width: 42px;
  box-shadow: 4px 0 32px rgba(230,92,0,.7);
  animation: none;
}
.parent-login-icon {
  font-size: 1rem;
  display: block;
}
.parent-login-label {
  font-size: .52rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .8px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  line-height: 1.3;
  text-align: center;
  display: block;
}

/* The slide-out panel */
.parent-login-panel {
  position: absolute;
  left: 36px;
  top: 50%;
  transform: translateY(-50%) translateX(-12px);
  width: 310px;
  background: white;
  border-radius: 0 16px 16px 0;
  box-shadow: 6px 0 40px rgba(11,36,71,.2);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: all .35s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
}
.parent-login-float.open .parent-login-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
  pointer-events: auto;
}
.parent-login-float.open .parent-login-tab {
  background: linear-gradient(180deg, #bf360c 0%, #e65c00 100%);
  border-radius: 0 0 0 0;
  animation: none;
  box-shadow: none;
}

/* Panel sections */
.plp-header {
  background: linear-gradient(135deg, var(--royal), var(--royal-mid));
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 11px;
}
.plp-logo {
  width: 42px; height: 42px;
  border-radius: 50%; object-fit: contain;
  background: white; padding: 3px; flex-shrink: 0;
}
.plp-title { font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-weight: 800; color: white; }
.plp-sub { font-size: .68rem; color: rgba(255,255,255,.6); }
.plp-close {
  margin-left: auto; background: none; border: none;
  color: rgba(255,255,255,.7); font-size: 1.3rem; line-height: 1;
  cursor: pointer; flex-shrink: 0; padding: 0; transition: color .2s;
}
.plp-close:hover { color: white; }

.plp-body { padding: 18px 16px; }

.plp-input-group {
  display: flex; align-items: center; gap: 10px;
  border: 1.5px solid var(--border); border-radius: 8px;
  padding: 9px 12px; margin-bottom: 10px;
  background: var(--off-white); transition: border-color .25s;
}
.plp-input-group:focus-within { border-color: var(--royal); background: white; }
.plp-input-group i { color: var(--muted); font-size: .82rem; flex-shrink: 0; }
.plp-input {
  border: none; background: none; outline: none;
  font-family: 'DM Sans', sans-serif; font-size: .86rem;
  color: var(--dark); width: 100%;
}
.plp-input::placeholder { color: #aaa; }

.plp-submit-btn {
  width: 100%; padding: 11px;
  background: linear-gradient(135deg, var(--royal), var(--royal-mid));
  color: white; border: none; border-radius: 8px;
  font-family: 'DM Sans', sans-serif; font-size: .88rem; font-weight: 700;
  cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: var(--transition); margin-bottom: 10px;
}
.plp-submit-btn:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--royal);
}

.plp-help-link {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  font-size: .78rem; color: var(--muted); text-decoration: none; transition: color .2s;
}
.plp-help-link:hover { color: var(--royal); text-decoration: none; }

.plp-footer {
  background: var(--off-white); padding: 12px 16px;
  border-top: 1px solid var(--border);
}
.plp-contact-row {
  font-size: .76rem; color: var(--muted); display: flex;
  align-items: center; gap: 7px; margin-bottom: 4px;
}
.plp-contact-row:last-child { margin-bottom: 0; }
.plp-contact-row i { color: var(--gold); font-size: .7rem; width: 12px; }

.plp-arrow {
  position: absolute; left: -8px; top: 50%;
  transform: translateY(-50%);
  width: 14px; height: 14px; background: var(--royal);
  clip-path: polygon(100% 0, 100% 100%, 0 50%);
}

/* Responsive */
@media (max-width: 767px) {
  .parent-login-float { top: 55%; }
  .parent-login-panel { width: 280px; }
  .parent-login-tab { width: 32px; padding: 12px 0; }
}