/*
 * IStepExcel EduPro — landing-page.css
 * Phase 2 — Landing Page Styles
 * All sections: Hero, Stats, Courses, Why-Us, Faculty, Batches, Testimonials, CTA, Popup
 */

/* ============================================================
   SECTION 2.1 — HERO
   ============================================================ */
.ise-hero {
  position: relative;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 60%, var(--primary-light) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 100px 0 60px;
}

/* Animated Particles */
.ise-hero-particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.ise-particle {
  position: absolute;
  width: 6px; height: 6px;
  background: rgba(247,168,0,.35);
  border-radius: 50%;
  animation: ise-float linear infinite;
}
.ise-particle:nth-child(odd)  { background: rgba(255,255,255,.12); width: 4px; height: 4px; }
.ise-particle:nth-child(3n)   { background: rgba(247,168,0,.20); width: 8px; height: 8px; }

/* Particle positions & durations */
.ise-particle-1  { left: 5%;  top: 15%; animation-duration: 12s; animation-delay: 0s; }
.ise-particle-2  { left: 12%; top: 70%; animation-duration: 17s; animation-delay: 2s; }
.ise-particle-3  { left: 22%; top: 35%; animation-duration: 14s; animation-delay: 1s; }
.ise-particle-4  { left: 35%; top: 80%; animation-duration: 19s; animation-delay: 3s; }
.ise-particle-5  { left: 48%; top: 20%; animation-duration: 11s; animation-delay: 0.5s; }
.ise-particle-6  { left: 60%; top: 55%; animation-duration: 16s; animation-delay: 4s; }
.ise-particle-7  { left: 72%; top: 10%; animation-duration: 13s; animation-delay: 1.5s; }
.ise-particle-8  { left: 83%; top: 75%; animation-duration: 18s; animation-delay: 2.5s; }
.ise-particle-9  { left: 91%; top: 40%; animation-duration: 15s; animation-delay: 0s; }
.ise-particle-10 { left: 8%;  top: 50%; animation-duration: 20s; animation-delay: 3.5s; }
.ise-particle-11 { left: 28%; top: 60%; animation-duration: 12s; animation-delay: 1s; }
.ise-particle-12 { left: 55%; top: 85%; animation-duration: 16s; animation-delay: 5s; }
.ise-particle-13 { left: 75%; top: 30%; animation-duration: 14s; animation-delay: 2s; }
.ise-particle-14 { left: 88%; top: 65%; animation-duration: 18s; animation-delay: 0.8s; }
.ise-particle-15 { left: 42%; top: 45%; animation-duration: 22s; animation-delay: 4.5s; }
.ise-particle-16 { left: 18%; top: 25%; animation-duration: 10s; animation-delay: 1.2s; }
.ise-particle-17 { left: 65%; top: 90%; animation-duration: 15s; animation-delay: 3s; }
.ise-particle-18 { left: 95%; top: 20%; animation-duration: 13s; animation-delay: 0.3s; }

@keyframes ise-float {
  0%   { transform: translateY(0) rotate(0deg);   opacity: 0;    }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateY(-80vh) rotate(720deg); opacity: 0; }
}

/* Geometric accent */
.ise-hero-geo { position: absolute; right: 0; top: 0; width: 60%; height: 100%; pointer-events: none; }
.ise-hero-geo svg { width: 100%; height: 100%; }

/* Hero Layout */
.ise-hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: var(--space-2xl);
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Hero Badge */
.ise-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(247,168,0,.15);
  border: 1px solid rgba(247,168,0,.4);
  border-radius: var(--radius-full);
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 700;
  color: #ffc83d;
  margin-bottom: var(--space-md);
}
.ise-badge-dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: ise-pulse 2s ease-in-out infinite;
}
@keyframes ise-pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(247,168,0,.4); }
  50%      { box-shadow: 0 0 0 6px rgba(247,168,0,0); }
}

/* Hero Title */
.ise-hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: var(--space-md);
}
.ise-hero-title span { color: var(--accent); }

/* Hero Subtitle */
.ise-hero-subtitle {
  font-size: 18px;
  color: rgba(255,255,255,.8);
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}

/* Hero Features */
.ise-hero-features {
  list-style: none;
  margin-bottom: var(--space-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.ise-hero-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,.85);
  font-weight: 500;
  opacity: 0;
  animation: ise-slide-in .4s ease forwards;
}
.ise-hero-check {
  width: 20px; height: 20px;
  background: rgba(247,168,0,.2);
  border: 1px solid rgba(247,168,0,.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--accent);
  flex-shrink: 0;
  font-weight: 800;
}
@keyframes ise-slide-in {
  from { opacity:0; transform: translateX(-10px); }
  to   { opacity:1; transform: translateX(0); }
}

