/* ==============================
   adhyaAI — Global Stylesheet
   ============================== */

@import url('animations.css');

/* ===== CSS VARIABLES ===== */
:root {
  --orange:        #F6511D;
  --gold:          #F2AF29;
  --dark:          #191919;
  --bg:            #F5F7F8;
  --white:         #FFFFFF;
  --text:          #333333;
  --muted:         #666666;
  --card-bg:       #FFFFFF;
  --success:       #25D366;

  /* Gradients */
  --grad-primary:  linear-gradient(135deg, #F6511D, #F2AF29);
  --grad-dark:     linear-gradient(135deg, #191919, #2a2a2a);
  --grad-light:    linear-gradient(135deg, rgba(246,81,29,0.07), rgba(242,175,41,0.07));

  /* Shadows */
  --shadow-sm:     0 2px 12px rgba(0,0,0,0.06);
  --shadow-md:     0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg:     0 8px 36px rgba(246,81,29,0.18);
  --shadow-xl:     0 20px 60px rgba(0,0,0,0.15);

  /* Spacing & Radius */
  --radius-sm:     8px;
  --radius-md:     14px;
  --radius-lg:     20px;
  --radius-xl:     28px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ===== NAVBAR ===== */
#navbar-container {
  position: sticky;
  top: 0;
  z-index: 1000;
}

#navbar-container nav,
nav#navbar {
  background: rgba(25,25,25,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  transition: box-shadow 0.3s, background 0.3s;
}

nav.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  background: rgba(25,25,25,0.98);
}

.nav-logo {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--orange);
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.nav-links a {
  color: #fff;
  font-size: 0.82rem;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  padding: 6px 10px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a.active {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.nav-cta {
  background: var(--orange) !important;
  color: #fff !important;
  padding: 10px 22px !important;
  border-radius: 10px !important;
  font-weight: 700 !important;
  font-size: 0.82rem !important;
  font-family: 'Poppins', sans-serif !important;
  transition: background 0.2s, transform 0.2s !important;
  white-space: nowrap;
}

.nav-cta:hover {
  background: #d44110 !important;
  transform: translateY(-2px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  width: 100%;
  background: var(--dark);
  padding: 20px 5%;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid rgba(255,255,255,0.08);
  max-height: calc(100vh - 68px);
  overflow-y: auto;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  padding: 12px 4px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.mobile-menu .nav-cta {
  margin-top: 12px;
  text-align: center;
  background: var(--orange);
  padding: 13px 18px !important;
  border-radius: 8px !important;
  border: none;
}

/* ===== SECTION UTILITIES ===== */
section {
  padding: 80px 5%;
}

.section-tag {
  display: inline-block;
  background: rgba(246,81,29,0.1);
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-family: 'Poppins', sans-serif;
}

.section-heading {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.section-sub {
  color: var(--muted);
  font-size: 1rem;
  max-width: 560px;
  line-height: 1.7;
}

/* ===== HERO ===== */
#hero {
  background: var(--bg);
  padding: 60px 5% 70px;
  position: relative;
  overflow: hidden;
  min-height: 92vh;
  display: flex;
  align-items: center;
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 80% 30%, rgba(246,81,29,0.08) 0%, transparent 70%),
              radial-gradient(ellipse 40% 40% at 90% 80%, rgba(242,175,41,0.07) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.hero-visual svg {
  width: 100%;
  max-width: 520px;
  height: auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(246,81,29,0.1);
  border: 1px solid rgba(246,81,29,0.25);
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 24px;
  font-family: 'Poppins', sans-serif;
}

.hero-headline {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.12;
  color: var(--dark);
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-headline span {
  color: var(--orange);
}

.hero-subheadline {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: var(--muted);
  margin-bottom: 10px;
  line-height: 1.6;
  font-weight: 500;
}

.hero-tagline {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 32px;
  font-style: italic;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.pill {
  background: #fff;
  border: 1.5px solid rgba(246,81,29,0.2);
  color: var(--dark);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 50px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  font-family: 'Poppins', sans-serif;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn-primary {
  background: var(--orange);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 32px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 20px rgba(246,81,29,0.3);
  display: inline-block;
  text-align: center;
}

.btn-primary:hover {
  background: #d44110;
  transform: scale(1.03);
  box-shadow: 0 10px 28px rgba(246,81,29,0.4);
  transition: all 200ms ease;
}

.btn-outline {
  background: transparent;
  color: var(--orange);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 36px;
  border-radius: 10px;
  border: 2px solid var(--orange);
  cursor: pointer;
  transition: all 0.2s;
  display: inline-block;
  text-align: center;
}

.btn-outline:hover {
  background: var(--orange);
  color: #fff;
  transform: translateY(-2px);
}

.btn-secondary-link {
  color: var(--orange);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.btn-secondary-link:hover {
  color: #d44110;
}

/* ===== STATS BAR ===== */
#stats-bar {
  background: var(--dark);
  padding: 40px 5%;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  text-align: center;
}

.stat-item .stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-item .stat-label {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
}

/* ===== HOW IT WORKS ===== */
#how-it-works {
  background: var(--bg);
}

/* Premium Timeline Layout */
.steps-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 52px;
  position: relative;
}

.steps-timeline .timeline-line {
  position: absolute;
  top: 20px;
  left: 12.5%;
  width: 75%;
  height: 3px;
  background: linear-gradient(to right, var(--orange), var(--gold));
  border-radius: 3px;
  z-index: 0;
}

.steps-timeline .step-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 32px 24px;
  padding-top: 52px;
  position: relative;
  z-index: 1;
  text-align: center;
  border: 1.5px solid rgba(0,0,0,0.05);
  border-top: none;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.steps-timeline .step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(246,81,29,0.12);
}

.step-marker {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--grad-primary);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(246,81,29,0.3);
  z-index: 2;
}

/* Legacy fallback */
.steps-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 52px;
  position: relative;
}

.step-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.step-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ===== UNIVERSITY MARQUEE ===== */
#universities {
  background: #fff;
  overflow: hidden;
}

.marquee-wrapper {
  overflow: hidden;
  margin-top: 44px;
  padding: 16px 0;
  position: relative;
}

.marquee-wrapper::before,
.marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #fff, transparent);
}

.marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #fff, transparent);
}

.marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.uni-tile {
  background: #fff;
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(0,0,0,0.06);
  border-bottom: 3px solid var(--gold);
  padding: 20px 24px;
  min-width: 220px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: transform 0.2s;
}

.uni-tile:hover {
  transform: translateY(-3px);
}

.uni-logo-img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  background: #f0f0f0;
}

