/* ============================================================
   STUDY ABROAD GUIDE — Main Stylesheet
   ============================================================ */

:root {
  --navy:       #1B3A5C;
  --navy-light: #2C5F8A;
  --gold:       #C9952A;
  --gold-light: #E8B84B;
  --cream:      #FAF8F4;
  --white:      #FFFFFF;
  --gray-100:   #F5F6F7;
  --gray-200:   #E8EAED;
  --gray-400:   #9CA3AF;
  --gray-600:   #6B7280;
  --gray-800:   #1F2937;
  --text:       #1A1A2E;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --radius:     12px;
  --shadow-sm:  0 2px 8px rgba(27,58,92,0.08);
  --shadow-md:  0 8px 32px rgba(27,58,92,0.12);
  --shadow-lg:  0 20px 60px rgba(27,58,92,0.16);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Container ── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
.nav.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  transition: color var(--transition);
}
.nav.scrolled .logo { color: var(--navy); }
.logo span { color: var(--gold); }
.nav-links {
  display: flex;
  gap: 36px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.02em;
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav.scrolled .nav-links a { color: var(--gray-600); }
.nav.scrolled .nav-links a:hover,
.nav.scrolled .nav-links a.active { color: var(--navy); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.nav.scrolled .hamburger span { background: var(--navy); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(44,95,138,0.6) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(201,149,42,0.15) 0%, transparent 50%),
    linear-gradient(135deg, #0d2137 0%, #1B3A5C 50%, #1e4a72 100%);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 120px 24px 80px;
  margin: 0 auto;
  text-align: center;
  animation: fadeUp 0.9s ease both;
}
.hero-tag {
  display: inline-block;
  background: rgba(201,149,42,0.15);
  border: 1px solid rgba(201,149,42,0.4);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 2;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s ease infinite;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
}
.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,149,42,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-2px);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* ── STATS ── */
.stats {
  background: var(--navy);
  padding: 48px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 20px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }
.stat-item h3 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--gold-light);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-item p {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── SECTIONS ── */
.section { padding: 100px 0; }
.section-alt { background: var(--cream); }
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}
.section-tag {
  display: inline-block;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.2;
}
.section-sub {
  color: var(--gray-600);
  font-size: 1rem;
  line-height: 1.7;
}

/* ── CARDS ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: all var(--transition);
  animation: fadeUp 0.6s ease both;
  animation-delay: var(--delay, 0s);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.card:hover { 
  transform: translateY(-6px); 
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.card:hover::before { transform: scaleX(1); }
.card-icon {
  font-size: 2.2rem;
  margin-bottom: 20px;
  display: block;
}
.card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 12px;
  font-weight: 600;
}
.card p {
  color: var(--gray-600);
  font-size: 0.93rem;
  line-height: 1.7;
  margin-bottom: 24px;
}
.card-link {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
  transition: gap var(--transition), color var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.card-link:hover { color: var(--navy); gap: 8px; }

/* ── BLOG ── */
.blog-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 48px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.blog-card.featured .blog-img {
  height: 220px;
}
.blog-img {
  height: 180px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.blog-body { padding: 28px; }
.blog-cat {
  display: inline-block;
  background: rgba(201,149,42,0.1);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.blog-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 12px;
}
.blog-card h3 a:hover { color: var(--gold); }
.blog-card p {
  color: var(--gray-600);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 20px;
}
.blog-meta {
  display: flex;
  gap: 16px;
  color: var(--gray-400);
  font-size: 0.8rem;
}
.center-btn { text-align: center; }

/* ── TESTIMONIALS ── */
.testimonials { background: var(--navy); }
.testimonials .section-tag { color: var(--gold-light); }
.testimonials .section-header h2 { color: var(--white); }
.testimonials .section-sub { color: rgba(255,255,255,0.6); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 36px 32px;
  position: relative;
  transition: all var(--transition);
}
.testimonial-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}
.quote-mark {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.7;
}
.testimonial-card p {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 28px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial-author strong {
  display: block;
  color: var(--white);
  font-size: 0.9rem;
}
.testimonial-author span {
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
}

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--gold) 0%, #b8841f 100%);
  padding: 80px 0;
  text-align: center;
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-banner p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  margin-bottom: 36px;
}