/* CTA Buttons */
.ise-hero-ctas {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-md);
}

/* Trust Bar */
.ise-hero-trust {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}
.ise-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,.7);
}
.ise-trust-item a { color: rgba(255,255,255,.7); text-decoration: none; }
.ise-trust-item a:hover { color: var(--accent); }
.ise-trust-stars { color: var(--accent); letter-spacing: 1px; }
.ise-trust-sep { color: rgba(255,255,255,.3); font-size: 20px; }

/* Hero Form Card */
.ise-hero-form-wrap { display: flex; justify-content: center; }
.ise-hero-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 60px rgba(0,0,0,.3), 0 0 0 1px rgba(255,255,255,.1);
  overflow: hidden;
  width: 100%;
  max-width: 420px;
}
.ise-hero-form-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.ise-form-icon { font-size: 28px; }
.ise-hero-form-header h3 { color: var(--white); margin: 0; font-size: 16px; }
.ise-hero-form-header p  { color: rgba(255,255,255,.75); font-size: 12px; margin: 2px 0 0; }
#ise-hero-enquiry-form { padding: 20px 24px; }

/* Wave */
.ise-hero-wave { position: absolute; bottom: -1px; left: 0; right: 0; line-height: 0; }
.ise-hero-wave svg { display: block; width: 100%; }

@media (max-width: 900px) {
  .ise-hero { min-height: auto; padding: 100px 0 80px; }
  .ise-hero-inner { grid-template-columns: 1fr; }
  .ise-hero-form-wrap { display: none; } /* Show inline form on mobile */
  .ise-hero-features { grid-template-columns: 1fr; }
}

/* ============================================================
   SECTION 2.2 — STATS BAR
   ============================================================ */
.ise-stats-bar { background: var(--white); box-shadow: var(--shadow-md); position: relative; z-index: 10; }
.ise-stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  padding: var(--space-lg) 0;
}
.ise-stat-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-xl);
  flex: 1;
  min-width: 180px;
  justify-content: center;
}
.ise-stat-sep {
  width: 1px;
  height: 50px;
  background: var(--border);
  flex-shrink: 0;
}
.ise-stat-icon {
  font-size: 32px;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-bg);
}
.ise-stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -1px;
}
.ise-stat-label {
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
  margin-top: 2px;
}

@media (max-width: 640px) {
  .ise-stat-sep { display: none; }
  .ise-stat-item { min-width: calc(50% - 20px); padding: var(--space-md); }
}

/* ============================================================
   SECTION 2.3 — COURSES
   ============================================================ */
.ise-courses-section { background: var(--light-bg); }

/* Filter Tabs */
.ise-course-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: var(--space-xl);
}
.ise-tab-btn {
  padding: 8px 20px;
  border: 2px solid var(--border);
  border-radius: var(--radius-full);
  background: var(--white);
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-heading);
}
.ise-tab-btn:hover { border-color: var(--primary-light); color: var(--primary); }
.ise-tab-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

/* Courses Grid */
.ise-courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

/* Course Card */
.ise-course-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s ease;
  display: flex;
  flex-direction: column;
}
.ise-course-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--shadow-xl);
}
.ise-course-card.hidden { display: none; }

.ise-course-card__thumb {
  position: relative;
  height: 180px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
}
.ise-course-card__thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.ise-course-card:hover .ise-course-card__thumb img { transform: scale(1.05); }
.ise-course-icon-thumb {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  background: linear-gradient(135deg,var(--primary),var(--primary-light));
}
.ise-course-card__badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  gap: 6px;
}
.ise-course-level {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  border-radius: var(--radius-sm) 0 0 0;
}

.ise-course-card__body { padding: var(--space-md) var(--space-md) 0; flex: 1; }
.ise-course-card__title { font-size: 16px; font-weight: 800; margin-bottom: 8px; }
.ise-course-card__title a { color: var(--dark); text-decoration: none; }
.ise-course-card__title a:hover { color: var(--primary); }
.ise-course-card__excerpt { font-size: 13px; color: var(--muted); margin-bottom: 10px; }
.ise-course-card__highlights { margin-bottom: 10px; }
.ise-course-card__highlights li {
  font-size: 12px;
  color: var(--body-text);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 2px 0;
}
.ise-course-card__highlights .fas.fa-check { color: var(--success); font-size: 10px; }
.ise-course-card__meta {
  display: flex;
  gap: var(--space-md);
  font-size: 12px;
  color: var(--muted);
  padding: 8px 0;
  border-top: 1px solid var(--light-bg);
}
.ise-course-card__meta span { display: flex; align-items: center; gap: 4px; }
.ise-course-card__meta i { color: var(--primary-light); }