.uni-logo-fallback {
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--grad-light);
  border-radius: var(--radius-sm);
  font-size: 2rem;
}

.uni-tile h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--dark);
  text-align: center;
  line-height: 1.4;
}

.uni-more {
  text-align: center;
  margin-top: 28px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.uni-more a {
  color: var(--orange);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ===== MENTORS ===== */
#mentors {
  background: var(--bg);
}

.mentors-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 48px;
}

.mentor-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 36px 32px;
  border-top: 4px solid var(--gold);
  box-shadow: var(--shadow-md);
  transition: transform 0.2s, box-shadow 0.2s;
}

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

.mentor-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
}

.mentor-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  border: 3px solid var(--gold);
  flex-shrink: 0;
}

.mentor-avatar-fallback {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.mentor-info h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
}

.mentor-info span {
  font-size: 0.82rem;
  color: var(--orange);
  font-weight: 600;
}

.mentor-bio {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

.mentor-quote {
  background: rgba(242,175,41,0.08);
  border-left: 3px solid var(--gold);
  padding: 14px 18px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.88rem;
  font-style: italic;
  color: var(--dark);
  font-weight: 500;
  font-family: 'Playfair Display', serif;
}

.mentor-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.mentor-tag {
  background: rgba(246,81,29,0.08);
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
}

/* ===== TUITION SECTION ===== */
#tuition {
  background: #fff;
}

.tuition-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.feature-card {
  background: var(--bg);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: transform 0.2s, box-shadow 0.2s;
}

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

.feature-emoji {
  font-size: 2.8rem;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
}

.tuition-cta {
  margin-top: 44px;
  text-align: center;
}

/* ===== UNIVERSITY GRID (universities.html) ===== */
.uni-filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 36px 0;
}

.uni-filter-btn {
  background: #fff;
  border: 1.5px solid #e0e0e0;
  color: var(--muted);
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.2s;
}

.uni-filter-btn:hover,
.uni-filter-btn.active {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

.uni-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.uni-card {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

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

.uni-card-banner {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--grad-light);
  font-size: 3.5rem;
  overflow: hidden;
}

.uni-card-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.uni-card-body {
  padding: 24px;
}

.uni-card-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.uni-location-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(242,175,41,0.1);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 50px;
  margin-bottom: 12px;
  font-family: 'Poppins', sans-serif;
}

.uni-accreditation {
  display: inline-block;
  background: rgba(25,200,100,0.1);
  color: #0a8c4a;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 12px;
  margin-left: 6px;
  font-family: 'Poppins', sans-serif;
}

.uni-courses {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.uni-course-pill {
  background: rgba(246,81,29,0.08);
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
}

.uni-card-expand {
  display: none;
  padding: 0 24px 24px;
  border-top: 1px solid #f0f0f0;
  margin-top: 16px;
  padding-top: 16px;
}

.uni-card-expand.open {
  display: block;
}

.uni-card-expand p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 12px;
}

.uni-card-expand a {
  color: var(--orange);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ===== BLOG ===== */
#blog,
.blog-page {
  background: var(--bg);
}

.blog-filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 24px 0 36px;
}