/* ── FOOTER ── */
.footer {
  background: #0d2137;
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo { display: inline-block; margin-bottom: 16px; }
.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 260px;
}
.footer-links h4, .footer-newsletter h4 {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold-light); }
.footer-newsletter p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 16px;
}
.newsletter-form {
  display: flex;
  gap: 8px;
}
.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-form input:focus { border-color: var(--gold); }
.newsletter-form button {
  padding: 12px 20px;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background var(--transition);
}
.newsletter-form button:hover { background: var(--gold-light); }
.footer-bottom {
  padding: 24px 0;
  text-align: center;
}
.footer-bottom p {
  color: rgba(255,255,255,0.3);
  font-size: 0.85rem;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1e4a72 100%);
  padding: 140px 24px 80px;
  text-align: center;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--white);
  margin-bottom: 16px;
}
.page-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto;
}

/* ── ABOUT PAGE ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img {
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}
.about-text h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--navy);
  margin-bottom: 20px;
}
.about-text p {
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 36px;
}
.value-item {
  padding: 24px;
  background: var(--cream);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
}
.value-item h4 {
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.value-item p {
  color: var(--gray-600);
  font-size: 0.85rem;
  margin: 0;
}

/* ── RESOURCES PAGE ── */
.resources-filter {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.filter-btn {
  padding: 8px 22px;
  border-radius: 100px;
  border: 2px solid var(--gray-200);
  background: var(--white);
  color: var(--gray-600);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.resource-card {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px;
  background: var(--white);
  transition: all var(--transition);
}
.resource-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.resource-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.tag-visa { background: rgba(27,58,92,0.08); color: var(--navy); }
.tag-scholarship { background: rgba(201,149,42,0.1); color: var(--gold); }
.tag-application { background: rgba(16,185,129,0.1); color: #059669; }
.tag-life { background: rgba(139,92,246,0.1); color: #7c3aed; }
.resource-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.resource-card p {
  color: var(--gray-600);
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: 20px;
}
.resource-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--gray-400);
}
.resource-meta a {
  color: var(--gold);
  font-weight: 600;
  transition: color var(--transition);
}
.resource-meta a:hover { color: var(--navy); }

/* ── BLOG PAGE ── */
.blog-page-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 60px;
  align-items: start;
}
.blog-posts { display: flex; flex-direction: column; gap: 40px; }
.blog-post-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 28px;
  border-bottom: 1px solid var(--gray-200);
  padding-bottom: 40px;
}
.blog-post-img {
  border-radius: var(--radius);
  background: var(--navy);
  height: 160px;
  flex-shrink: 0;
}
.blog-post-card h2 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.35;
}
.blog-post-card h2 a:hover { color: var(--gold); }
.blog-post-card p {
  color: var(--gray-600);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 16px;
}
.blog-sidebar { position: sticky; top: 100px; }
.sidebar-widget {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 28px;
}
.sidebar-widget h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
}
.sidebar-categories { display: flex; flex-direction: column; gap: 10px; }
.sidebar-categories a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--gray-600);
  font-size: 0.9rem;
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-200);
  transition: color var(--transition);
}
.sidebar-categories a:hover { color: var(--gold); }
.sidebar-categories span {
  background: var(--gray-200);
  color: var(--gray-600);
  font-size: 0.75rem;
  padding: 2px 8px;
  border-radius: 100px;
}

