/* src/app/globals.css - Primus Civil Services Academy Premium Coaching Academy UI Styles */

/* ==========================================
   1. Import Fonts & Setup Variables
   ========================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
  --primary: #0B2D5B;
  --primary-dark: #05152B;
  --primary-light: #153E74;
  --secondary: #F5C242; /* Gold */
  --secondary-hover: #E0AF31;
  --accent: #E67E22; /* Orange */
  --accent-hover: #D35400;
  --bg-color: #F8F5F0; /* Warm Sand */
  --bg-white: #FFFFFF;
  --bg-dark: #060F1A;
  --text-dark: #1F242D;
  --text-light: #FFFFFF;
  --text-muted: #5A6573;
  --border-color: rgba(11, 45, 91, 0.08);
  --border-light: rgba(255, 255, 255, 0.1);
  --success: #27AE60;
  
  /* Modern Premium Shadows */
  --shadow-sm: 0 4px 12px rgba(11, 45, 91, 0.03);
  --shadow-md: 0 10px 25px rgba(11, 45, 91, 0.05);
  --shadow-lg: 0 20px 50px rgba(11, 45, 91, 0.08);
  --shadow-glow: 0 0 25px rgba(245, 194, 66, 0.15);
  
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* ==========================================
   2. Reset & General Styles
   ========================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-color);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.2;
  color: var(--primary-dark);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 6.5rem 0;
  position: relative;
}

.section-bg-white {
  background-color: var(--bg-white);
}

.section-bg-sand {
  background-color: #F3ECE1;
}

.section-bg-dark {
  background-color: var(--primary-dark);
  color: var(--text-light);
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 4rem auto;
}

.section-header h2 {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--primary-dark);
  letter-spacing: -0.5px;
  margin-bottom: 1rem;
}

.section-bg-dark .section-header h2 {
  color: var(--text-light);
}

.section-header h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: var(--secondary);
  margin: 0.8rem auto 0 auto;
  border-radius: 2px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.15rem;
  font-weight: 400;
  margin-top: 1rem;
}

.section-bg-dark .section-header p {
  color: rgba(255, 255, 255, 0.7);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-color);
}
::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

/* ==========================================
   3. Buttons & Badges
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2rem;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  gap: 0.6rem;
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
  font-size: 0.95rem;
}

.btn-primary {
  background-color: var(--secondary);
  color: var(--primary-dark);
  box-shadow: 0 4px 18px rgba(245, 194, 66, 0.25);
  border: 1px solid var(--secondary);
}

.btn-primary:hover {
  background-color: var(--secondary-hover);
  border-color: var(--secondary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 194, 66, 0.4);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-light);
  border: 2px solid var(--border-light);
}

.btn-secondary:hover {
  background-color: var(--bg-white);
  color: var(--primary-dark);
  border-color: var(--bg-white);
  transform: translateY(-2px);
}

.btn-accent {
  background-color: var(--accent);
  color: var(--text-light);
  box-shadow: 0 4px 18px rgba(230, 126, 34, 0.25);
  border: 1px solid var(--accent);
}

.btn-accent:hover {
  background-color: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(230, 126, 34, 0.4);
}

.btn-whatsapp {
  background-color: #25D366;
  color: var(--text-light);
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.2);
  border: 1px solid #25D366;
}

.btn-whatsapp:hover {
  background-color: #1eb753;
  border-color: #1eb753;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

/* Pulsing highlight animation */
.btn-pulse {
  animation: pulse-button 2s infinite;
}

@keyframes pulse-button {
  0% {
    box-shadow: 0 0 0 0 rgba(230, 126, 34, 0.5);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(230, 126, 34, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(230, 126, 34, 0);
  }
}

.badge {
  display: inline-block;
  padding: 0.45rem 1.1rem;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.badge-primary {
  background-color: rgba(245, 194, 66, 0.15);
  color: var(--secondary-hover);
  border: 1px solid rgba(245, 194, 66, 0.3);
}

.badge-accent {
  background-color: rgba(230, 126, 34, 0.15);
  color: var(--accent);
  border: 1px solid rgba(230, 126, 34, 0.3);
}

/* ==========================================
   4. Header & Navigation (Glassmorphic)
   ========================================== */
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
}

header.sticky {
  position: fixed;
  background-color: rgba(5, 21, 43, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  animation: slideDown 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(5, 21, 43, 0.2);
}

@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 95px;
}

header.sticky .nav-container {
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  cursor: pointer;
}

.logo-img {
  height: 65px;
  width: auto;
  display: block;
  transition: var(--transition);
}

header.sticky .logo-img {
  height: 55px;
}

.nav-menu {
  display: flex;
  gap: 2.8rem;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  padding: 0.6rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2.5px;
  background-color: var(--secondary);
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--secondary);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  gap: 0.85rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 18px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--text-light);
  border-radius: 2px;
  transition: var(--transition);
}