.filter-btn {
  background: #fff;
  border: 1.5px solid #e0e0e0;
  color: var(--muted);
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

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

.blog-card-inner {
  padding: 28px 24px;
}

.blog-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-family: 'Poppins', sans-serif;
}

.tag-career     { background: rgba(246,81,29,0.12); color: var(--orange); }
.tag-admissions { background: rgba(242,175,41,0.15); color: #c4880d; }
.tag-comparison { background: rgba(25,200,100,0.12); color: #0a8c4a; }
.tag-exams      { background: rgba(79,70,229,0.1);   color: #4f46e5; }
.tag-commerce   { background: rgba(14,165,233,0.1);  color: #0284c7; }
.tag-life       { background: rgba(236,72,153,0.1);  color: #be185d; }

.blog-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.5;
}

.blog-card .excerpt {
  font-size: 0.87rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 18px;
}

.blog-read-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--orange);
  font-weight: 600;
  font-size: 0.88rem;
  font-family: 'Poppins', sans-serif;
  transition: color 0.2s;
}

.blog-read-link:hover {
  color: #d44110;
}

/* ===== BLOG POST PAGE ===== */
.blog-post-container {
  max-width: 720px;
  margin: 0 auto;
  padding: 60px 20px 80px;
}

.blog-post-container .blog-tag {
  margin-bottom: 18px;
}

.blog-post-container h1 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.35;
  margin-bottom: 12px;
}

.blog-post-meta {
  font-size: 0.85rem;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 36px;
}

.blog-post-meta a {
  color: var(--orange);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.blog-post-body {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.85;
}

.blog-post-body p {
  margin-bottom: 16px;
}

.blog-post-body h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin: 24px 0 10px;
}

.blog-post-body ul {
  padding-left: 20px;
  margin-bottom: 16px;
  list-style: disc;
}

.blog-post-body ul li {
  margin-bottom: 7px;
}

.blog-post-body strong {
  color: var(--dark);
}

.blog-post-credit {
  margin-top: 32px;
  padding: 14px 18px;
  background: rgba(242,175,41,0.08);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.82rem;
  color: var(--muted);
}

.blog-post-credit a {
  color: var(--orange);
  font-weight: 600;
}

.blog-post-cta {
  margin-top: 44px;
  text-align: center;
  padding: 32px;
  background: var(--grad-light);
  border-radius: var(--radius-md);
}

/* ===== FAQ ===== */
#faq {
  background: #fff;
}

.faq-list {
  max-width: 760px;
  margin: 48px auto 0;
}

.faq-item {
  background: #fff;
  border-radius: 12px;
  border: 1.5px solid #eeeeee;
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark);
  user-select: none;
  gap: 16px;
}

.faq-arrow {
  width: 30px;
  height: 30px;
  background: rgba(246,81,29,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--orange);
  font-size: 0.9rem;
  transition: transform 0.3s, background 0.2s;
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
  background: var(--orange);
  color: #fff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding: 0 24px 22px;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.75;
  border-top: 1px solid #f0f0f0;
  padding-top: 16px;
}

/* ===== COUNSELLING FORM ===== */
#counselling {
  background: var(--dark);
  padding: 80px 5%;
}

.form-section-inner {
  text-align: center;
}

.form-section-inner .section-tag {
  background: rgba(246,81,29,0.2);
  color: var(--orange);
}

.form-section-inner .section-heading {
  color: #fff;
}

.form-tagline {
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 44px;
}

.form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  max-width: 560px;
  margin: 0 auto;
  box-shadow: var(--shadow-xl);
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
  font-family: 'Poppins', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #e0e0e0;
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  color: var(--dark);
  background: var(--bg);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(246,81,29,0.12);
}

.form-group textarea {
  height: 110px;
  resize: vertical;
}

.btn-submit {
  width: 100%;
  background: var(--orange);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 16px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 20px rgba(246,81,29,0.3);
  margin-top: 8px;
}

.btn-submit:hover {
  background: #d44110;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(246,81,29,0.4);
}

.form-disclaimer {
  margin-top: 18px;
  font-size: 0.82rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.6;
}

.form-success {
  display: none;
  text-align: center;
  padding: 30px 20px;
}

.form-success .success-emoji {
  font-size: 3rem;
  margin-bottom: 12px;
}

.form-success h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.form-success p {
  color: var(--muted);
  font-size: 0.92rem;
}

.form-trust-points {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.form-trust-item {
  text-align: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
}

.form-trust-item .trust-emoji {
  font-size: 1.6rem;
  display: block;
  margin-bottom: 6px;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--grad-primary);
  padding: 60px 5%;
  text-align: center;
}

.cta-banner h2 {
  color: #fff;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 12px;
}

.cta-banner p {
  color: rgba(255,255,255,0.85);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.05rem;
  margin-bottom: 28px;
}