/* ── CONTACT PAGE ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 16px;
}
.contact-info p {
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 36px;
}
.contact-items { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-item-icon {
  width: 44px; height: 44px;
  background: rgba(201,149,42,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-item h4 {
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.contact-item p { color: var(--gray-600); font-size: 0.88rem; margin: 0; }
.contact-form {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 48px;
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 4px rgba(27,58,92,0.08);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-success {
  display: none;
  text-align: center;
  padding: 20px;
  background: rgba(16,185,129,0.08);
  border: 1px solid rgba(16,185,129,0.2);
  border-radius: 8px;
  color: #059669;
  font-weight: 500;
  margin-top: 16px;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 0.9; }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid .blog-card.featured { grid-column: 1 / -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .blog-page-grid { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--navy);
    align-items: center;
    justify-content: center;
    gap: 36px;
    z-index: 99;
  }
  .nav-links.open a { font-size: 1.4rem; color: var(--white); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .cards-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .resources-grid { grid-template-columns: 1fr; }
  .blog-post-card { grid-template-columns: 1fr; }
  .blog-post-img { height: 200px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px; }
  .about-values { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
}

/* ── NAV CTA BUTTON ── */
.nav-cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: 8px;
  font-weight: 600 !important;
  transition: background var(--transition), transform var(--transition) !important;
}
.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); }
.nav-cta::after { display: none !important; }

/* ── LOGO IMAGE ── */
.logo-img { height: 38px; width: auto; display: block; }
.logo-img-footer { height: 44px; width: auto; display: block; margin-bottom: 16px; filter: brightness(0) invert(1); }

/* ── HERO STATS INLINE ── */
.hero-stats-inline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin: 32px 0;
  flex-wrap: wrap;
}
.hero-stats-inline > div { text-align: center; }
.hero-stats-inline strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold-light);
  font-weight: 700;
  line-height: 1;
}
.hero-stats-inline span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.15); }

/* ── STEPS GRID ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 32px; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--navy));
  z-index: 0;
}
.step-item { text-align: center; padding: 0 20px; position: relative; z-index: 1; }
.step-number {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  border: 3px solid var(--gold);
  box-shadow: 0 0 0 6px var(--white);
}
.section-alt .step-number { box-shadow: 0 0 0 6px var(--cream); }
.step-item h3 { font-family: var(--font-display); font-size: 1rem; color: var(--navy); margin-bottom: 10px; }
.step-item p { color: var(--gray-600); font-size: 0.86rem; line-height: 1.65; }

/* ── SERVICES PREVIEW GRID ── */
.services-preview-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.service-preview-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px 24px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.service-preview-item:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); transform: translateX(4px); }
.service-preview-item > span { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.service-preview-item h4 { color: var(--navy); font-size: 0.92rem; font-weight: 700; margin-bottom: 4px; }
.service-preview-item p { color: var(--gray-600); font-size: 0.83rem; line-height: 1.55; margin: 0; }

/* ── CONCERNS GRID ── */
.concerns-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.concern-item {
  padding: 28px; border: 1px solid var(--gray-200);
  border-radius: var(--radius); background: var(--white);
  transition: all var(--transition);
}
.concern-item:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.concern-icon { font-size: 1.8rem; margin-bottom: 14px; }
.concern-item h4 { font-family: var(--font-display); font-size: 1rem; color: var(--navy); margin-bottom: 8px; }
.concern-item p { color: var(--gray-600); font-size: 0.88rem; line-height: 1.7; margin: 0; }

/* ── PRICING ── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; align-items: start; }
.pricing-grid-full { align-items: stretch; }
.pricing-card {
  background: var(--white); border: 2px solid var(--gray-200);
  border-radius: 16px; padding: 40px 32px;
  position: relative; transition: all var(--transition);
  display: flex; flex-direction: column;
}
.pricing-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.pricing-card.featured-plan { background: var(--navy); border-color: var(--navy); transform: scale(1.03); }
.pricing-card.featured-plan:hover { transform: scale(1.03) translateY(-4px); }
.plan-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--white);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 5px 18px; border-radius: 100px; white-space: nowrap;
}
.plan-name { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.featured-plan .plan-name { color: var(--white); }
.plan-price { font-size: 2rem; font-weight: 700; color: var(--gold); margin-bottom: 16px; line-height: 1; }
.plan-desc { color: var(--gray-600); font-size: 0.87rem; line-height: 1.6; margin-bottom: 24px; }
.plan-features { list-style: none; margin-bottom: 32px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.plan-features li { color: var(--gray-600); font-size: 0.88rem; padding-left: 4px; }
.featured-plan .plan-features li { color: rgba(255,255,255,0.82); }
.btn-outline-navy {
  display: inline-flex; align-items: center; justify-content: center;
  width: 100%; padding: 13px 28px; border-radius: 8px;
  font-family: var(--font-body); font-size: 0.92rem; font-weight: 600;
  border: 2px solid var(--navy); color: var(--navy); background: transparent;
  cursor: pointer; transition: all var(--transition); text-align: center;
}
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }
.pricing-card .btn-primary { display: flex; width: 100%; justify-content: center; }

/* ── FAQ GRID ── */
.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.faq-item { padding: 24px 28px; background: var(--cream); border-radius: var(--radius); border-left: 4px solid var(--gold); }
.faq-item h4 { font-family: var(--font-display); font-size: 0.98rem; color: var(--navy); margin-bottom: 8px; }
.faq-item p { color: var(--gray-600); font-size: 0.88rem; line-height: 1.7; margin: 0; }

/* ── SERVICES FULL GRID ── */
.services-full-grid { display: flex; flex-direction: column; gap: 16px; }
.service-full-card {
  display: grid; grid-template-columns: 44px 52px 1fr; gap: 20px; align-items: start;
  padding: 24px 28px; border: 1px solid var(--gray-200);
  border-radius: var(--radius); background: var(--white); transition: all var(--transition);
}
.service-full-card:hover { border-color: var(--gold); box-shadow: var(--shadow-md); transform: translateX(6px); }
.service-full-number { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--gray-200); line-height: 1; padding-top: 4px; }
.service-full-icon { font-size: 1.8rem; }
.service-full-body h3 { font-family: var(--font-display); font-size: 1.05rem; color: var(--navy); margin-bottom: 6px; }
.service-full-body p { color: var(--gray-600); font-size: 0.88rem; line-height: 1.7; margin: 0; }