/* ==========================================
   5. Hero Section
   ========================================== */
.hero {
  padding: 12.5rem 0 6.5rem 0;
  background: linear-gradient(135deg, #030F21 0%, #0B2D5B 50%, #163B6B 100%);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 75% 30%, rgba(245, 194, 66, 0.09) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge-container {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.hero-title {
  font-size: 3.8rem;
  font-weight: 950;
  margin-bottom: 0.5rem;
  line-height: 1.15;
  color: var(--text-light);
  letter-spacing: -1px;
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 1.75rem;
  letter-spacing: -0.5px;
  line-height: 1.25;
}

.hero-desc {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.25rem;
  max-width: 640px;
  font-weight: 400;
}

.hero-offer {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 5px solid var(--secondary);
  padding: 1.5rem 2.25rem;
  border-radius: 0 12px 12px 0;
  margin-bottom: 2.5rem;
  display: inline-block;
}

.offer-label {
  display: inline-block;
  background-color: var(--accent);
  color: var(--text-light);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  margin-bottom: 0.6rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.offer-pricing {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.original-price {
  font-size: 1.35rem;
  text-decoration: line-through;
  color: rgba(255, 255, 255, 0.45);
}

.deal-price {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--secondary);
  letter-spacing: -0.5px;
}

.offer-date {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 0.6rem;
  font-weight: 500;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(3, 15, 33, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.12);
  background-color: var(--primary-dark);
  width: 100%;
  max-width: 440px;
  aspect-ratio: 4 / 5;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.hero-image-container:hover .hero-image {
  transform: scale(1.04);
}

.hero-floating-badge {
  position: absolute;
  bottom: 25px;
  left: -20px;
  background-color: rgba(6, 15, 26, 0.92);
  backdrop-filter: blur(15px);
  color: var(--text-light);
  padding: 1.1rem 1.6rem;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 4px solid var(--secondary);
}

.hero-floating-badge .badge-icon {
  width: 38px;
  height: 38px;
  background-color: rgba(245, 194, 66, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
}

.hero-floating-badge .badge-text {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
}

.hero-floating-badge .badge-text strong {
  display: block;
  font-size: 1.05rem;
  color: var(--text-light);
  font-family: var(--font-heading);
}

/* ==========================================
   6. Countdown Timer Banner
   ========================================== */
.countdown-banner {
  background: linear-gradient(90deg, #05152B 0%, #153E74 50%, #05152B 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 2px solid var(--secondary);
  color: var(--text-light);
  padding: 1rem 0;
  position: relative;
  z-index: 20;
}

.countdown-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.countdown-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.countdown-title span {
  color: var(--secondary);
}

.countdown-timer {
  display: flex;
  gap: 1rem;
}

.countdown-item {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  min-width: 65px;
  flex-direction: column;
}

.countdown-number {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
}

.countdown-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
  margin-top: 0.2rem;
  letter-spacing: 0.5px;
}

/* ==========================================
   7. Why Choose GURI
   ========================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}

.feature-card {
  background-color: var(--bg-white);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  position: relative;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(11, 45, 91, 0.12);
}

.feature-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  background-color: rgba(11, 45, 91, 0.03);
  border: 1px solid rgba(11, 45, 91, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 1.75rem;
  transition: var(--transition);
}

.feature-card:hover .feature-icon-wrapper {
  background-color: var(--primary-dark);
  color: var(--secondary);
  border-color: var(--primary-dark);
}

.feature-icon-wrapper svg {
  width: 28px;
  height: 28px;
}

.feature-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.85rem;
  font-weight: 800;
  letter-spacing: -0.3px;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

/* ==========================================
   8. Course Workflow (Timeline Hover adjustments)
   ========================================== */
.workflow {
  position: relative;
}

.workflow-timeline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  margin-top: 5rem;
}

.workflow-timeline::before {
  content: '';
  position: absolute;
  top: 45px;
  left: 6%;
  width: 88%;
  height: 2px;
  background: linear-gradient(to right, var(--border-color), rgba(11, 45, 91, 0.3), var(--border-color));
  z-index: 1;
}

.workflow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 15%;
  position: relative;
  z-index: 2;
}

.workflow-badge {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 1.5rem;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

/* Roadmap timeline hover circle color change */
.workflow-step:hover .workflow-badge {
  border-color: var(--secondary);
  background-color: var(--secondary);
  color: var(--primary-dark);
  transform: scale(1.08);
  box-shadow: 0 10px 25px rgba(245, 194, 66, 0.3);
}

.workflow-badge svg {
  width: 32px;
  height: 32px;
}

.workflow-step h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--primary-dark);
}

.workflow-step p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================
   9. Faculty Slider Carousel Styles
   ========================================== */
.faculty-grid {
  display: grid;
  grid-template-columns: repeat(24, 1fr);
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 1rem;
}

.faculty-card-wrapper {
  grid-column: span 6;
}

@media (min-width: 1025px) {
  .faculty-col-1 { grid-column: 1 / 7; }
  .faculty-col-2 { grid-column: 7 / 13; }
  .faculty-col-3 { grid-column: 13 / 19; }
  .faculty-col-4 { grid-column: 19 / 25; }

  .faculty-col-5 { grid-column: 4 / 10; }
  .faculty-col-6 { grid-column: 10 / 16; }
  .faculty-col-7 { grid-column: 16 / 22; }
}

.faculty-card {
  background-color: var(--bg-white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.faculty-img-container {
  height: 280px;
  background: linear-gradient(135deg, #05152B 0%, #153E74 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faculty-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-weight: 700;
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
}

.faculty-img-placeholder svg {
  width: 64px;
  height: 64px;
  opacity: 0.15;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.faculty-info {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.faculty-subject {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.5rem;
  display: inline-block;
}

.faculty-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.faculty-exp {
  font-size: 0.85rem;
  color: var(--primary-dark);
  font-weight: 700;
  margin-bottom: 1rem;
  display: inline-block;
  background-color: rgba(245, 194, 66, 0.15);
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.faculty-bio {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex-grow: 1;
}

/* ==========================================
   10. Demo Classes Section
   ========================================== */
.demo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.demo-card {
  background-color: var(--bg-white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
}

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

.video-placeholder {
  position: relative;
  aspect-ratio: 16 / 9;
  background-color: #05152B;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.video-thumbnail-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(rgba(5, 21, 43, 0.85), rgba(11, 45, 91, 0.95));
  color: rgba(255, 255, 255, 0.95);
  font-weight: 700;
  font-family: var(--font-heading);
  text-align: center;
  padding: 1.5rem;
  font-size: 1.1rem;
  letter-spacing: -0.2px;
}

.video-play-btn {
  position: absolute;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  box-shadow: 0 4px 20px rgba(245, 194, 66, 0.4);
  transition: var(--transition);
  z-index: 10;
}

.demo-card:hover .video-play-btn {
  transform: scale(1.1);
  background-color: var(--accent);
  color: var(--text-light);
  box-shadow: 0 6px 20px rgba(230, 126, 34, 0.5);
}

.video-play-btn svg {
  width: 20px;
  height: 20px;
  margin-left: 3px;
}

.demo-info {
  padding: 1.75rem;
}

.demo-info h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 800;
}

.demo-info p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Video Modal overlay */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(5, 21, 43, 0.95);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-modal.active {
  display: flex;
  opacity: 1;
}

.video-modal-container {
  width: 90%;
  max-width: 880px;
  aspect-ratio: 16 / 9;
  background-color: #000;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
}

.video-modal-close {
  position: absolute;
  top: -45px;
  right: 0;
  color: var(--text-light);
  font-size: 1rem;
  cursor: pointer;
  background: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.video-modal-iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ==========================================
   11. Centered Strong Pricing Section (Only 1 box)
   ========================================== */
.pricing-section-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1240px;
  margin: 3rem auto 0 auto;
  align-items: stretch;
}

.premium-pricing-card {
  background: var(--bg-white);
  border-radius: 20px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  width: 100%;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.premium-pricing-card.featured {
  border: 2px solid var(--secondary);
  box-shadow: 0 20px 40px rgba(11, 45, 91, 0.12), 0 0 30px rgba(245, 194, 66, 0.25);
  transform: scale(1.03);
  z-index: 10;
}

.premium-pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.premium-pricing-card.featured:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 30px 50px rgba(11, 45, 91, 0.18), 0 0 40px rgba(245, 194, 66, 0.45);
}

.pricing-ribbon {
  position: absolute;
  top: 28px;
  right: -48px;
  background-color: var(--accent);
  color: var(--text-light);
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.4rem 4rem;
  transform: rotate(45deg);
  font-size: 0.8rem;
  letter-spacing: 1px;
  box-shadow: 0 4px 10px rgba(230,126,34,0.3);
}

.pricing-header {
  background: linear-gradient(180deg, rgba(11, 45, 91, 0.03) 0%, transparent 100%);
  padding: 3rem 2.5rem 1.5rem 2.5rem;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

.pricing-badge {
  background-color: rgba(230, 126, 34, 0.1);
  color: var(--accent);
  padding: 0.4rem 1.25rem;
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 1.25rem;
  letter-spacing: 0.5px;
}

.premium-pricing-card h3 {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--primary-dark);
}

.pricing-amount {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.85rem;
  margin: 1.5rem 0;
  flex-wrap: wrap;
}

.price-strike {
  font-size: 1.25rem;
  text-decoration: line-through;
  color: var(--text-muted);
}

.price-main {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--primary-dark);
  letter-spacing: -1px;
}

.price-save {
  font-size: 0.95rem;
  color: var(--success);
  font-weight: 700;
  background-color: rgba(46, 204, 113, 0.1);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
}

.pricing-body {
  padding: 2.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pricing-benefits {
  margin-bottom: 2.5rem;
  flex-grow: 1;
}

.pricing-benefits li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  font-size: 1.02rem;
  color: var(--text-dark);
}

.pricing-benefits li svg {
  width: 22px;
  height: 22px;
  color: var(--success);
  flex-shrink: 0;
}

.premium-pricing-card .btn {
  width: 100%;
}

.btn-pricing-outline {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  box-shadow: none;
}

.btn-pricing-outline:hover {
  background-color: var(--primary);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ==========================================
   12. Lead Capture & Enrolment Benefit Grid
   ========================================== */
.lead-capture {
  background: linear-gradient(135deg, #030F21 0%, #0B2D5B 100%);
  color: var(--text-light);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.lead-grid-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 4.5rem;
  align-items: center;
}

.lead-benefits h3 {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  color: var(--secondary);
}

.lead-benefits p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.benefit-bullet-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.benefit-bullet {
  display: flex;
  gap: 1.25rem;
}

.benefit-bullet-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(245, 194, 66, 0.1);
  border: 1px solid rgba(245, 194, 66, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  flex-shrink: 0;
}

.benefit-bullet-icon svg {
  width: 22px;
  height: 22px;
}

.benefit-bullet-text h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.25rem;
}

.benefit-bullet-text p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 0;
}

.form-container {
  background-color: var(--bg-white);
  padding: 3.5rem 3rem;
  border-radius: 16px;
  box-shadow: 0 30px 60px rgba(3, 10, 21, 0.4);
  color: var(--text-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group-full {
  grid-column: span 2;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-dark);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border: 1.5px solid var(--border-color);
  border-radius: 6px;
  font-size: 1rem;
  transition: var(--transition);
  background-color: #FAF9F6;
  color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--primary);
  background-color: var(--bg-white);
  box-shadow: 0 0 0 4px rgba(11, 45, 91, 0.08);
}

.form-group.error input,
.form-group.error select {
  border-color: var(--accent);
  background-color: rgba(230, 126, 34, 0.02);
}

.error-message {
  font-size: 0.78rem;
  color: var(--accent);
  display: none;
  font-weight: 600;
}

.form-group.error .error-message {
  display: block;
}

.form-container button[type="submit"] {
  width: 100%;
}

/* Form success panel */
.form-success-message {
  display: none;
  text-align: center;
  padding: 2.5rem 1rem;
}

.form-success-message.active {
  display: block;
}

.success-icon {
  width: 68px;
  height: 68px;
  background-color: rgba(39, 174, 96, 0.1);
  color: var(--success);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.success-icon svg {
  width: 34px;
  height: 34px;
}

.form-success-message h3 {
  font-size: 1.85rem;
  color: var(--primary-dark);
  margin-bottom: 0.75rem;
}

.form-success-message p {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.6;
}

/* ==========================================
   13. Contact & Map Section
   ========================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 4.5rem;
  align-items: start;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  gap: 1.25rem;
}

.contact-icon {
  width: 52px;
  height: 52px;
  background-color: rgba(11, 45, 91, 0.03);
  border: 1px solid rgba(11, 45, 91, 0.05);
  border-radius: 10px;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.contact-item:hover .contact-icon {
  background-color: var(--primary-dark);
  color: var(--secondary);
  border-color: var(--primary-dark);
}

.contact-icon svg {
  width: 22px;
  height: 22px;
}

.contact-details h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
  color: var(--primary-dark);
}

.contact-details p {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.5;
}

.map-container {
  height: 100%;
  min-height: 420px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  position: relative;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  background-color: #E2DCD0;
}

.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ==========================================
   14. Footer
   ========================================== */
footer {
  background-color: var(--primary-dark);
  color: rgba(255, 255, 255, 0.65);
  padding: 5rem 0 2.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand h3 {
  color: var(--text-light);
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
}

.footer-brand p {
  line-height: 1.75;
  margin-bottom: 2rem;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: var(--transition);
}

.social-link:hover {
  background-color: var(--secondary);
  color: var(--primary-dark);
  border-color: var(--secondary);
  transform: translateY(-2px);
}

.social-link svg {
  width: 18px;
  height: 18px;
}

.footer-links h4 {
  color: var(--text-light);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.65);
}

.footer-links a:hover {
  color: var(--secondary);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

.footer-bottom-links a:hover {
  color: var(--secondary);
}

/* ==========================================
   15. Floating Elements
   ========================================== */
.floating-actions {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  z-index: 999;
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(3, 10, 21, 0.15);
  transition: var(--transition);
  cursor: pointer;
}

.float-whatsapp {
  background-color: #25D366;
  color: var(--text-light);
}

.float-whatsapp:hover {
  background-color: #1ebd55;
  transform: scale(1.08);
}

.float-call {
  background-color: var(--bg-white);
  color: var(--primary-dark);
  border: 1px solid var(--border-color);
}

.float-call:hover {
  background-color: var(--secondary);
  color: var(--primary-dark);
  border-color: var(--secondary);
  transform: scale(1.08);
}

.float-top {
  background-color: var(--accent);
  color: var(--text-light);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.float-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.float-top:hover {
  background-color: var(--accent-hover);
  transform: scale(1.08);
}

.float-btn svg {
  width: 22px;
  height: 22px;
}

/* Tooltip overlay */
.float-btn::before {
  content: attr(data-tooltip);
  position: absolute;
  right: 64px;
  background-color: var(--primary-dark);
  color: var(--text-light);
  padding: 0.4rem 0.9rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  letter-spacing: 0.5px;
}

.float-btn:hover::before {
  opacity: 1;
  visibility: visible;
}

/* ==========================================
   16. Animations (Intersection Observer)
   ========================================== */
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.active {
  opacity: 1;
}

/* ==========================================
   17. Responsive Media Queries
   ========================================== */

/* Laptop (Max: 1024px) */
@media (max-width: 1024px) {
  html {
    font-size: 15px;
  }
  
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.95rem;
  }
  
  .faculty-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .faculty-card-wrapper {
    grid-column: auto;
  }
  
  .demo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .demo-card:last-child {
    grid-column: span 2;
    max-width: 50%;
    margin: 0 auto;
  }
  
  .test-series-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-section-container {
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    max-width: 900px;
    margin: 3rem auto 0 auto;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .workflow-timeline {
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
  }
  
  .workflow-timeline::before {
    display: none;
  }
  
  .workflow-step {
    width: 28%;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .map-container {
    min-height: 360px;
  }
}

/* Tablet (Max: 768px) */
@media (max-width: 768px) {
  .section {
    padding: 5rem 0;
  }
  
  .section-header {
    margin-bottom: 3.5rem;
  }
  
  .section-header h2 {
    font-size: 2.2rem;
  }
  
  .nav-cta {
    display: none;
  }
  
  .hamburger {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 95px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 95px);
    background-color: var(--primary-dark);
    flex-direction: column;
    align-items: center;
    padding: 4rem 0;
    gap: 2.5rem;
    transition: var(--transition);
    border-top: 1px solid var(--border-light);
    box-shadow: var(--shadow-lg);
  }
  
  header.sticky .nav-menu {
    top: 80px;
    height: calc(100vh - 80px);
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
    text-align: center;
  }
  
  .hero-badge-container {
    justify-content: center;
  }
  
  .hero-desc {
    margin: 0 auto 2.5rem auto;
  }
  
  .hero-cta {
    justify-content: center;
  }
  
  .hero-image-wrapper {
    order: -1;
  }
  
  .hero-image-container {
    max-width: 360px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }

  .faculty-grid {
    grid-template-columns: 1fr;
  }

  .faculty-card-wrapper {
    grid-column: auto;
  }
  
  .workflow-step {
    width: 45%;
  }
  
  .demo-grid {
    grid-template-columns: 1fr;
  }
  
  .demo-card:last-child {
    grid-column: span 1;
    max-width: 100%;
  }
  
  .lead-grid-layout {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .pricing-section-container {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 3rem auto 0 auto;
  }
  
  .form-container {
    padding: 3rem 2rem;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .form-group-full {
    grid-column: span 1;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* Mobile (Max: 480px) */
@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.6rem;
  }
  
  .offer-pricing {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .original-price {
    font-size: 1.25rem;
  }
  
  .deal-price {
    font-size: 2.3rem;
  }
  
  .hero-floating-badge {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }
  
  .workflow-step {
    width: 100%;
  }
  
  .pricing-body {
    padding: 2rem 1.5rem;
  }
}

/* ==========================================
   14. Premium Table & Badges for Current Affairs
   ========================================== */
.table-wrapper {
  margin-top: 2.5rem;
  overflow-x: auto;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  background-color: var(--bg-white);
  width: 100%;
}

.premium-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.95rem;
  min-width: 700px;
}

.premium-table th {
  background-color: var(--primary);
  color: var(--text-light);
  font-family: var(--font-heading);
  font-weight: 700;
  padding: 1.25rem 1.5rem;
  font-size: 1rem;
  letter-spacing: 0.5px;
}

.premium-table td {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-dark);
  line-height: 1.6;
}

.premium-table tr:last-child td {
  border-bottom: none;
}

.premium-table tr:nth-child(even) {
  background-color: rgba(11, 45, 91, 0.015);
}

.premium-table tr:hover {
  background-color: rgba(245, 194, 66, 0.04);
  transition: var(--transition);
}

.table-badge {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.table-badge-karnataka {
  background-color: rgba(245, 194, 66, 0.15);
  color: #c99310;
  border: 1px solid rgba(245, 194, 66, 0.3);
}

.table-badge-national {
  background-color: rgba(11, 45, 91, 0.08);
  color: var(--primary-light);
  border: 1px solid rgba(11, 45, 91, 0.15);
}

.table-badge-international {
  background-color: rgba(230, 126, 34, 0.15);
  color: var(--accent);
  border: 1px solid rgba(230, 126, 34, 0.25);
}

/* ==========================================
   15. Mobile Bottom Sticky CTA Banner
   ========================================== */
.mobile-sticky-banner {
  display: none;
}

@media (max-width: 768px) {
  .mobile-sticky-banner {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #05152B 0%, #153E74 100%);
    border-top: 3px solid var(--secondary);
    padding: 0.9rem 1.25rem;
    box-shadow: 0 -10px 30px rgba(5, 21, 43, 0.35);
    z-index: 9999;
    text-align: center;
  }
  
  .mobile-banner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
    max-width: 480px;
    margin: 0 auto;
  }
  
  .mobile-banner-text {
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.45;
    font-family: var(--font-heading);
    margin: 0;
  }
  
  .mobile-banner-text .highlight {
    color: var(--secondary);
    display: block;
    margin-top: 0.15rem;
    font-weight: 700;
  }
  
  .banner-btn {
    width: 100%;
    max-width: 280px;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 800;
    border-radius: 8px;
    background-color: var(--secondary);
    color: var(--primary-dark);
    box-shadow: 0 4px 15px rgba(245, 194, 66, 0.35);
    border: none;
    cursor: pointer;
  }

  .banner-btn:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-1px);
  }
  
  /* Reposition floating call/whatsapp elements so they don't overlap the banner */
  .floating-actions {
    bottom: 115px !important;
  }
  
  /* Prevent content overlapping at the bottom */
  body {
    padding-bottom: 115px !important;
  }
}