.cta-banner .btn-white {
  background: #fff;
  color: var(--orange);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 36px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  display: inline-block;
}

.cta-banner .btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: var(--dark);
  padding: 60px 5% 50px;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 12px;
}

.page-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== ABOUT CARDS ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 48px;
}

.about-card {
  background: var(--bg);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  border-left: 4px solid var(--orange);
  box-shadow: var(--shadow-md);
  transition: transform 0.2s, box-shadow 0.2s;
}

.about-card:nth-child(2) {
  border-left-color: var(--gold);
}

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

.about-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 14px;
}

.about-card p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 0.95rem;
}

.about-location {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(242,175,41,0.1);
  border: 1.5px solid rgba(242,175,41,0.3);
  border-radius: 10px;
  padding: 14px 20px;
  width: fit-content;
}

.about-location span {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark);
}

/* Values grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 44px;
}

.value-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: transform 0.2s, box-shadow 0.2s;
}

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

.value-card .value-emoji {
  font-size: 2.6rem;
  margin-bottom: 16px;
}

.value-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.value-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ===== TUITION PAGE SPECIFICS ===== */
.institute-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  margin-top: 44px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.institute-card:hover {
  box-shadow: var(--shadow-lg);
}

.institute-hero-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.institute-body {
  padding: 36px;
}

.institute-featured-badge {
  display: inline-block;
  background: rgba(242,175,41,0.15);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.institute-body h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 6px;
}

.institute-tagline {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
  font-style: italic;
}

.institute-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.inst-stat {
  background: var(--bg);
  border-radius: 12px;
  padding: 18px 14px;
  text-align: center;
  border-bottom: 3px solid var(--orange);
}

.inst-stat h4 {
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  font-weight: 600;
}

.inst-stat p {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
}

.inst-courses {
  background: rgba(246,81,29,0.05);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 28px;
}

.inst-courses h3 {
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 14px;
}

.course-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.course-tag {
  background: #fff;
  color: var(--orange);
  border: 2px solid var(--orange);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
}

.inst-location {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(242,175,41,0.08);
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 28px;
}

.inst-location a {
  color: var(--orange);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ===== REVIEWS ===== */
.reviews-section {
  margin-top: 44px;
}

.reviews-header {
  text-align: center;
  margin-bottom: 28px;
}

.reviews-header h3 {
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 16px;
}

.big-rating {
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  font-family: 'Poppins', sans-serif;
}

.big-stars {
  font-size: 1.6rem;
  margin: 6px 0;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.review-card {
  background: var(--bg);
  border-radius: 12px;
  padding: 20px;
  transition: transform 0.2s;
}

.review-card:hover {
  transform: translateY(-2px);
}

.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.review-author {
  font-weight: 700;
  color: var(--dark);
  font-size: 0.95rem;
  font-family: 'Poppins', sans-serif;
}

.review-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(242,175,41,0.15);
  padding: 4px 10px;
  border-radius: 50px;
  font-weight: 700;
  color: #b8860b;
  font-size: 0.82rem;
}

.review-text {
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.88rem;
  font-style: italic;
}

.reviews-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 0;
  border-top: 1px solid #f0f0f0;
}

.pg-info {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 600;
}

.pg-btn {
  background: var(--bg);
  border: 1.5px solid #e0e0e0;
  color: var(--dark);
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pg-btn:hover:not(:disabled) {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

.pg-btn:disabled {
  opacity: 0.4;
  cursor: default;
}

/* ===== COMING SOON CARD ===== */
.coming-soon-card {
  text-align: center;
  padding: 36px;
  background: rgba(246,81,29,0.04);
  border-radius: var(--radius-md);
  border: 2px dashed rgba(246,81,29,0.2);
  margin-top: 36px;
}

.coming-soon-card .emoji {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.coming-soon-card h4 {
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 8px;
}

.coming-soon-card p {
  font-size: 0.88rem;
  color: var(--muted);
}

/* ===== FOOTER ===== */
footer {
  background: var(--dark);
  color: #fff;
  padding: 60px 5% 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 10px;
}

.footer-brand .footer-tagline {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 6px;
}

.footer-brand .footer-sub {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  line-height: 1.6;
  max-width: 280px;
}

.footer-links h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links ul a {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  transition: color 0.2s;
}

.footer-links ul a:hover {
  color: var(--gold);
}

.footer-contact h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}

.contact-item span {
  font-size: 1rem;
}

.contact-item a,
.contact-item p {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  line-height: 1.5;
  transition: color 0.2s;
}

.contact-item a:hover {
  color: var(--gold);
}

.footer-bottom {
  padding: 20px 0;
  text-align: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.82rem;
}

.footer-bottom strong {
  color: var(--gold);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.whatsapp-tooltip {
  background: var(--dark);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.2s, transform 0.2s;
  pointer-events: none;
  font-family: 'Poppins', sans-serif;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateY(0);
}

.whatsapp-btn {
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}

.whatsapp-btn::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.3);
}

.whatsapp-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 30px rgba(37,211,102,0.5);
}