/* ── COURSES GRID ── */
.courses-grid { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.course-tag {
  padding: 10px 22px; background: var(--white);
  border: 1.5px solid var(--gray-200); border-radius: 100px;
  font-size: 0.88rem; font-weight: 500; color: var(--navy);
  transition: all var(--transition);
}
.course-tag:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* ── HOW IT WORKS TIMELINE ── */
.steps-timeline { display: flex; flex-direction: column; gap: 0; max-width: 760px; margin: 0 auto; }
.timeline-step {
  display: grid; grid-template-columns: 56px 1fr; gap: 28px;
  align-items: start; position: relative; padding-bottom: 40px;
}
.timeline-step:last-child { padding-bottom: 0; }
.timeline-step::before {
  content: '';
  position: absolute;
  left: 27px; top: 56px; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), var(--navy-light));
}
.timeline-step:last-child::before { display: none; }
.timeline-number {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--navy); color: var(--gold-light);
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  border: 3px solid var(--gold); flex-shrink: 0; position: relative; z-index: 1;
}
.timeline-content { padding-top: 12px; }
.timeline-content h3 { font-family: var(--font-display); font-size: 1.2rem; color: var(--navy); margin-bottom: 10px; }
.timeline-content p { color: var(--gray-600); line-height: 1.75; font-size: 0.95rem; }

/* ── CHECKLIST GRID ── */
.checklist-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-bottom: 48px; }
.checklist-item {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 28px; background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius); transition: all var(--transition);
}
.checklist-item:hover { border-color: var(--gold); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.checklist-icon { font-size: 2rem; flex-shrink: 0; margin-top: 2px; }
.checklist-step {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 6px;
}
.checklist-body h3 { font-family: var(--font-display); font-size: 1.05rem; color: var(--navy); margin-bottom: 8px; }
.checklist-body p { color: var(--gray-600); font-size: 0.88rem; line-height: 1.7; margin: 0; }
.process-note {
  text-align: center; background: var(--cream); padding: 36px 40px;
  border-radius: var(--radius); border-left: 4px solid var(--gold);
}
.process-note p { color: var(--gray-600); font-size: 1rem; line-height: 1.7; }

/* ── REAL PHOTOS GALLERY (About page) ── */
.photos-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 48px 0; }
.photo-item { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; }
.photo-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.photo-item:hover img { transform: scale(1.05); }

