/* ============================================================
   SHAREMATE – THEME CSS
   Single stylesheet for all pages
   ============================================================ */

/* ─── CSS Variables ──────────────────────────────────────────── */
:root {
  --primary:   #a50003;
  --primary-d: #7a0002;
  --secondary: #D93538;
  --accent:    #D93538;
  --dark:      #3A2766;
  --text:      #3F3D42;
  --light:     #FBFBFB;
  --border:    #e4e4e8;
  --gradient:  linear-gradient(135deg, #a50003 0%, #3A2766 100%);
  --dot-bg: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* ─── Base Reset ─────────────────────────────────────────────── */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
}

/* ─── Animations ──────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}
@keyframes pulse-ring {
  0%   { transform: scale(0.8); opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}
.fade-up { animation: fadeUp  0.75s ease both; }
.fade-in { animation: fadeIn  0.75s ease both; }
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.30s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.60s; }
.delay-5 { animation-delay: 0.75s; }
.float   { animation: float 4s ease-in-out infinite; }

/* ─── Navbar ─────────────────────────────────────────────────── */
#mainNav {
  background: rgb(255 254 254);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
#mainNav.scrolled { box-shadow: 0 4px 24px rgba(165,0,3,.12); }

/* Logo image */
.brand-logo {
  height: 38px;
  width: auto;
  object-fit: contain;
  display: block;
}
/* Fallback text brand (kept for compatibility) */
.navbar-brand-text {
  font-weight: 800;
  font-size: 1.5rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.navbar-brand-text span { color: #D93538; -webkit-text-fill-color: #D93538; }

.nav-link {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text) !important;
  padding: 0.5rem 0.9rem !important;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.nav-link:hover,
.nav-link.active-page { background: #ffe0e0; color: var(--primary) !important; }

.btn-franchise {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  transition: all 0.3s;
  text-decoration: none;
}
.btn-franchise:hover { background: var(--primary); color: #fff; }

.btn-signup {
  background: var(--gradient);
  border: none;
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.47rem 1.2rem;
  border-radius: 50px;
  transition: opacity 0.3s, transform 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-signup:hover { opacity: 0.9; transform: translateY(-1px); color: #fff; }

/* ─── Section Shared ──────────────────────────────────────────── */
section { padding: 90px 0; }
.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, #ffe0e0, #ffc5c5);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-title span {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-sub { font-size: 1rem; color: #64748b; line-height: 1.7; max-width: 560px; }
.divider { width: 60px; height: 4px; background: var(--gradient); border-radius: 8px; margin: 1rem 0; }

/* ─── Hero (Homepage) ─────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  background: var(--gradient);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 100px 0 60px;
}
#hero::before { content: ''; position: absolute; inset: 0; background: var(--dot-bg); }
#hero .blob { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.25; }
#hero .blob-1 { width: 500px; height: 500px; background: #D93538; top: -100px; right: -120px; }
#hero .blob-2 { width: 350px; height: 350px; background: #a50003; bottom: -80px; left: -80px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1.5rem;
}
.hero-badge .dot { width: 8px; height: 8px; background: #4ade80; border-radius: 50%; }

#hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.4rem;
}
#hero h1 span { color: #ffd166; }
#hero p.lead { font-size: 1.1rem; color: rgba(255,255,255,0.85); line-height: 1.7; max-width: 540px; }

.hero-features { display: flex; flex-wrap: wrap; gap: 12px; margin: 1.8rem 0; }
.hero-feat-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 0.84rem;
  font-weight: 600;
  color: #fff;
}
.hero-feat-chip i { color: #ffa0a0; font-size: 0.9rem; }

.btn-hero-primary {
  background: #fff;
  color: var(--primary);
  font-weight: 700;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  border: none;
  font-size: 0.95rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  transition: all 0.3s;
  text-decoration: none;
}
.btn-hero-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(0,0,0,0.2); color: var(--primary-d); }

.btn-hero-outline {
  background: transparent;
  color: #fff;
  font-weight: 600;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.5);
  font-size: 0.95rem;
  transition: all 0.3s;
  text-decoration: none;
}
.btn-hero-outline:hover { background: rgba(255,255,255,0.15); border-color: #fff; color: #fff; }

/* Hero card / dashboard mockup */
.hero-visual { position: relative; }
.hero-card {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 24px;
  padding: 2rem;
  color: #fff;
}
.hero-card-inner { border-radius: 18px; overflow: hidden; }
.hero-stat-pill {
  position: absolute;
  background: #fff;
  border-radius: 16px;
  padding: 12px 20px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.hero-stat-pill .icon-wrap { width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1rem; }
.pill-1 { top: -20px; right: -10px; }
.pill-2 { bottom: 20px; left: -20px; }
.pill-3 { top: 50%; right: -30px; transform: translateY(-50%); }

/* Dashboard mockup */
.dashboard-mock { background: linear-gradient(145deg, #3d0001, #4d0001); border-radius: 16px; padding: 1.5rem; min-height: 320px; }
.mock-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.2rem; }
.mock-dots { display: flex; gap: 6px; }
.mock-dots span { width: 10px; height: 10px; border-radius: 50%; }
.mock-dots .d1 { background: #ef4444; }
.mock-dots .d2 { background: #a50003; }
.mock-dots .d3 { background: #22c55e; }
.mock-title { font-size: 0.75rem; color: rgba(255,255,255,0.5); }
.mock-bar { height: 8px; border-radius: 8px; margin-bottom: 0.7rem; background: rgba(255,255,255,0.08); overflow: hidden; }
.mock-bar-fill { height: 100%; border-radius: 8px; }
.mock-subject { font-size: 0.7rem; color: rgba(255,255,255,0.55); margin-bottom: 0.3rem; }
.mock-score { font-size: 0.75rem; font-weight: 700; color: #fff; margin-bottom: 0.2rem; }
.mock-course-pill { display: inline-block; background: rgba(255,255,255,0.1); border-radius: 8px; padding: 6px 12px; font-size: 0.7rem; color: rgba(255,255,255,0.8); margin: 3px 3px 3px 0; }
.mock-avatar-wrap { width: 28px; height: 28px; border-radius: 50%; border: 2px solid #4d0001; overflow: hidden; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 700; color: #fff; margin-right: -8px; }

/* ─── Page Hero (Inner pages) ─────────────────────────────────── */
.page-hero {
  background: var(--gradient);
  padding: 130px 0 70px;
  position: relative;
  overflow: hidden;
}
.page-hero::before { content: ''; position: absolute; inset: 0; background: var(--dot-bg); }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; color: #fff; margin-bottom: 1rem; }
.page-hero p.lead { color: rgba(255,255,255,0.85); font-size: 1.05rem; max-width: 640px; margin: 0 auto; }

/* Breadcrumb */
.breadcrumb { --bs-breadcrumb-divider: '›'; }
.breadcrumb-item a { color: rgba(255,255,255,0.7); text-decoration: none; }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }
.breadcrumb-item.active { color: #fff; }

/* Franchise page hero stats */
.hero-stats { display: flex; justify-content: center; flex-wrap: wrap; gap: 1.5rem; margin-top: 2rem; }
.hero-stat { background: rgba(255,255,255,0.15); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.25); border-radius: 16px; padding: 1rem 1.8rem; text-align: center; }
.hero-stat-num { font-size: 1.8rem; font-weight: 900; color: #fff; line-height: 1; }
.hero-stat-lbl { font-size: 0.78rem; color: rgba(255,255,255,0.75); margin-top: 0.3rem; }

/* ─── Stats Section ───────────────────────────────────────────── */
#stats { background: #fff; padding: 70px 0; border-bottom: 1px solid var(--border); }
.stat-card { text-align: center; padding: 2rem 1rem; }
.stat-icon { width: 64px; height: 64px; border-radius: 18px; display: inline-flex; align-items: center; justify-content: center; font-size: 1.6rem; margin-bottom: 1rem; }
.stat-number {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.4rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { font-size: 0.9rem; color: #64748b; font-weight: 500; }

/* About page stats */
#stats-about { background: #FFF6DB; }
.stat-item { text-align: center; }
.stat-num { font-size: 2.8rem; font-weight: 900; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; margin-bottom: 0.4rem; }
.stat-lbl { font-size: 0.9rem; color: #64748b; font-weight: 500; }

/* ─── Features ────────────────────────────────────────────────── */
#features { background: #FFF6DB; }
.feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  height: 100%;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient);
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(165,0,3,0.12); border-color: transparent; }
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon { width: 56px; height: 56px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 1.2rem; }
.feature-title { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 0.5rem; }
.feature-text { font-size: 0.88rem; color: #64748b; line-height: 1.6; }

/* ─── Courses ─────────────────────────────────────────────────── */
#courses { background: #fff; }
.course-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.8rem 1.4rem;
  height: 100%;
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
}
.course-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(165,0,3,0.12); border-color: var(--primary); }
.course-icon { width: 70px; height: 70px; border-radius: 20px; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; margin: 0 auto 1rem; }
.course-name { font-size: 0.95rem; font-weight: 700; color: var(--dark); margin-bottom: 0.4rem; }
.course-sub  { font-size: 0.8rem; color: #94a3b8; }

/* ─── About / Why Choose ──────────────────────────────────────── */
#about { background: #FFF6DB; }
.about-img-wrap { position: relative; }
.about-main-img { border-radius: 24px; width: 100%; object-fit: cover; box-shadow: 0 20px 60px rgba(58,39,102,0.15); }
.about-badge-card {
  position: absolute;
  background: #fff;
  border-radius: 16px;
  padding: 14px 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  gap: 12px;
}
.about-badge-card .num { font-size: 1.4rem; font-weight: 800; color: var(--primary); }
.about-badge-card .lbl { font-size: 0.75rem; color: #64748b; font-weight: 500; line-height: 1.3; }
.about-badge-1 { bottom: -20px; left: -20px; }
.about-badge-2 { top: -20px; right: -20px; }
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; padding: 0.7rem 0; font-size: 0.95rem; color: var(--text); font-weight: 500; border-bottom: 1px solid var(--border); }
.check-list li:last-child { border: none; }
.check-list li i { color: #22c55e; font-size: 1.1rem; margin-top: 2px; }

/* About page specific */
.about-intro { background: #fff; }
.about-feature-list { list-style: none; padding: 0; }
.about-feature-list li { display: flex; align-items: flex-start; gap: 12px; padding: 0.75rem 0; border-bottom: 1px solid var(--border); font-size: 0.95rem; color: var(--text); font-weight: 500; }
.about-feature-list li:last-child { border: none; }
.about-feature-list li i { color: #22c55e; font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; }
.info-box { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 1.4rem 1.6rem; display: flex; align-items: center; gap: 16px; }
.info-box .num { font-size: 2rem; font-weight: 900; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.info-box .lbl { font-size: 0.82rem; color: #64748b; font-weight: 500; line-height: 1.4; }

/* Founder card */
#founder { background: #fff; }
.founder-card { background: var(--dark); border-radius: 24px; padding: 3rem; color: #fff; text-align: center; }
.founder-avatar { width: 100px; height: 100px; border-radius: 50%; background: var(--gradient); display: flex; align-items: center; justify-content: center; font-size: 2.5rem; font-weight: 900; color: #fff; margin: 0 auto 1.5rem; border: 4px solid rgba(255,255,255,0.2); }
.founder-name { font-size: 1.4rem; font-weight: 800; margin-bottom: 0.3rem; }
.founder-title { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin-bottom: 1.5rem; }
.founder-quote { font-size: 1rem; color: rgba(255,255,255,0.8); line-height: 1.8; font-style: italic; max-width: 500px; margin: 0 auto; }

/* Mission / Vision cards */
#mission { background: #FFF6DB; }
.mv-card { background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 2rem 1.8rem; height: 100%; transition: transform 0.3s, box-shadow 0.3s; }
.mv-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(165,0,3,0.1); }
.mv-icon { width: 56px; height: 56px; border-radius: 16px; background: linear-gradient(135deg, #ffe0e0, #ffc5c5); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 1.2rem; }
.mv-title { font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 0.6rem; }
.mv-text { font-size: 0.9rem; color: #64748b; line-height: 1.7; }

/* Journey timeline */
#journey { background: #fff; }
.timeline { position: relative; padding-left: 30px; }
.timeline::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: linear-gradient(180deg, #a50003, #3A2766); border-radius: 2px; }
.timeline-item { position: relative; margin-bottom: 2rem; }
.timeline-item::before { content: ''; position: absolute; left: -37px; top: 6px; width: 14px; height: 14px; border-radius: 50%; background: var(--gradient); border: 3px solid #fff; box-shadow: 0 0 0 2px var(--primary); }
.timeline-year { font-size: 0.78rem; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.3rem; }
.timeline-title { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 0.3rem; }
.timeline-text { font-size: 0.88rem; color: #64748b; line-height: 1.6; }

/* ─── Pricing ─────────────────────────────────────────────────── */
#pricing, #plans { background: #FFF6DB; }
.pricing-card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  height: 100%;
  position: relative;
  transition: all 0.3s;
}
.pricing-card.popular {
  border-color: var(--primary);
  transform: scale(1.04);
  box-shadow: 0 20px 70px rgba(165,0,3,0.18);
}
.pricing-card:hover { box-shadow: 0 20px 60px rgba(165,0,3,0.15); }
.popular-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 50px;
  white-space: nowrap;
}
.plan-icon { font-size: 2.4rem; margin-bottom: 1rem; }
.plan-name { font-size: 1.15rem; font-weight: 800; color: var(--dark); margin-bottom: 0.3rem; }
.plan-tagline { font-size: 0.82rem; color: #64748b; margin-bottom: 1.5rem; }
.plan-price { font-size: 2.8rem; font-weight: 900; color: var(--dark); line-height: 1; }
.plan-price sup { font-size: 1.4rem; font-weight: 700; color: var(--primary); }
.plan-price sub { font-size: 1.1rem; font-weight: 600; color: #64748b; }
.plan-price .price-original { font-size: 1.1rem; font-weight: 600; color: #94a3b8; text-decoration: line-through; }
.plan-period { font-size: 0.82rem; color: #94a3b8; margin-bottom: 1.5rem; }
.plan-features { list-style: none; padding: 0; margin: 0 0 2rem; }
.plan-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.88rem; color: var(--text); padding: 0.5rem 0; border-bottom: 1px solid var(--border); }
.plan-features li:last-child { border: none; }
.plan-features li i { color: #22c55e; font-size: 0.95rem; margin-top: 2px; flex-shrink: 0; }
.btn-plan { display: block; text-align: center; padding: 0.85rem; border-radius: 50px; font-weight: 700; font-size: 0.9rem; text-decoration: none; transition: all 0.3s; }
.btn-plan-primary { background: var(--gradient); color: #fff; border: none; }
.btn-plan-primary:hover { opacity: 0.9; transform: translateY(-2px); color: #fff; }
.btn-plan-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-plan-outline:hover { background: var(--primary); color: #fff; }

/* Pricing – What's included */
#included { background: #fff; }
.include-card { background: #FBFBFB; border: 1px solid var(--border); border-radius: 20px; padding: 2rem; height: 100%; }
.include-icon { width: 52px; height: 52px; border-radius: 14px; background: linear-gradient(135deg, #ffe0e0, #ffc5c5); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: 1rem; }
.include-title { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 0.6rem; }
.include-text { font-size: 0.88rem; color: #64748b; line-height: 1.7; }

/* Pricing – FAQ */
#faq { background: #FFF6DB; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: 16px; margin-bottom: 1rem; overflow: hidden; }
.faq-question { padding: 1.2rem 1.5rem; font-weight: 600; font-size: 0.95rem; color: var(--dark); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq-question:hover { background: #FFF6DB; }
.faq-answer { padding: 0 1.5rem 1.2rem; font-size: 0.9rem; color: #64748b; line-height: 1.7; display: none; }
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-icon { transition: transform 0.3s; flex-shrink: 0; color: var(--primary); }

/* ─── Testimonials ────────────────────────────────────────────── */
#testimonials, #testimonials-about { background: #fff; }
.testimonial-card {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2.2rem;
  height: 100%;
  position: relative;
  transition: all 0.3s;
}
.testimonial-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(165,0,3,0.1); }
.testimonial-card .quote-icon,
.quote-icon {
  font-size: 3rem;
  line-height: 1;
  color: var(--primary);
  opacity: 0.15;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
}
.stars { color: #f5a623; font-size: 0.9rem; margin-bottom: 1rem; }
.testimonial-text { font-size: 0.95rem; color: var(--text); line-height: 1.7; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar { width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; font-weight: 800; color: #fff; flex-shrink: 0; }
.author-name { font-weight: 700; font-size: 0.9rem; color: var(--dark); }
.author-role { font-size: 0.78rem; color: #94a3b8; }

/* ─── CTA Banner ──────────────────────────────────────────────── */
#cta {
  background: #D93538;
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}
#cta::before { content: ''; position: absolute; inset: 0; background: var(--dot-bg); }
#cta h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900; color: #fff; }
#cta p  { font-size: 1.05rem; color: rgba(255,255,255,0.85); }
.cta-info-list { list-style: none; padding: 0; }
.cta-info-list li { display: inline-flex; align-items: center; gap: 8px; margin: 6px 12px 6px 0; font-size: 0.9rem; color: rgba(255,255,255,0.9); }
.cta-info-list li i { color: #ffa0a0; }

/* CTA strip (inner pages) */
.cta-strip { background: #D93538; padding: 70px 0; text-align: center; position: relative; overflow: hidden; }
.cta-strip::before { content: ''; position: absolute; inset: 0; background: var(--dot-bg); }
.cta-strip h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 900; margin-bottom: 0.8rem; }
.cta-strip p { color: rgba(255,255,255,0.85); margin-bottom: 1.8rem; font-size: 1.05rem; }

.btn-cta-white {
  background: #fff;
  color: var(--primary);
  font-weight: 700;
  padding: 0.85rem 2.2rem;
  border-radius: 50px;
  border: none;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}
.btn-cta-white:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(0,0,0,0.2); color: var(--primary-d); }

.btn-cta-outline {
  background: transparent;
  color: #fff;
  font-weight: 600;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.5);
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
  margin-left: 1rem;
}
.btn-cta-outline:hover { background: rgba(255,255,255,0.15); border-color: #fff; color: #fff; }

/* ─── Contact Page ────────────────────────────────────────────── */
.contact-form-card { background: #fff; border: 1px solid var(--border); border-radius: 24px; padding: 2.5rem; }
.contact-form-card label { font-size: 0.88rem; font-weight: 600; color: var(--dark); margin-bottom: 0.4rem; display: block; }
.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  font-size: 0.92rem;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  transition: border-color 0.2s;
  outline: none;
  background: #fff;
}
.contact-form-card input:focus,
.contact-form-card select:focus,
.contact-form-card textarea:focus { border-color: var(--primary); }
.contact-form-card textarea { resize: vertical; min-height: 130px; }
.btn-submit {
  background: var(--gradient);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 0.85rem 2.5rem;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: opacity 0.3s, transform 0.2s;
  width: 100%;
}
.btn-submit:hover { opacity: 0.9; transform: translateY(-2px); }

.info-card { background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 1.8rem; display: flex; align-items: flex-start; gap: 1.2rem; transition: transform 0.3s, box-shadow 0.3s; margin-bottom: 1rem; }
.info-card:hover { transform: translateY(-4px); box-shadow: 0 16px 50px rgba(165,0,3,0.1); }
.info-icon { width: 52px; height: 52px; border-radius: 14px; background: linear-gradient(135deg, #ffe0e0, #ffc5c5); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.info-title { font-size: 0.88rem; font-weight: 700; color: var(--dark); margin-bottom: 0.3rem; }
.info-value { font-size: 0.9rem; color: #64748b; line-height: 1.6; }
.info-value a { color: var(--primary); text-decoration: none; }
.info-value a:hover { text-decoration: underline; }

#why-enroll { background: #FFF6DB; }
.why-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.2rem; }
.why-dot { width: 44px; height: 44px; border-radius: 12px; background: linear-gradient(135deg, #ffe0e0, #ffc5c5); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.why-title { font-size: 0.95rem; font-weight: 700; color: var(--dark); margin-bottom: 0.2rem; }
.why-text { font-size: 0.88rem; color: #64748b; line-height: 1.5; }

/* ─── Career Page ─────────────────────────────────────────────── */
#why-join { background: #FFF6DB; }
.why-card { background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 1.8rem; text-align: center; height: 100%; transition: transform 0.3s, box-shadow 0.3s; }
.why-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(165,0,3,0.1); }
.why-icon { width: 64px; height: 64px; border-radius: 18px; background: linear-gradient(135deg, #ffe0e0, #ffc5c5); display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin: 0 auto 1rem; }
.why-title-lg { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 0.5rem; }
.why-text-sm { font-size: 0.88rem; color: #64748b; line-height: 1.6; }

#openings { background: #fff; }
.job-card { background: #fff; border: 2px solid var(--border); border-radius: 20px; padding: 2rem; margin-bottom: 1.5rem; transition: all 0.3s; }
.job-card:hover { border-color: var(--primary); box-shadow: 0 16px 50px rgba(165,0,3,0.1); }
.job-header { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 1rem; margin-bottom: 1rem; }
.job-badge { background: linear-gradient(135deg, #dcfce7, #bbf7d0); color: #15803d; font-size: 0.75rem; font-weight: 700; padding: 5px 14px; border-radius: 50px; }
.job-title { font-size: 1.2rem; font-weight: 800; color: var(--dark); margin-bottom: 0.3rem; }
.job-meta { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 1rem; }
.job-meta span { font-size: 0.85rem; color: #64748b; display: flex; align-items: center; gap: 6px; }
.job-meta i { color: var(--primary); }
.job-desc { font-size: 0.92rem; color: var(--text); line-height: 1.7; margin-bottom: 1.2rem; }
.job-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 1.5rem; }
.job-tag { background: #ffe0e0; color: var(--primary); font-size: 0.78rem; font-weight: 600; padding: 5px 12px; border-radius: 50px; }
.btn-apply { background: var(--gradient); color: #fff; font-weight: 700; padding: 0.7rem 1.8rem; border-radius: 50px; border: none; font-size: 0.9rem; text-decoration: none; display: inline-block; transition: opacity 0.3s, transform 0.2s; }
.btn-apply:hover { opacity: 0.9; transform: translateY(-2px); color: #fff; }
#culture { background: #FFF6DB; }

/* ─── Franchise Page ──────────────────────────────────────────── */
#benefits { background: #FFF6DB; }
.benefit-card { background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 1.8rem; height: 100%; transition: transform 0.3s, box-shadow 0.3s; }
.benefit-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(165,0,3,0.1); }
.benefit-icon { width: 56px; height: 56px; border-radius: 16px; background: linear-gradient(135deg, #ffe0e0, #ffc5c5); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 1rem; }
.benefit-title { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 0.5rem; }
.benefit-text { font-size: 0.88rem; color: #64748b; line-height: 1.6; }

#how-to { background: #fff; }
.step-card { text-align: center; }
.step-num { width: 56px; height: 56px; border-radius: 50%; background: var(--gradient); color: #fff; font-size: 1.3rem; font-weight: 900; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.step-title { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 0.5rem; }
.step-text { font-size: 0.88rem; color: #64748b; line-height: 1.6; }

#milestones { background: #FFF6DB; }
.milestone-card { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 1.2rem 1.5rem; display: flex; align-items: center; gap: 1.2rem; margin-bottom: 0.8rem; transition: transform 0.2s, box-shadow 0.2s; }
.milestone-card:hover { transform: translateX(6px); box-shadow: 0 8px 30px rgba(165,0,3,0.08); }
.milestone-emoji { font-size: 1.5rem; flex-shrink: 0; }
.milestone-students { font-size: 0.8rem; font-weight: 700; color: var(--primary); margin-bottom: 0.2rem; }
.milestone-reward { font-size: 0.95rem; font-weight: 600; color: var(--dark); }

/* ─── Policy Pages ────────────────────────────────────────────── */
.policy-wrap { padding: 70px 0 90px; background: #FBFBFB; }
.policy-sidebar { position: sticky; top: 100px; }
.sidebar-menu { background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 1.5rem; list-style: none; }
.sidebar-menu li { margin-bottom: 0.4rem; }
.sidebar-menu a { font-size: 0.88rem; color: #64748b; text-decoration: none; padding: 0.5rem 0.8rem; border-radius: 8px; display: block; transition: background 0.2s, color 0.2s; }
.sidebar-menu a:hover,
.sidebar-menu a.active { background: #ffe0e0; color: var(--primary); font-weight: 600; }

.policy-card { background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 2.5rem; margin-bottom: 1.5rem; }
.policy-card h2 { font-size: 1.2rem; font-weight: 700; color: var(--dark); margin-bottom: 1rem; display: flex; align-items: center; gap: 10px; }
.policy-card h2 span { width: 32px; height: 32px; border-radius: 8px; background: linear-gradient(135deg, #ffe0e0, #ffc5c5); display: inline-flex; align-items: center; justify-content: center; font-size: 0.85rem; font-weight: 800; color: var(--primary); flex-shrink: 0; }
.policy-card p { font-size: 0.93rem; color: var(--text); line-height: 1.8; margin-bottom: 0.8rem; }
.policy-card ul { padding-left: 1.2rem; margin-bottom: 0.8rem; }
.policy-card ul li { font-size: 0.93rem; color: var(--text); line-height: 1.8; margin-bottom: 0.4rem; }
.policy-card a { color: var(--primary); text-decoration: none; }
.policy-card a:hover { text-decoration: underline; }
.policy-card.warning { border-color: #fca5a5; background: #fff5f5; }
.policy-card.warning h2 span { background: linear-gradient(135deg, #fee2e2, #fca5a5); }

.effective-badge { display: inline-block; background: linear-gradient(135deg, #ffe0e0, #ffc5c5); color: var(--primary); font-size: 0.8rem; font-weight: 700; padding: 5px 14px; border-radius: 50px; margin-bottom: 2rem; }

.refund-quick { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; margin-bottom: 2rem; }
.refund-quick-item { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 1.2rem; text-align: center; }
.refund-quick-item .num { font-size: 1.8rem; font-weight: 900; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.refund-quick-item .lbl { font-size: 0.8rem; color: #64748b; margin-top: 0.3rem; }

.ship-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1rem; margin-bottom: 2rem; }
.ship-card { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 1.4rem; text-align: center; }
.ship-card i { font-size: 1.8rem; margin-bottom: 0.7rem; display: block; }
.ship-card .ship-title { font-size: 0.88rem; font-weight: 700; color: var(--dark); margin-bottom: 0.4rem; }
.ship-card .ship-sub { font-size: 0.8rem; color: #64748b; }

/* ─── Demo Video ─────────────────────────────────────────────── */
#demo { padding: 80px 0; background: var(--light); }
.demo-video-wrap { max-width: 860px; margin: 0 auto; }
.demo-video-inner {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(58,39,102,.18);
  background: #000;
}
.demo-video-inner iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.demo-video-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.5rem;
  margin-top: 1.5rem;
}
.demo-video-badges span {
  font-size: .85rem;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: .4rem;
}
.demo-video-badges span i { font-size: .9rem; }

/* ─── Footer ──────────────────────────────────────────────────── */
footer {
  background: #3A2766;
  color: rgba(255,255,255,0.7);
  padding: 70px 0 0;
}
.footer-brand {
  font-size: 1.4rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.8rem;
}
.footer-logo { height: 34px; width: auto; object-fit: contain; margin-bottom: 1rem; filter: brightness(0) invert(1); opacity: 0.9; }
.footer-desc { font-size: 0.88rem; line-height: 1.7; color: rgba(255,255,255,0.55); max-width: 280px; }
.footer-contact a { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; color: rgba(255,255,255,0.65); text-decoration: none; margin-bottom: 0.7rem; transition: color 0.2s; }
.footer-contact a:hover { color: #fff; }
.footer-contact a i { color: #a50003; width: 18px; }
.social-links { display: flex; gap: 10px; margin-top: 1rem; }
.social-link { width: 40px; height: 40px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1rem; text-decoration: none; background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7); transition: all 0.3s; }
.social-link:hover { background: var(--primary); color: #fff; transform: translateY(-3px); }
.footer-heading { font-size: 0.88rem; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1.2rem; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a { font-size: 0.85rem; color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s; display: inline-flex; align-items: center; gap: 6px; }
.footer-links a::before { content: '›'; color: #a50003; font-weight: 700; }
.footer-links a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 1.5rem 0; margin-top: 3rem; }
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); margin: 0; }

/* ─── Scroll-to-top Button ────────────────────────────────────── */
#scrollTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--gradient);
  color: #fff;
  border: none;
  font-size: 1.1rem;
  box-shadow: 0 8px 24px rgba(165,0,3,0.4);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}
#scrollTop.show { opacity: 1; pointer-events: all; }
#scrollTop:hover { transform: translateY(-4px); }

/* ─── Utility / Colour Helpers ────────────────────────────────── */
.bg-indigo   { background: #ffe0e0; }
.bg-blue-lt  { background: #ede9fe; }
.bg-green-lt { background: #dcfce7; }
.bg-amber-lt { background: #fef3c7; }
.bg-pink-lt  { background: #fce7f3; }
.bg-cyan-lt  { background: #ffe0e0; }
.text-indigo { color: #a50003; }
.text-blue   { color: #3A2766; }
.text-green  { color: #15803d; }
.text-amber  { color: #b45309; }
.text-pink   { color: #D93538; }
.text-cyan   { color: #a50003; }

/* ─── Responsive Tweaks ───────────────────────────────────────── */
@media (max-width: 991px) {
  .pricing-card.popular { transform: scale(1); }
  .about-badge-1, .about-badge-2 { display: none; }
  .pill-1, .pill-2, .pill-3 { display: none; }
  .policy-sidebar { position: static; }
}
@media (max-width: 767px) {
  #hero { padding: 80px 0 50px; }
  .hero-visual { margin-top: 3rem; }
  .brand-logo { height: 30px; }
  .cta-strip { padding: 50px 0; }
  .btn-cta-outline { margin-left: 0; margin-top: 0.8rem; }
}