.whatsapp-btn svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

/* ===== FADE IN ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== STAGGERED HERO ENTRANCE ===== */
.hero-stagger {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.hero-stagger.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-stagger[data-delay="1"] { transition-delay: 0ms; }
.hero-stagger[data-delay="2"] { transition-delay: 150ms; }
.hero-stagger[data-delay="3"] { transition-delay: 300ms; }
.hero-stagger[data-delay="4"] { transition-delay: 450ms; }
.hero-stagger[data-delay="5"] { transition-delay: 600ms; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .steps-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps-container::before { display: none; }
  .uni-grid { grid-template-columns: repeat(2, 1fr); }
  .institute-stats { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  section { padding: 60px 16px; }

  #hero { padding: 50px 16px 60px; min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-pills { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-visual { order: 6; }
  .hero-visual svg { max-width: 320px; }

  .about-grid { grid-template-columns: 1fr; }
  .steps-container { grid-template-columns: 1fr; }
  .mentors-grid { grid-template-columns: 1fr; }
  .tuition-steps { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .uni-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .form-card { padding: 28px 20px; }
  .about-location { margin: 28px auto 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .institute-stats { grid-template-columns: repeat(2, 1fr); }
  .form-trust-points { gap: 20px; }

  /* Minimum tap targets */
  .btn-primary, .btn-outline, .btn-submit, .nav-cta, .pg-btn,
  .college-tab, .uni-filter-btn, .filter-btn {
    min-height: 44px;
    min-width: 44px;
  }

  /* Enhanced Mobile Typography & Spacing */
  .hero-headline { font-size: 2.3rem !important; }
  .section-heading { font-size: 1.8rem !important; }
  
  /* Make all primary action buttons stretch on mobile */
  .hero-actions .btn-primary, .hero-actions .btn-outline,
  .cta-banner .btn-white {
    width: 100%;
    margin-right: 0;
    margin-bottom: 12px;
  }
  
  /* Tuition List Cards Mobile Fixes */
  .tutor-header-row { flex-direction: column; align-items: flex-start; gap: 8px; }
  .tutor-actions { flex-direction: column; gap: 12px; }
  .tutor-actions > * { width: 100%; text-align: center; }
  .tutor-stats { grid-template-columns: 1fr; gap: 12px; }
}

/* ===== ADMISSION TICKER ===== */
.admission-ticker {
  background: var(--dark);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  padding: 10px 0;
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  animation: tickerScroll 30s linear infinite;
  gap: 48px;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  font-family: 'Poppins', sans-serif;
  white-space: nowrap;
}

.ticker-item .ticker-dot {
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: tickerPulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes tickerPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ===== SVG ICON SYSTEM ===== */
.icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  flex-shrink: 0;
}

.icon-circle svg {
  width: 30px;
  height: 30px;
}

.icon-circle.orange { background: rgba(246,81,29,0.1); }
.icon-circle.orange svg { fill: var(--orange); stroke: var(--orange); }
.icon-circle.gold { background: rgba(242,175,41,0.12); }
.icon-circle.gold svg { fill: var(--gold); stroke: var(--gold); }
.icon-circle.green { background: rgba(25,200,100,0.1); }
.icon-circle.green svg { fill: #0a8c4a; stroke: #0a8c4a; }
.icon-circle.blue { background: rgba(79,70,229,0.08); }
.icon-circle.blue svg { fill: #4f46e5; stroke: #4f46e5; }

/* ===== WHY ADHYAAI SECTION ===== */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.trust-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: transform 0.25s, box-shadow 0.25s;
  border-top: 3px solid transparent;
}

.trust-card:nth-child(1) { border-top-color: var(--orange); }
.trust-card:nth-child(2) { border-top-color: var(--gold); }
.trust-card:nth-child(3) { border-top-color: #0a8c4a; }

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

.trust-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.trust-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ===== STUDENT TESTIMONIALS ===== */
.testimonials-section {
  background: var(--bg);
  padding: 80px 5%;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.testimonial-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-md);
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 4rem;
  font-family: 'Playfair Display', serif;
  color: rgba(246,81,29,0.1);
  line-height: 1;
}

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

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
  margin-bottom: 16px;
}

.testimonial-avatar-fallback {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}

.testimonial-avatar-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.testimonial-quote {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--dark);
}

.testimonial-meta {
  font-size: 0.78rem;
  color: var(--orange);
  font-weight: 600;
  margin-top: 3px;
}

/* ===== TABBED COLLEGE CARDS ===== */
.college-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  margin-bottom: 32px;
  transition: box-shadow 0.3s;
}

.college-card:hover {
  box-shadow: var(--shadow-lg);
}

.college-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 32px;
  border-bottom: 1px solid #f0f0f0;
  flex-wrap: wrap;
}

.college-logo {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
  border: 1.5px solid #eee;
  overflow: hidden;
}

.college-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.college-info {
  flex: 1;
  min-width: 200px;
}

.college-info h2 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 6px;
}

