/*
Theme Name: UNK Classes
Theme URI: https://unkclasses.com
Author: UNK Classes Guwahati
Author URI: https://unkclasses.com
Description: A student-friendly and parent-friendly theme for UNK Classes tuition centre — Guwahati. Covers Class I–XII, CBSE/SEBA/ICSE across Hatigaon, Bhetapara & Kerakuchi.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: unk-classes
Tags: education, tuition, school, children, responsive
*/

/* =============================================
   CSS CUSTOM PROPERTIES
============================================= */
:root {
  --unk-primary:    #1a3a6b;
  --unk-primary-dk: #0f2447;
  --unk-accent:     #e63946;
  --unk-gold:       #f4a11d;
  --unk-green:      #2a9d3f;
  --unk-light-blue: #e8f0fe;
  --unk-soft-bg:    #f8f9ff;
  --unk-text:       #1a1a2e;
  --unk-muted:      #5a6a7a;
  --unk-white:      #ffffff;
  --unk-radius:     16px;
  --unk-shadow:     0 4px 24px rgba(26,58,107,0.10);
  --unk-font:       'Nunito', sans-serif;
  --unk-font-head:  'Poppins', sans-serif;
}

/* =============================================
   RESET & BASE
============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--unk-font);
  font-size: 16px;
  color: var(--unk-text);
  background: var(--unk-soft-bg);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a { color: var(--unk-primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--unk-accent); }

h1,h2,h3,h4,h5,h6 {
  font-family: var(--unk-font-head);
  color: var(--unk-primary);
  line-height: 1.25;
}

/* =============================================
   UTILITY CLASSES
============================================= */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 860px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.text-white { color: #fff; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

/* =============================================
   ANNOUNCEMENT BAR
============================================= */
.unk-announce {
  background: var(--unk-gold);
  padding: 9px 16px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--unk-primary);
}
.unk-announce .announce-badge {
  background: var(--unk-accent);
  color: #fff;
  border-radius: 4px;
  padding: 1px 8px;
  margin-right: 8px;
  font-size: 11px;
  text-transform: uppercase;
}