.ise-course-card__footer {
  padding: var(--space-md);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  background: var(--light-bg);
}
.ise-course-card__fee .fee-label { font-size: 11px; color: var(--muted); display: block; }
.ise-course-card__fee .fee-value { font-size: 18px; font-weight: 800; color: var(--primary); font-family: var(--font-heading); }
.ise-course-card__actions { display: flex; gap: 6px; }

/* Empty State */
.ise-empty-state {
  text-align: center;
  padding: var(--space-3xl);
}
.ise-empty-icon { font-size: 60px; margin-bottom: var(--space-md); }
.ise-empty-state h3 { color: var(--dark); margin-bottom: var(--space-sm); }
.ise-empty-state p  { color: var(--muted); margin-bottom: var(--space-lg); }

@media (max-width: 1024px) { .ise-courses-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px)  { .ise-courses-grid { grid-template-columns: 1fr; } }

/* ============================================================
   SECTION 2.4 — WHY CHOOSE US
   ============================================================ */
.ise-why-section {
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.ise-why-bg-shape {
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(10,45,110,.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.ise-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}
.ise-why-card {
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--white);
  position: relative;
  overflow: hidden;
  transition: all .3s ease;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.ise-why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.ise-why-card__accent {
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  border-radius: 0 4px 4px 0;
  opacity: 0;
  transition: opacity .3s ease;
}
.ise-why-card:hover .ise-why-card__accent { opacity: 1; }
.ise-why-icon-wrap {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.ise-why-content h3 { font-size: 15px; margin-bottom: 6px; }
.ise-why-content p  { font-size: 13px; color: var(--muted); margin: 0; line-height: 1.6; }
.ise-why-cta {
  text-align: center;
  margin-top: var(--space-xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
}
.ise-why-cta p { margin: 0; color: var(--muted); }

@media (max-width: 1024px) { .ise-why-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) {
  .ise-why-grid { grid-template-columns: 1fr; }
  .ise-why-cta { flex-direction: column; }
}

/* ============================================================
   SECTION 2.5 — FACULTY
   ============================================================ */
.ise-faculty-section { background: var(--light-bg); }
.ise-faculty-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}
.ise-faculty-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform .3s ease, box-shadow .3s ease;
}
.ise-faculty-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.ise-faculty-card__photo {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
}
.ise-faculty-card__photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.ise-faculty-avatar {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 72px; font-weight: 900; color: rgba(255,255,255,.3);
  font-family: var(--font-heading);
}
.ise-faculty-card__overlay {
  position: absolute; inset: 0;
  background: rgba(10,45,110,.85);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: var(--space-lg);
  opacity: 0;
  transition: opacity .3s ease;
}
.ise-faculty-card:hover .ise-faculty-card__overlay { opacity: 1; }
.ise-faculty-card__overlay p { color: rgba(255,255,255,.9); font-size: 13px; text-align: center; line-height: 1.6; margin-bottom: var(--space-md); }
.ise-faculty-linkedin {
  width: 36px; height: 36px;
  background: #0077b5;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 16px;
  transition: transform .2s;
}
.ise-faculty-linkedin:hover { transform: scale(1.1); color: #fff; }
.ise-faculty-card__body { padding: var(--space-md); }
.ise-faculty-card__body h3 { font-size: 17px; margin-bottom: 4px; }
.ise-faculty-designation { font-size: 13px; color: var(--primary-light); font-weight: 600; margin-bottom: 10px; }
.ise-faculty-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 12px; }
.ise-faculty-tag {
  padding: 3px 10px;
  background: rgba(10,45,110,.08);
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
}
.ise-faculty-stats { display: flex; gap: 0; border-top: 1px solid var(--border); padding-top: 12px; }
.ise-faculty-stat { flex: 1; text-align: center; }
.ise-faculty-stat__value { display: block; font-size: 14px; font-weight: 800; color: var(--primary); }
.ise-faculty-stat__value i { color: var(--accent-dark); margin-right: 2px; font-size: 11px; }
.ise-faculty-stat__label { display: block; font-size: 11px; color: var(--muted); }

@media (max-width: 900px) { .ise-faculty-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .ise-faculty-grid { grid-template-columns: 1fr; } }

/* ============================================================
   SECTION 2.6 — BATCHES
   ============================================================ */
.ise-batches-section { background: linear-gradient(180deg,#f4f7fb 0%,#eef2ff 100%); }
.ise-batches-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  border: 1px solid var(--border);
}
.ise-batches-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.ise-batches-table thead {
  background: var(--primary);
  color: var(--white);
}
.ise-batches-table th {
  padding: 14px 16px;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .5px;
  text-align: left;
}
.ise-batches-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.ise-batch-row:last-child td { border-bottom: none; }
.ise-batch-row:hover { background: var(--light-bg); }
.ise-batch-course strong { font-weight: 700; color: var(--primary); }
.ise-batch-date { color: var(--body-text); white-space: nowrap; }
.ise-batch-date i { color: var(--accent-dark); margin-right: 4px; }
.ise-mode-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
}
.ise-batches-enquire { margin-top: var(--space-xl); color: var(--muted); }

@media (max-width: 768px) {
  .ise-batches-wrap { overflow-x: auto; }
  .hide-mobile { display: none; }
  .ise-batches-table td, .ise-batches-table th { padding: 10px 12px; }
}

/* ============================================================
   SECTION 2.7 — TESTIMONIALS
   ============================================================ */
.ise-testimonials-section { position: relative; }
.ise-testimonials-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.ise-t-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.03);
}
.ise-t-circle-1 { width: 400px; height: 400px; top: -100px; right: -100px; }
.ise-t-circle-2 { width: 600px; height: 600px; bottom: -200px; left: -150px; }