.college-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.college-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
}

.badge-naac { background: rgba(25,200,100,0.1); color: #0a8c4a; }
.badge-nirf { background: rgba(79,70,229,0.08); color: #4f46e5; }
.badge-location { background: rgba(242,175,41,0.1); color: #b8860b; }

.college-streams {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.stream-tag {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stream-engineering { background: rgba(59,130,246,0.1); color: #2563eb; }
.stream-mba { background: rgba(16,185,129,0.1); color: #059669; }
.stream-law { background: rgba(139,92,246,0.1); color: #7c3aed; }
.stream-design { background: rgba(249,115,22,0.1); color: #ea580c; }
.stream-medical { background: rgba(239,68,68,0.1); color: #dc2626; }

/* College Tabs */
.college-tabs {
  display: flex;
  border-bottom: 1.5px solid #f0f0f0;
  padding: 0 32px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.college-tabs::-webkit-scrollbar { display: none; }

.college-tab {
  background: none;
  border: none;
  padding: 14px 18px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  transition: color 0.2s;
}

.college-tab::after {
  content: '';
  position: absolute;
  bottom: -1.5px;
  left: 0;
  width: 100%;
  height: 2.5px;
  background: var(--orange);
  border-radius: 2px 2px 0 0;
  transform: scaleX(0);
  transition: transform 0.2s;
}

.college-tab.active {
  color: var(--orange);
}

.college-tab.active::after {
  transform: scaleX(1);
}

.college-tab:hover {
  color: var(--dark);
}

/* Tab Content */
.college-tab-content {
  padding: 28px 32px;
  display: none;
}

.college-tab-content.active {
  display: block;
}

.college-tab-content h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.college-tab-content p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 14px;
}

.college-tab-content ul {
  list-style: none;
  padding: 0;
}

.college-tab-content ul li {
  padding: 6px 0;
  font-size: 0.88rem;
  color: var(--text);
  border-bottom: 1px solid #f8f8f8;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.college-tab-content ul li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
  margin-top: 8px;
}

/* Strength pills */
.strength-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.strength-pill {
  background: var(--grad-light);
  color: var(--dark);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
}

/* Fees table */
.fees-table {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0;
}

.fees-table thead th {
  background: var(--bg);
  color: var(--dark);
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 2px solid #e0e0e0;
}

.fees-table tbody td {
  padding: 12px 16px;
  font-size: 0.88rem;
  color: var(--text);
  border-bottom: 1px solid #f5f5f5;
}

.fees-table tbody tr:hover {
  background: rgba(246,81,29,0.02);
}

.fee-note {
  font-size: 0.78rem;
  color: var(--muted);
  font-style: italic;
  margin-top: 10px;
  padding: 10px 14px;
  background: rgba(242,175,41,0.06);
  border-radius: 8px;
}

/* Placement highlight */
.placement-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 16px 0;
}

.placement-stat {
  text-align: center;
  padding: 16px 12px;
  background: var(--bg);
  border-radius: 12px;
}

.placement-stat .p-value {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 4px;
}

.placement-stat .p-label {
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.recruiter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}

.recruiter-tag {
  background: var(--bg);
  color: var(--text);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 50px;
  border: 1px solid #e8e8e8;
}

/* College CTA footer */
.college-cta {
  padding: 20px 32px;
  border-top: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.college-cta-text {
  font-size: 0.85rem;
  color: var(--muted);
}

/* ===== FILTER + SEARCH BAR ===== */
.uni-toolbar {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 28px 0 36px;
  padding: 20px 24px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.uni-search {
  flex: 1;
  min-width: 200px;
  padding: 10px 16px 10px 40px;
  border: 1.5px solid #e0e0e0;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  color: var(--dark);
  background: var(--bg) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.3-4.3'/%3E%3C/svg%3E") 14px center no-repeat;
  outline: none;
  transition: border-color 0.2s;
}

.uni-search:focus {
  border-color: var(--orange);
}

.uni-sort {
  padding: 10px 16px;
  border: 1.5px solid #e0e0e0;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  background: #fff;
  cursor: pointer;
  appearance: none;
  outline: none;
}

/* ===== COMPARE PAGE ===== */
.compare-selectors {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 32px 0;
}

.compare-selector {
  flex: 1;
  min-width: 200px;
}

.compare-selector label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.compare-selector select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  color: var(--dark);
  background: #fff;
  cursor: pointer;
  appearance: none;
  outline: none;
  transition: border-color 0.2s;
}

.compare-selector select:focus {
  border-color: var(--orange);
}

.compare-table-wrapper {
  overflow-x: auto;
  margin: 28px 0;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.compare-table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  background: #fff;
}

.compare-table thead th {
  background: var(--dark);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 16px 20px;
  text-align: left;
}

.compare-table thead th:first-child {
  border-radius: var(--radius-md) 0 0 0;
}

.compare-table thead th:last-child {
  border-radius: 0 var(--radius-md) 0 0;
}

.compare-table tbody td {
  padding: 14px 20px;
  font-size: 0.88rem;
  color: var(--text);
  border-bottom: 1px solid #f5f5f5;
}

.compare-table tbody tr:hover {
  background: rgba(246,81,29,0.02);
}

.compare-table tbody td:first-child {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--dark);
  font-size: 0.82rem;
}

.compare-empty {
  text-align: center;
  padding: 48px 20px;
  color: var(--muted);
  font-size: 0.95rem;
}

/* ===== DEADLINE TRACKER ===== */
.deadline-section {
  background: #fff;
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(246,81,29,0.15);
  padding: 28px 32px;
  margin-top: 36px;
}

.deadline-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.deadline-header h3 {
  font-size: 1.05rem;
  color: var(--dark);
}

.deadline-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.deadline-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: var(--bg);
  border-radius: 10px;
  flex-wrap: wrap;
  gap: 8px;
}

.deadline-item .dl-college {
  font-weight: 700;
  color: var(--dark);
  font-size: 0.88rem;
}

.deadline-item .dl-course {
  color: var(--muted);
  font-size: 0.82rem;
}

.deadline-item .dl-date {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  padding: 4px 12px;
  border-radius: 50px;
  white-space: nowrap;
}

.dl-date.rolling {
  background: rgba(25,200,100,0.12);
  color: #059669;
}

.dl-date.fixed {
  background: rgba(246,81,29,0.1);
  color: var(--orange);
}

/* ===== SOCIAL PROOF BAR ===== */
.social-proof-bar {
  background: var(--bg);
  padding: 36px 5%;
  text-align: center;
  border-top: 1px solid #e8e8e8;
}

.social-proof-bar p {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
  font-family: 'Poppins', sans-serif;
}

.board-tags {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.board-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid #e0e0e0;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark);
  font-family: 'Poppins', sans-serif;
}

/* ===== STICKY MOBILE CTA ===== */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 12px 16px;
  background: var(--dark);
  z-index: 998;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.mobile-sticky-cta a {
  display: block;
  background: var(--orange);
  color: #fff;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(246,81,29,0.35);
}

/* Stats bar label color fix for dark bg */
.stat-item .stat-label {
  color: rgba(255,255,255,0.55);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 480px) {
  section { padding: 55px 4%; }
  .hero-headline { font-size: 2.1rem; }
  .section-heading { font-size: 1.65rem; }
  .mentor-header { flex-direction: column; text-align: center; }
  .hero-visual svg { max-width: 260px; }
  .institute-stats { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .college-header { padding: 20px 16px; }
  .college-tabs { padding: 0 16px; }
  .college-tab-content { padding: 20px 16px; }
  .college-cta { padding: 16px; }
  .placement-highlights { grid-template-columns: 1fr; }
  .compare-selectors { flex-direction: column; }
}

/* ===== 360px MOBILE UX ===== */
@media (max-width: 360px) {
  body { font-size: 15px; }
  section { padding: 44px 3.5%; }
  .hero-headline { font-size: 1.85rem; }
  .hero-subheadline { font-size: 0.92rem; }
  .hero-badge { font-size: 0.72rem; padding: 5px 10px; }
  .hero-pills { gap: 6px; }
  .pill { font-size: 0.72rem; padding: 6px 10px; }
  .btn-primary { padding: 14px 24px; font-size: 0.92rem; }
  .section-heading { font-size: 1.5rem; }
  .section-sub { font-size: 0.88rem; }
  .nav-logo { font-size: 1.3rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stat-item .stat-number { font-size: 1.6rem; }
  .stat-item .stat-label { font-size: 0.78rem; }
  .step-card { padding: 24px 16px; }
  .step-number { font-size: 2.4rem; }
  .step-card h3 { font-size: 0.92rem; }
  .mentor-card { padding: 24px 18px; }
  .mentor-avatar { width: 56px; height: 56px; }
  .blog-card-inner { padding: 22px 18px; }
  .blog-tag { font-size: 0.65rem; padding: 3px 8px; }
  .form-card { padding: 24px 14px; }
  .form-group input, .form-group select, .form-group textarea { padding: 11px 12px; font-size: 0.88rem; }
  .form-group label { font-size: 0.8rem; }
  .cta-banner { padding: 44px 4%; }
  .cta-banner h2 { font-size: 1.4rem; }
  .cta-banner .btn-white { padding: 13px 24px; font-size: 0.88rem; }
  .page-hero { padding: 44px 4% 36px; }
  .page-hero h1 { font-size: 1.6rem; }
  .faq-question { padding: 16px 16px; font-size: 0.88rem; gap: 10px; }
  .faq-answer-inner { padding: 0 16px 18px; font-size: 0.85rem; padding-top: 12px; }
  .whatsapp-btn { width: 50px; height: 50px; }
  .whatsapp-btn svg { width: 24px; height: 24px; }
  .whatsapp-float { bottom: 80px; right: 14px; }
  .footer-grid { gap: 24px; }
  .footer-brand h2 { font-size: 1.3rem; }
  footer { padding: 44px 4% 0; }
}

/* Show sticky CTA on mobile only */
@media (max-width: 768px) {
  .mobile-sticky-cta { display: block; z-index: 1050; }
  body { padding-bottom: 80px; }
  .trust-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .college-tab { padding: 12px 14px; font-size: 0.78rem; }
  .fees-table { font-size: 0.82rem; }
  .fees-table thead th { padding: 10px 12px; font-size: 0.72rem; }
  .fees-table tbody td { padding: 10px 12px; }
  .placement-highlights { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .placement-stat .p-value { font-size: 1rem; }
  .uni-toolbar { flex-direction: column; }
  .uni-search { width: 100%; }
  .whatsapp-float { bottom: 90px; }
}

/* College tab mobile dropdown override */
@media (max-width: 520px) {
  .college-tabs {
    flex-wrap: nowrap;
    gap: 0;
    padding: 0 8px;
  }
  .college-tab {
    padding: 10px 10px;
    font-size: 0.72rem;
  }
  .placement-highlights { grid-template-columns: 1fr 1fr; }

  /* Timeline responsive */
  .steps-timeline { grid-template-columns: 1fr; }
  .steps-timeline .timeline-line { display: none; }
}

/* ===== TUITION FILTER & CARDS ===== */
.tuition-filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 28px 0;
}

.tuition-filter-btn {
  background: #fff;
  border: 1.5px solid #e0e0e0;
  color: var(--muted);
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.2s;
}

.tuition-filter-btn:hover,
.tuition-filter-btn.active {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

.tuition-city-section {
  margin-bottom: 36px;
}

.tuition-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (max-width: 768px) {
  .tuition-cards-grid { grid-template-columns: 1fr; }
}

.tutor-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid rgba(0,0,0,0.05);
  box-shadow: 0 6px 24px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.tutor-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(246,81,29,0.12);
}

.tutor-featured {
  border: 2px solid rgba(246, 81, 29, 0.5);
  background: linear-gradient(145deg, #fffcf9 0%, #ffeae0 100%);
  box-shadow: 0 8px 30px rgba(246, 81, 29, 0.15);
}

.tutor-featured-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: linear-gradient(135deg, #FFB800, #F6511D);
  color: white;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 20px;
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(246, 81, 29, 0.3);
}

#typewriter-text {
  color: var(--orange);
  border-right: 4px solid var(--orange);
  animation: cursorBlink 0.8s step-end infinite;
  display: inline-block;
  padding-right: 4px;
}
@keyframes cursorBlink {
  0%, 100% { border-color: transparent; }
  50% { border-color: var(--orange); }
}

.tutor-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.tutor-body {
  padding: 24px;
}

.tutor-header-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.tutor-header-row h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--dark);
}

.tutor-city-tag {
  background: rgba(242,175,41,0.1);
  color: #b8860b;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  white-space: nowrap;
  flex-shrink: 0;
}

.tutor-description {
  color: var(--muted);
  font-size: 0.88rem;
  font-style: italic;
  margin-bottom: 14px;
  line-height: 1.6;
}

.tutor-subjects {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.tutor-subject-tag {
  background: rgba(246,81,29,0.08);
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
}

.tutor-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}

.tutor-stat {
  background: var(--bg);
  border-radius: 8px;
  padding: 10px 8px;
  text-align: center;
}

.tutor-stat-label {
  display: block;
  font-size: 0.65rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  margin-bottom: 4px;
}

.tutor-stat-value {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark);
}

.tutor-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ===== LOCATION INPUT (Contact Form) ===== */
.location-input-wrapper {
  position: relative;
}

.detect-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(246,81,29,0.08);
  border: 1.5px solid rgba(246,81,29,0.2);
  color: var(--orange);
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  margin-bottom: 8px;
}

.detect-btn:hover {
  background: var(--orange);
  color: #fff;
}

.detect-btn:disabled {
  opacity: 0.5;
  cursor: default;
}

.location-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(25,200,100,0.1);
  color: #059669;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  margin-top: 6px;
  font-family: 'Poppins', sans-serif;
}

.location-badge button {
  background: none;
  border: none;
  color: #059669;
  font-size: 1rem;
  cursor: pointer;
  padding: 0 2px;
  line-height: 1;
}

.location-badge button:hover {
  color: #dc2626;
}