/* ── INTAKE BANNER ── */
.intake-banner {
  background: linear-gradient(135deg, #6b1a2b 0%, #9b2335 100%);
  border-radius: var(--radius);
  padding: 36px 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  margin: 48px 0; flex-wrap: wrap;
}
.intake-banner h3 { font-family: var(--font-display); font-size: 1.5rem; color: var(--white); margin-bottom: 8px; }
.intake-banner p { color: rgba(255,255,255,0.8); font-size: 0.95rem; }
.intake-banner .btn-white { white-space: nowrap; }

/* ── PARTNER UNIVERSITIES ── */
.universities-note {
  background: var(--cream); border-radius: var(--radius); padding: 32px 36px;
  text-align: center; margin-top: 48px;
}
.universities-note h3 { font-family: var(--font-display); font-size: 1.3rem; color: var(--navy); margin-bottom: 12px; }
.universities-note p { color: var(--gray-600); font-size: 0.92rem; line-height: 1.7; max-width: 700px; margin: 0 auto 20px; }
.uni-tags { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.uni-tag {
  padding: 6px 16px; background: var(--white); border: 1px solid var(--gray-200);
  border-radius: 6px; font-size: 0.82rem; font-weight: 600; color: var(--navy);
}

/* ── CONTACT INFO UPDATE ── */
.contact-phone {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--navy); font-weight: 600; font-size: 1.05rem; margin-top: 4px;
}

/* ── RESPONSIVE ADDITIONS ── */
@media (max-width: 1024px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .steps-grid::before { display: none; }
  .services-preview-grid { grid-template-columns: 1fr; }
  .concerns-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured-plan { transform: none; }
  .faq-grid { grid-template-columns: 1fr; }
  .checklist-grid { grid-template-columns: 1fr; }
  .service-full-card { grid-template-columns: 44px 1fr; }
  .service-full-icon { display: none; }
  .photos-gallery { grid-template-columns: repeat(2, 1fr); }
  .intake-banner { flex-direction: column; text-align: center; }
}
@media (max-width: 768px) {
  .steps-grid { grid-template-columns: 1fr; }
  .concerns-grid { grid-template-columns: 1fr; }
  .photos-gallery { grid-template-columns: 1fr; }
  .service-full-card { grid-template-columns: 1fr; }
  .service-full-number { display: none; }
}

/* ── LOGO SIZING OVERRIDES ── */
.logo-img {
  height: 52px;
  width: auto;
  display: block;
}
.logo-img-hero {
  height: 58px;
  width: auto;
  display: block;
  /* SVG is navy+gold — keep as-is on dark background, it reads well */
  filter: brightness(0) invert(1);
}
.logo-img-footer {
  height: 58px;
  width: auto;
  display: block;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

/* nav padding tweak for bigger logo */
.nav-inner { align-items: center; min-height: 64px; }
.nav { padding: 12px 0; }
.nav.scrolled { padding: 8px 0; }

/* ══════════════════════════════════════════════
   HERO WITH FLYER BACKGROUND + SCROLL FADE
══════════════════════════════════════════════ */
.hero-with-flyer {
  position: relative;
  overflow: hidden;
  background: #0a1e33; /* fallback dark base */
}

/* The flyer image — sits behind everything, fades on scroll */
.hero-flyer-img {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg.png');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  opacity: 0.38;          /* subtle — lets text breathe */
  transform: scale(1.04); /* slight zoom so edges don't show on parallax */
  transition: opacity 0.1s linear;
  will-change: opacity, transform;
  z-index: 0;
}

/* Gradient dark overlay — navy at bottom, transparent at top */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 30, 51, 0.45) 0%,
    rgba(10, 30, 51, 0.60) 50%,
    rgba(10, 30, 51, 0.88) 100%
  );
  z-index: 1;
}