.ise-testimonials-slider { position: relative; overflow: hidden; }
.ise-testimonials-track {
  display: flex;
  gap: var(--space-lg);
  transition: transform .4s cubic-bezier(.25,.46,.45,.94);
  will-change: transform;
}
.ise-testimonial-card {
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  min-width: calc(33.333% - 16px);
  flex-shrink: 0;
  transition: transform .3s ease;
}
.ise-testimonial-card:hover { transform: translateY(-4px); }
.ise-testimonial-stars { color: var(--accent); font-size: 18px; letter-spacing: 2px; margin-bottom: var(--space-md); }
.ise-testimonial-text {
  font-size: 15px;
  color: rgba(255,255,255,.9);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: var(--space-lg);
  border-left: 3px solid var(--accent);
  padding-left: var(--space-md);
}
.ise-testimonial-author { display: flex; align-items: center; gap: var(--space-md); }
.ise-testimonial-photo {
  width: 52px; height: 52px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--accent);
  flex-shrink: 0;
}
.ise-testimonial-photo img { width: 100%; height: 100%; object-fit: cover; }
.ise-testimonial-initials {
  width: 100%; height: 100%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 20px; color: var(--primary);
  font-family: var(--font-heading);
}
.ise-testimonial-info strong { display: block; color: #fff; font-size: 15px; }
.ise-testimonial-info span  { display: block; color: rgba(255,255,255,.6); font-size: 12px; margin-top: 2px; }
.ise-testimonial-course {
  display: inline-block !important;
  margin-top: 4px !important;
  padding: 2px 8px;
  background: rgba(247,168,0,.2);
  color: #ffc83d !important;
  border-radius: var(--radius-full);
  font-size: 11px !important;
  font-weight: 700;
}

/* Slider Controls */
.ise-slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}
.ise-slider-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: all .2s;
  display: flex; align-items: center; justify-content: center;
}
.ise-slider-btn:hover { background: var(--accent); color: var(--primary); border-color: var(--accent); }
.ise-slider-btn:disabled { opacity: .35; cursor: not-allowed; }
.ise-slider-dots { display: flex; gap: 6px; }
.ise-slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
  cursor: pointer;
  transition: all .2s;
  border: none;
  padding: 0;
}
.ise-slider-dot.active {
  background: var(--accent);
  width: 24px;
  border-radius: 4px;
}