/* =============================================
   NAVIGATION
============================================= */
.site-header {
  background: var(--unk-primary);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 16px rgba(26,58,107,0.2);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-mark {
  width: 42px;
  height: 42px;
  background: var(--unk-gold);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 18px;
  color: var(--unk-primary);
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-text .brand-name {
  font-family: var(--unk-font-head);
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.3px;
}
.logo-text .brand-name span { color: var(--unk-gold); }
.logo-text .brand-sub { font-size: 11px; color: rgba(255,255,255,0.6); font-weight: 600; letter-spacing: 0.3px; }

/* Primary Nav Menu */
.main-navigation ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
}

.main-navigation ul li a {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 600;
  padding: 7px 15px;
  border-radius: 8px;
  transition: all 0.2s;
  display: block;
  text-decoration: none;
}
.main-navigation ul li a:hover,
.main-navigation ul li.current-menu-item a {
  background: rgba(255,255,255,0.12);
  color: #fff;
}
.main-navigation ul li.menu-cta a {
  background: var(--unk-gold);
  color: var(--unk-primary);
  font-weight: 800;
  border-radius: 10px;
}
.main-navigation ul li.menu-cta a:hover { background: #e8940f; }

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.menu-toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
  display: block;
}

/* =============================================
   HERO SECTION
============================================= */
.unk-hero {
  background: linear-gradient(135deg, #1a3a6b 0%, #0f2447 55%, #1a3a6b 100%);
  padding: 80px 24px 100px;
  position: relative;
  overflow: hidden;
}
.unk-hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(244,161,29,0.09) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.unk-hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(230,57,70,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-content {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-block;
  background: rgba(244,161,29,0.18);
  color: var(--unk-gold);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 20px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  border: 1px solid rgba(244,161,29,0.3);
}

.hero-headline {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 18px;
  line-height: 1.15;
}
.hero-headline .accent { color: var(--unk-gold); }

.hero-description {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.boards-row {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.board-tag {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.9);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.2);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 560px;
  margin: 0 auto;
}
.hero-stat {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 20px 14px;
  text-align: center;
}
.hero-stat .stat-number {
  font-size: 32px;
  font-weight: 900;
  color: var(--unk-gold);
  line-height: 1;
  font-family: var(--unk-font-head);
}
.hero-stat .stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  margin-top: 5px;
  font-weight: 600;
}

/* =============================================
   BUTTONS
============================================= */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--unk-font);
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  text-decoration: none;
  line-height: 1;
}
.btn-primary {
  background: var(--unk-accent);
  color: #fff;
}
.btn-primary:hover { background: #c1121f; transform: translateY(-2px); color: #fff; }
.btn-secondary {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-secondary:hover { background: rgba(255,255,255,0.18); color: #fff; }
.btn-outline {
  background: transparent;
  color: var(--unk-primary);
  border: 1.5px solid var(--unk-primary);
}
.btn-outline:hover { background: var(--unk-primary); color: #fff; }
.btn-gold {
  background: var(--unk-gold);
  color: var(--unk-primary);
}
.btn-gold:hover { background: #e8940f; transform: translateY(-2px); }
.btn-lg { padding: 16px 36px; font-size: 17px; }

/* =============================================
   SECTION HEADERS
============================================= */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  color: var(--unk-accent);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
  display: block;
}
.section-title {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  color: var(--unk-primary);
  margin-bottom: 14px;
}
.section-subtitle {
  font-size: 16px;
  color: var(--unk-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* =============================================
   FEATURES / CARDS GRID
============================================= */
.section-features { padding: 80px 24px; background: var(--unk-white); }
.section-features.alt { background: var(--unk-soft-bg); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.feature-card {
  background: var(--unk-soft-bg);
  border-radius: var(--unk-radius);
  padding: 28px 22px;
  text-align: center;
  border: 1.5px solid transparent;
  transition: all 0.25s;
}
.feature-card:hover {
  border-color: rgba(26,58,107,0.18);
  background: var(--unk-light-blue);
  transform: translateY(-4px);
  box-shadow: var(--unk-shadow);
}
.feature-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 28px;
}
.feature-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--unk-primary);
}
.feature-card p {
  font-size: 14px;
  color: var(--unk-muted);
  line-height: 1.65;
}

/* =============================================
   FEE CARDS
============================================= */
.section-fees { padding: 80px 24px; background: var(--unk-white); }

.fees-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  max-width: 860px;
  margin: 0 auto;
}

.fee-card {
  border-radius: var(--unk-radius);
  padding: 32px 24px;
  border: 1.5px solid rgba(26,58,107,0.1);
  background: var(--unk-soft-bg);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.fee-card:hover { box-shadow: var(--unk-shadow); }
.fee-card.featured {
  background: var(--unk-primary);
  border-color: var(--unk-primary);
}
.fee-popular-badge {
  position: absolute;
  top: 16px; right: -28px;
  background: var(--unk-gold);
  color: var(--unk-primary);
  font-size: 10px;
  font-weight: 800;
  padding: 5px 36px;
  transform: rotate(38deg);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.fee-tier {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--unk-muted);
  margin-bottom: 8px;
}
.fee-card.featured .fee-tier { color: rgba(255,255,255,0.6); }
.fee-amount {
  font-size: 44px;
  font-weight: 900;
  color: var(--unk-primary);
  line-height: 1;
  font-family: var(--unk-font-head);
}
.fee-amount .currency { font-size: 22px; vertical-align: top; margin-top: 8px; display: inline-block; }
.fee-amount .period { font-size: 14px; font-weight: 500; color: var(--unk-muted); }
.fee-card.featured .fee-amount { color: var(--unk-gold); }
.fee-class-range {
  font-size: 14px;
  color: var(--unk-muted);
  margin: 8px 0 22px;
}
.fee-card.featured .fee-class-range { color: rgba(255,255,255,0.6); }
.fee-features { list-style: none; }
.fee-features li {
  font-size: 14px;
  color: var(--unk-muted);
  padding: 8px 0;
  border-bottom: 1px dashed rgba(26,58,107,0.08);
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.fee-card.featured .fee-features li { color: rgba(255,255,255,0.85); border-color: rgba(255,255,255,0.1); }
.fee-features li::before {
  content: '✓';
  color: var(--unk-green);
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}
.fee-card.featured .fee-features li::before { color: var(--unk-gold); }

/* =============================================
   RESULTS / TOPPERS
============================================= */
.section-results { padding: 80px 24px; background: var(--unk-soft-bg); }

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
}

.result-card {
  background: var(--unk-white);
  border-radius: var(--unk-radius);
  padding: 26px 18px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(26,58,107,0.06);
  transition: transform 0.2s;
}
.result-card:hover { transform: translateY(-3px); }
.result-score {
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
  font-family: var(--unk-font-head);
}
.result-score.gold  { color: var(--unk-gold); }
.result-score.green { color: var(--unk-green); }
.result-score.red   { color: var(--unk-accent); }
.result-score.blue  { color: var(--unk-primary); }
.result-student { font-size: 15px; font-weight: 700; margin: 10px 0 3px; }
.result-class   { font-size: 13px; color: var(--unk-muted); }
.result-board {
  display: inline-block;
  background: var(--unk-light-blue);
  color: var(--unk-primary);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 10px;
  margin-top: 10px;
}

/* =============================================
   TIMETABLE
============================================= */
.section-timetable { padding: 80px 24px; background: var(--unk-white); }

.tab-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 28px;
}
.tab-btn {
  padding: 8px 20px;
  border-radius: 20px;
  border: 1.5px solid var(--unk-primary);
  background: transparent;
  color: var(--unk-primary);
  font-size: 13px;
  font-weight: 700;
  font-family: var(--unk-font);
  cursor: pointer;
  transition: all 0.2s;
}
.tab-btn:hover, .tab-btn.active { background: var(--unk-primary); color: #fff; }

.timetable-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
}

.time-slot {
  background: var(--unk-white);
  border-radius: 12px;
  padding: 18px;
  border-left: 4px solid var(--unk-primary);
  box-shadow: 0 2px 10px rgba(26,58,107,0.07);
  transition: transform 0.2s;
}
.time-slot:hover { transform: translateX(3px); }
.time-slot.math    { border-left-color: var(--unk-accent); }
.time-slot.science { border-left-color: var(--unk-green); }
.time-slot.english { border-left-color: var(--unk-gold); }
.time-slot.computer{ border-left-color: #9b5de5; }
.time-slot.social  { border-left-color: #00b4d8; }
.time-slot.doubt   { border-left-color: var(--unk-primary); }
.slot-day  { font-size: 11px; color: var(--unk-muted); font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.slot-time { font-size: 12px; color: var(--unk-muted); font-weight: 600; margin-bottom: 6px; }
.slot-subject { font-size: 16px; font-weight: 800; color: var(--unk-primary); }
.slot-class { font-size: 12px; color: var(--unk-muted); margin-top: 4px; }

/* =============================================
   TESTIMONIALS
============================================= */
.section-testimonials { padding: 80px 24px; background: var(--unk-soft-bg); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.testimonial-card {
  background: var(--unk-white);
  border-radius: var(--unk-radius);
  padding: 26px 22px;
  box-shadow: 0 2px 14px rgba(26,58,107,0.06);
  border-top: 3px solid var(--unk-primary);
  transition: transform 0.2s;
}
.testimonial-card:hover { transform: translateY(-3px); }
.testi-stars { color: var(--unk-gold); font-size: 18px; margin-bottom: 12px; }
.testi-quote {
  font-size: 14px;
  color: var(--unk-muted);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 18px;
}
.testi-author  { font-size: 14px; font-weight: 700; color: var(--unk-primary); }
.testi-role    { font-size: 12px; color: var(--unk-muted); margin-top: 2px; }

/* =============================================
   ENQUIRY FORM
============================================= */
.section-enquiry { padding: 80px 24px; background: var(--unk-white); }

.enquiry-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: start;
}

.enquiry-form-card {
  background: var(--unk-white);
  border-radius: 20px;
  padding: 40px 32px;
  box-shadow: var(--unk-shadow);
  border: 1.5px solid rgba(26,58,107,0.08);
}

.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--unk-primary);
  margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 15px;
  border: 1.5px solid rgba(26,58,107,0.15);
  border-radius: 10px;
  font-size: 14px;
  font-family: var(--unk-font);
  color: var(--unk-text);
  background: var(--unk-soft-bg);
  transition: border 0.2s, background 0.2s;
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--unk-primary);
  background: #fff;
}
.form-group textarea { min-height: 90px; resize: vertical; }
.form-submit {
  width: 100%;
  background: var(--unk-primary);
  color: #fff;
  padding: 15px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 800;
  font-family: var(--unk-font);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}
.form-submit:hover { background: var(--unk-primary-dk); transform: translateY(-2px); }
.form-note {
  font-size: 12px;
  color: var(--unk-muted);
  text-align: center;
  margin-top: 12px;
}
.form-success {
  display: none;
  background: #eafbee;
  border: 1.5px solid var(--unk-green);
  border-radius: 12px;
  padding: 16px 20px;
  color: #1a6b2e;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  margin-top: 16px;
}

/* Enquiry info side */
.enquiry-info h3 { font-size: 22px; font-weight: 700; margin-bottom: 20px; color: var(--unk-primary); }
.info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 22px;
}
.info-icon {
  width: 44px; height: 44px;
  background: var(--unk-light-blue);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.info-label { font-size: 12px; color: var(--unk-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.info-value { font-size: 15px; font-weight: 700; color: var(--unk-primary); margin-top: 2px; }
.demo-offer {
  background: linear-gradient(135deg, var(--unk-primary) 0%, var(--unk-primary-dk) 100%);
  border-radius: 16px;
  padding: 24px 22px;
  margin-top: 28px;
  text-align: center;
  color: #fff;
}
.demo-offer .offer-title { font-size: 18px; font-weight: 800; color: var(--unk-gold); margin-bottom: 8px; }
.demo-offer p { font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.6; }

/* =============================================
   CONTACT BAR / FOOTER CTA
============================================= */
.section-contact-cta {
  background: var(--unk-primary);
  padding: 72px 24px;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  max-width: 860px;
  margin: 0 auto 40px;
}
.contact-item { text-align: center; }
.contact-icon { font-size: 36px; margin-bottom: 12px; }
.contact-label {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.contact-value { font-size: 16px; font-weight: 700; color: #fff; line-height: 1.6; }

/* =============================================
   FOOTER
============================================= */
.site-footer {
  background: #07111f;
  padding: 48px 24px 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
  max-width: 1200px;
  margin: 0 auto 32px;
}
.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-top: 14px;
  max-width: 260px;
}
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--unk-gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 22px;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  max-width: 1200px;
  margin: 0 auto;
}

/* =============================================
   PROGRESS TRACKER (Parent Portal Widget)
============================================= */
.tracker-widget {
  background: var(--unk-soft-bg);
  border-radius: 20px;
  padding: 32px 26px;
  border: 1.5px solid rgba(26,58,107,0.1);
  max-width: 560px;
  margin: 0 auto;
}
.tracker-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 26px;
}
.tracker-student { font-size: 17px; font-weight: 800; color: var(--unk-primary); }
.tracker-meta { font-size: 12px; color: var(--unk-muted); margin-top: 3px; }
.tracker-badge {
  background: var(--unk-light-blue);
  color: var(--unk-primary);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 8px;
}
.progress-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.progress-label { font-size: 13px; font-weight: 700; color: var(--unk-text); min-width: 120px; }
.progress-bar { flex: 1; height: 10px; background: rgba(26,58,107,0.1); border-radius: 10px; overflow: hidden; }
.progress-fill { height: 100%; border-radius: 10px; transition: width 1s ease; }
.progress-pct { font-size: 13px; font-weight: 700; color: var(--unk-muted); min-width: 36px; text-align: right; }
.tracker-footer {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px dashed rgba(26,58,107,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.overall-label { font-size: 14px; color: var(--unk-muted); }
.overall-score { font-size: 18px; font-weight: 900; color: var(--unk-green); }
.overall-trend { font-size: 12px; color: var(--unk-muted); font-weight: 600; }

/* =============================================
   DOUBT BOX WIDGET
============================================= */
.doubt-widget {
  max-width: 540px;
  margin: 0 auto;
  background: var(--unk-white);
  border-radius: 20px;
  padding: 30px;
  box-shadow: var(--unk-shadow);
}
.doubt-messages { min-height: 150px; margin-bottom: 16px; }
.doubt-msg {
  background: var(--unk-light-blue);
  border-radius: 14px 14px 14px 4px;
  padding: 13px 16px;
  font-size: 14px;
  color: var(--unk-text);
  margin-bottom: 12px;
  line-height: 1.6;
}
.doubt-reply {
  background: var(--unk-primary);
  color: #fff;
  border-radius: 14px 14px 4px 14px;
  padding: 13px 16px;
  font-size: 14px;
  margin-bottom: 12px;
  line-height: 1.6;
}
.typing-dots {
  color: var(--unk-muted);
  font-size: 13px;
  font-style: italic;
  padding: 4px 0;
  display: none;
}
.doubt-input-row { display: flex; gap: 10px; }
.doubt-input {
  flex: 1;
  padding: 12px 16px;
  border: 1.5px solid rgba(26,58,107,0.15);
  border-radius: 12px;
  font-size: 14px;
  font-family: var(--unk-font);
  outline: none;
  transition: border 0.2s;
}
.doubt-input:focus { border-color: var(--unk-primary); }
.doubt-send {
  background: var(--unk-primary);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 0 20px;
  font-size: 20px;
  cursor: pointer;
  transition: background 0.2s;
}
.doubt-send:hover { background: var(--unk-primary-dk); }

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 768px) {
  .main-navigation { display: none; }
  .main-navigation.open { display: block; position: absolute; top: 68px; left: 0; right: 0; background: var(--unk-primary); padding: 16px; }
  .main-navigation.open ul { flex-direction: column; gap: 4px; }
  .menu-toggle { display: flex; }
  .hero-stats { grid-template-columns: repeat(3,1fr); gap: 8px; }
  .hero-stat .stat-number { font-size: 24px; }
  .enquiry-wrapper { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero-stats { grid-template-columns: 1fr; max-width: 200px; }
  .footer-grid { grid-template-columns: 1fr; }
  .fees-grid { grid-template-columns: 1fr; }
}