/* All hero content sits above the image layers */
.hero-with-flyer .hero-content,
.hero-with-flyer .hero-scroll {
  position: relative;
  z-index: 2;
}

/* ── LOGO: white variant on dark hero ── */
.logo-img-hero {
  height: 54px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1); /* makes navy logo appear white */
}

/* When nav scrolls and becomes white-background, restore logo colours */
.nav.scrolled .logo-img-hero {
  filter: none; /* show full navy+gold colours */
}


/* ══════════════════════════════════════════════
   WHATSAPP FLOATING BUTTON
══════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  z-index: 9999;
  transition: all 0.3s ease;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
}
.whatsapp-float svg { display: block; }

/* Pulsing ring animation */
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 3px solid rgba(37, 211, 102, 0.45);
  animation: wa-pulse 2s ease-out infinite;
}
@keyframes wa-pulse {
  0%   { transform: scale(1);   opacity: 0.7; }
  100% { transform: scale(1.5); opacity: 0;   }
}

/* Tooltip */
.whatsapp-tooltip {
  position: absolute;
  right: 72px;
  background: #1a1a1a;
  color: white;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: #1a1a1a;
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* ══════════════════════════════════════════════
   TESTIMONIALS PAGE STYLES
══════════════════════════════════════════════ */

/* Stats bar */
.testi-stats-bar {
  background: var(--navy);
  padding: 32px 0;
}
.testi-stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.testi-stat {
  text-align: center;
  padding: 16px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.testi-stat:last-child { border-right: none; }
.testi-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold-light);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}
.testi-stat span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Featured testimonials */
.featured-testimonials {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.featured-testi-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}
.featured-testi-card:nth-child(even) {
  grid-template-columns: 1fr 220px;
}
.featured-testi-card:nth-child(even) .featured-testi-img {
  order: 2;
}
.featured-testi-card:nth-child(even) .featured-testi-body {
  order: 1;
}
.featured-testi-img {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
}
.featured-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  color: white;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid rgba(255,255,255,0.4);
}
.featured-testi-body {
  padding: 40px 44px;
  background: var(--white);
}
.star-row {
  color: #F59E0B;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.featured-testi-body blockquote {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--gray-700);
  font-style: italic;
  margin: 0 0 24px;
  border: none;
  padding: 0;
}
.featured-testi-author strong {
  display: block;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 2px;
}
.featured-testi-author span {
  display: block;
  color: var(--gray-500);
  font-size: 0.88rem;
}
.testi-country {
  margin-top: 6px !important;
  font-size: 0.82rem !important;
  color: var(--gold) !important;
  font-weight: 600;
}