/* Ratings Row */
.ise-ratings-row {
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
  flex-wrap: wrap;
}
.ise-rating-badge {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-lg);
}
.ise-rating-stars { font-size: 20px; color: var(--accent); }
.ise-rating-info strong { display: block; color: #fff; font-size: 18px; font-weight: 800; }
.ise-rating-info span   { color: rgba(255,255,255,.6); font-size: 12px; }

@media (max-width: 900px) {
  .ise-testimonial-card { min-width: calc(50% - 12px); }
}
@media (max-width: 640px) {
  .ise-testimonial-card { min-width: 100%; }
}

/* ============================================================
   SECTION 2.9 — CTA BANNER
   ============================================================ */
.ise-cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 50%, var(--primary-light) 100%);
  position: relative;
  overflow: hidden;
  padding: var(--space-3xl) 0;
}
.ise-cta-banner__bg { position: absolute; inset: 0; pointer-events: none; }
.ise-cta-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(247,168,0,.06);
}
.ise-cta-c1 { width: 600px; height: 600px; top: -200px; right: -100px; }
.ise-cta-c2 { width: 300px; height: 300px; bottom: -100px; left: 100px; background: rgba(255,255,255,.04); }

.ise-cta-banner__inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: var(--space-2xl);
}
.ise-cta-banner__content h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--white);
  margin-bottom: var(--space-md);
  line-height: 1.2;
}
.ise-cta-banner__content p { color: rgba(255,255,255,.75); font-size: 16px; margin-bottom: var(--space-lg); }
.ise-cta-banner__actions { display: flex; gap: var(--space-md); flex-wrap: wrap; margin-bottom: var(--space-md); }
.ise-cta-contact { display: flex; gap: var(--space-lg); flex-wrap: wrap; }
.ise-cta-contact-link {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,.75);
  font-size: 14px; font-weight: 600;
  text-decoration: none;
  transition: color .2s;
}
.ise-cta-contact-link:hover { color: var(--accent); }
.ise-cta-contact-link i { font-size: 16px; }
.ise-cta-wa { color: #25d366 !important; }

.ise-cta-icon-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.ise-cta-icon {
  width: 64px; height: 64px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  animation: ise-bob 3s ease-in-out infinite;
  animation-delay: var(--d, 0s);
}
@keyframes ise-bob {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

@media (max-width: 768px) {
  .ise-cta-banner__inner { grid-template-columns: 1fr; }
  .ise-cta-icon-stack { display: none; }
}

/* ============================================================
   SECTION 2.8 — DEMO POPUP MODAL
   ============================================================ */
.ise-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,45,110,.65);
  backdrop-filter: blur(6px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.ise-modal-overlay.open {
  opacity: 1;
  visibility: visible;
}
.ise-modal {
  background: var(--white);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 80px rgba(0,0,0,.3);
  animation: ise-modal-in .3s cubic-bezier(.34,1.56,.64,1);
}
@keyframes ise-modal-in {
  from { opacity:0; transform: scale(.88) translateY(20px); }
  to   { opacity:1; transform: scale(1)   translateY(0); }
}
.ise-modal-overlay.open .ise-modal { animation: ise-modal-in .3s cubic-bezier(.34,1.56,.64,1); }

.ise-modal-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}
.ise-modal-header-content { display: flex; align-items: center; gap: 14px; }
.ise-modal-icon { font-size: 32px; }
.ise-modal-header h2 { color: #fff; font-size: 20px; margin: 0; }
.ise-modal-header p  { color: rgba(255,255,255,.75); font-size: 13px; margin: 4px 0 0; }
.ise-modal-close {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.15);
  border: none; border-radius: 50%;
  color: #fff; font-size: 16px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
  flex-shrink: 0;
}
.ise-modal-close:hover { background: rgba(255,255,255,.25); }
.ise-modal-body { padding: 24px; }
.ise-modal-trust {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--border);
}
.ise-modal-trust span {
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 5px;
}
.ise-modal-trust i { color: var(--success); }

/* Enquiry Form Shared Styles */
.ise-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md); }
.ise-form-privacy {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  margin-top: var(--space-sm);
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.ise-form-privacy i { color: var(--success); }

.ise-form-msg {
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: var(--space-md);
}

@media (max-width: 480px) {
  .ise-form-row { grid-template-columns: 1fr; }
  .ise-modal-trust { gap: var(--space-md); }
}

/* ============================================================
   PAGINATION
   ============================================================ */
.ise-pagination { margin-top: var(--space-xl); }
.ise-pagination .page-numbers {
  display: flex;
  gap: 6px;
  justify-content: center;
  list-style: none;
}
.ise-pagination .page-numbers li a,
.ise-pagination .page-numbers li span {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-md);
  border: 2px solid var(--border);
  font-weight: 700; font-size: 14px;
  color: var(--body-text);
  text-decoration: none;
  transition: all .2s;
}
.ise-pagination .page-numbers li a:hover { border-color: var(--primary); color: var(--primary); }
.ise-pagination .page-numbers li span.current { background: var(--primary); border-color: var(--primary); color: #fff; }