/* Grid testimonials */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card-full {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px;
  transition: all var(--transition);
}
.testi-card-full:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--gold);
}
.testi-top {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}
.testi-avatar-sm {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: white;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testi-top > div:nth-child(2) { flex: 1; }
.testi-top strong {
  display: block;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 700;
}
.testi-top span {
  color: var(--gray-500);
  font-size: 0.78rem;
  line-height: 1.4;
}
.testi-stars { color: #F59E0B; font-size: 0.85rem; flex-shrink: 0; }
.testi-card-full > p {
  color: var(--gray-600);
  font-size: 0.9rem;
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 14px;
}
.testi-destination {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
}

/* Submit story box */
.submit-story-box {
  background: linear-gradient(135deg, var(--navy) 0%, #2C5F8A 100%);
  border-radius: 16px;
  padding: 52px 56px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.submit-story-text .section-tag { color: var(--gold-light); }
.submit-story-text h2 { color: var(--white); font-size: 2rem; margin-bottom: 16px; }
.submit-story-text p { color: rgba(255,255,255,0.75); line-height: 1.75; margin-bottom: 12px; }

/* ══════════════════════════════════════════════
   CONTACT FORM — SUCCESS / ERROR STATES
══════════════════════════════════════════════ */
.form-success {
  margin-top: 16px;
  padding: 16px 20px;
  background: #d1fae5;
  border: 1px solid #6ee7b7;
  border-radius: var(--radius);
  color: #065f46;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.6;
}
.form-error {
  margin-top: 16px;
  padding: 16px 20px;
  background: #fee2e2;
  border: 1px solid #fca5a5;
  border-radius: var(--radius);
  color: #991b1b;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.6;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .testi-stats-grid { grid-template-columns: repeat(3, 1fr); }
  .testi-stat:nth-child(3) { border-right: none; }
  .featured-testi-card,
  .featured-testi-card:nth-child(even) {
    grid-template-columns: 1fr;
  }
  .featured-testi-card:nth-child(even) .featured-testi-img,
  .featured-testi-card:nth-child(even) .featured-testi-body { order: unset; }
  .featured-testi-img { min-height: 160px; }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .submit-story-box { grid-template-columns: 1fr; text-align: center; }
}
@media (max-width: 768px) {
  .testi-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .featured-testi-body { padding: 28px 24px; }
  .whatsapp-float { bottom: 20px; right: 20px; width: 54px; height: 54px; }
}

/* ── DESTINATION STATS BAR ── */
.dest-stats-bar { padding: 28px 0; }
.dest-stats-grid {
  display: grid; grid-template-columns: repeat(5,1fr);
  gap: 0; text-align: center;
}
.dest-stats-grid > div { padding: 12px; border-right: 1px solid rgba(255,255,255,0.2); }
.dest-stats-grid > div:last-child { border-right: none; }
.dest-stats-grid strong { display: block; font-family: var(--font-display); font-size: 1.3rem; color: white; font-weight: 700; line-height: 1.2; }
.dest-stats-grid span { font-size: 0.75rem; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 0.07em; }

@media (max-width: 768px) {
  .dest-stats-grid { grid-template-columns: repeat(2,1fr); }
  .dest-stats-grid > div { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); }
}


/* ── AI CHAT WIDGET ── */
.ai-chat-toggle {
  position: fixed; bottom: 100px; right: 28px;
  width: 58px; height: 58px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), #2C5F8A);
  border: none; cursor: pointer; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(27,58,92,0.4); z-index: 9998;
  transition: all 0.3s ease;
}
.ai-chat-toggle:hover { transform: scale(1.1); }
.chat-badge {
  position: absolute; top: -4px; right: -4px;
  background: var(--gold); color: white; border-radius: 50%;
  width: 20px; height: 20px; font-size: 0.72rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  animation: badge-pop 0.4s ease;
}
@keyframes badge-pop { 0%{transform:scale(0)} 70%{transform:scale(1.2)} 100%{transform:scale(1)} }

.ai-chat-widget {
  position: fixed; bottom: 170px; right: 28px;
  width: 360px; background: white;
  border-radius: 20px; box-shadow: 0 8px 40px rgba(0,0,0,0.18);
  z-index: 9997; display: none; flex-direction: column;
  overflow: hidden; border: 1px solid var(--gray-200);
  animation: chatSlideUp 0.3s ease;
}
.ai-chat-widget.open { display: flex; }
@keyframes chatSlideUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }

.ai-chat-header {
  background: linear-gradient(135deg, var(--navy), #2C5F8A);
  padding: 16px 18px; display: flex; align-items: center;
  justify-content: space-between;
}
.ai-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--gold); color: white;
  font-family: var(--font-display); font-size: 0.85rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.ai-chat-header strong { color: white; font-size: 0.95rem; }
.ai-chat-close { background: none; border: none; color: rgba(255,255,255,0.7); cursor: pointer; font-size: 1.1rem; padding: 4px; }

.ai-chat-messages {
  padding: 16px; height: 300px; overflow-y: auto;
  display: flex; flex-direction: column; gap: 12px;
  scroll-behavior: smooth;
}
.ai-msg { display: flex; }
.ai-msg.user { justify-content: flex-end; }
.ai-bubble {
  max-width: 85%; padding: 12px 16px;
  border-radius: 16px; font-size: 0.88rem; line-height: 1.6;
  background: var(--cream); color: var(--navy); border-bottom-left-radius: 4px;
}
.ai-msg.user .ai-bubble {
  background: var(--navy); color: white; border-bottom-left-radius: 16px; border-bottom-right-radius: 4px;
}
.ai-typing .ai-bubble { background: var(--cream); }
.typing-dots span {
  display: inline-block; width: 7px; height: 7px; border-radius: 50%;
  background: var(--gray-400); margin: 0 2px;
  animation: typing 1.2s ease infinite;
}
.typing-dots span:nth-child(2){animation-delay:0.2s}
.typing-dots span:nth-child(3){animation-delay:0.4s}
@keyframes typing { 0%,60%,100%{transform:translateY(0)} 30%{transform:translateY(-6px)} }

.ai-quick-replies { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.ai-quick-replies button {
  padding: 7px 14px; border: 1.5px solid var(--navy); border-radius: 100px;
  background: white; color: var(--navy); font-size: 0.78rem; font-weight: 600;
  cursor: pointer; transition: all 0.2s; font-family: var(--font-body);
}
.ai-quick-replies button:hover { background: var(--navy); color: white; }

.ai-chat-input-wrap {
  padding: 12px 14px; border-top: 1px solid var(--gray-200);
  display: flex; gap: 10px; align-items: center;
}
.ai-chat-input-wrap input {
  flex: 1; padding: 10px 14px; border: 1.5px solid var(--gray-200);
  border-radius: 100px; font-family: var(--font-body); font-size: 0.88rem;
  outline: none; color: var(--navy);
}
.ai-chat-input-wrap input:focus { border-color: var(--navy); }
.ai-send-btn {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--navy); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s; flex-shrink: 0;
}
.ai-send-btn:hover { background: var(--gold); }

@media (max-width: 480px) {
  .ai-chat-widget { width: calc(100vw - 32px); right: 16px; bottom: 160px; }
  .ai-chat-toggle { right: 16px; bottom: 90px; }
}


/* ── VIDEO TESTIMONIALS ── */
.video-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.video-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); overflow: hidden; transition: all var(--transition); }
.video-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.video-thumb { position: relative; aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center; cursor: pointer; }
.play-btn { width: 60px; height: 60px; border-radius: 50%; background: rgba(255,255,255,0.92); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: var(--navy); transition: all 0.2s; box-shadow: 0 4px 16px rgba(0,0,0,0.2); padding-left: 5px; }
.video-thumb:hover .play-btn { transform: scale(1.1); background: white; }
.video-duration { position: absolute; bottom: 10px; right: 12px; background: rgba(0,0,0,0.7); color: white; font-size: 0.75rem; font-weight: 600; padding: 3px 8px; border-radius: 4px; }
.video-info { padding: 16px 18px; }
.video-info strong { display: block; color: var(--navy); font-size: 0.92rem; margin-bottom: 4px; }
.video-info span { color: var(--gray-500); font-size: 0.83rem; }
.btn-navy { display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px; border-radius: 8px; background: var(--navy); color: white; font-family: var(--font-body); font-weight: 600; font-size: 0.92rem; transition: all 0.2s; }
.btn-navy:hover { background: #2C5F8A; transform: translateY(-2px); }
@media (max-width:768px) { .video-grid { grid-template-columns: 1fr; } }

/* ── NEW ADDITIONS ── */
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border: 2px solid var(--navy);
  color: var(--navy);
  border-radius: 8px;
  font-weight: 700;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all 0.2s ease;
  background: none;
  cursor: pointer;
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}
/* Destination cards hover */
[style*="background:rgba(255,255,255,0.06)"]:hover {
  background: rgba(255,255,255,0.12) !important;
  transform: translateY(-3px);
}
/* Ensure all copyright shows 2026 */
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); }
