/* ==========================================================================
   ACCOMAN / Accoman | Accessible • Approachable • Accountable CUSTOM CSS
   A Premium, High-Contrast Editorial Design (No Tailwind)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  /* Brand Colors from Accoman Logo */
  --primary: #0F2C59;          /* Deep Corporate Navy */
  --primary-light: #1E40AF;    /* Royal Blue */
  --primary-dark: #0A1D37;     /* Midnight Navy */
  --accent: #F58220;           /* Vibrant Brand Orange */
  --accent-hover: #E07310;     /* Rich Amber Orange */
  --accent-soft: rgba(245, 130, 32, 0.1);
  --primary-soft: rgba(15, 44, 89, 0.05);
  
  /* Neutral Palette */
  --white: #FFFFFF;
  --bg-main: #FAFCFF;          /* Pure Crisp Ice Background */
  --bg-card: #FFFFFF;          /* Pure White for Cards */
  --text-dark: #0F172A;        /* Dark Slate for readability */
  --text-muted: #475569;       /* Slate Grey for subtitles */
  --text-light: #94A3B8;       /* Light Grey for placeholders */
  --border-color: #E2E8F0;     /* Soft borders */
  
  /* Styling Details */
  --font-sans: 'Plus Jakarta Sans', sans-serif;
  --font-heading: 'Space Grotesk', sans-serif;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 8px rgba(15, 44, 89, 0.04);
  --shadow-md: 0 10px 30px rgba(15, 44, 89, 0.06);
  --shadow-lg: 0 20px 40px rgba(15, 44, 89, 0.1);
  --shadow-flat: 4px 4px 0px var(--primary);
  --shadow-flat-accent: 4px 4px 0px var(--accent);
  --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base resets & setups */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  min-height: 100vh;
  font-family: var(--font-sans);
  background-color: var(--bg-main);
  color: var(--text-dark);
  line-height: 1.6;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* Typography styling */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary);
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
}

p {
  color: var(--text-muted);
}

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

/* Core Layout Utilities */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 80px 0;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* Grid / Flex Layout System */
.flex-row {
  display: flex;
  flex-wrap: wrap;
  margin: -16px;
}

.col {
  padding: 16px;
  flex: 1 1 0;
  min-width: 0;
}

.col-12 { width: 100%; flex: 0 0 100%; }
.col-8 { width: 66.666%; flex: 0 0 66.666%; }
.col-6 { width: 50%; flex: 0 0 50%; }
.col-4 { width: 33.333%; flex: 0 0 33.333%; }

@media (max-width: 992px) {
  .col-8, .col-6, .col-4 {
    width: 100%;
    flex: 0 0 100%;
  }
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 32px;
}

@media (max-width: 600px) {
  .grid-2, .grid-3 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.flex { display: flex; }
.flex-col { flex-direction: column; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }
.gap-4 { gap: 32px; }

/* Spacing Helpers */
.m-b-1 { margin-bottom: 8px; }
.m-b-2 { margin-bottom: 16px; }
.m-b-3 { margin-bottom: 24px; }
.m-b-4 { margin-bottom: 32px; }
.m-b-6 { margin-bottom: 48px; }

.p-t-6 { padding-top: 48px; }
.p-b-6 { padding-bottom: 48px; }

.hidden { display: none !important; }

/* Top Marquee */
.top-marquee {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--primary);
  color: white;
  z-index: 2000;
  padding: 8px 0;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
}

.marquee-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 24px;
}

.marquee-btn {
  background-color: var(--accent);
  color: white;
  padding: 4px 12px;
  border-radius: 4px;
  text-transform: uppercase;
  font-size: 11px;
}

/* Cart Icon Badge */
.cart-icon-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--primary-soft);
  color: var(--primary);
  border-radius: 50%;
  transition: var(--transition);
}

.cart-icon-btn:hover {
  background: var(--primary);
  color: white;
}

.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--accent);
  color: white;
  font-size: 9px;
  font-weight: 800;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
}

/* Cart Page Styles */
.cart-item-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 24px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 16px;
  transition: var(--transition);
}

.cart-item-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.cart-item-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-soft);
  color: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.cart-item-info {
  flex-grow: 1;
}

.cart-item-info h4 {
  font-size: 18px;
  margin-bottom: 4px;
}

.cart-item-info p {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.cart-item-price-actions {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price-tag {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
}

.remove-btn {
  background: none;
  border: none;
  color: #ef4444;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  justify-content: flex-end;
}

.remove-btn:hover {
  color: #b91c1c;
}

@media (max-width: 600px) {
  .cart-item-card {
    flex-direction: column;
    text-align: center;
  }
  .cart-item-price-actions {
    text-align: center;
    align-items: center;
  }
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--primary-soft);
  color: var(--primary);
  border: 1px solid rgba(15, 44, 89, 0.1);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-orange {
  background-color: var(--accent-soft);
  color: var(--accent);
  border-color: rgba(245, 130, 32, 0.2);
}

/* Custom Buttons (Modern Flat Editorial / Neo-Brutalist Hybrid) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-weight: 700;
  font-size: 15px;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-heading);
}

.btn-primary {
  background-color: var(--primary);
  color: var(--bg-main);
  box-shadow: var(--shadow-flat-accent);
}

.btn-primary:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px var(--accent);
}

.btn-accent {
  background-color: var(--accent);
  color: var(--bg-main);
  box-shadow: var(--shadow-flat);
}

.btn-accent:hover {
  background-color: var(--accent-hover);
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px var(--primary);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary-soft);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 13px;
  border-radius: var(--radius-sm);
}

/* FLOATING HEADER */
.floating-header {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1200px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(15, 44, 89, 0.08);
  border-radius: 50px;
  z-index: 1000;
  box-shadow: 0 10px 40px rgba(15, 44, 89, 0.08);
  transition: var(--transition);
}

body.has-marquee .floating-header {
  top: 50px;
}

.floating-header.scrolled {
  top: 8px;
  width: 95%;
  background: rgba(255, 255, 255, 0.95);
}

body.has-marquee .floating-header.scrolled {
  top: 40px;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
  height: 64px;
}

.header-logo img {
  height: 36px;
  display: block;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  color: var(--text-dark);
  position: relative;
  padding: 4px 0;
}

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

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

.nav-link:hover {
  color: var(--accent);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-cta .btn {
  padding: 10px 20px;
  font-size: 13px;
  border-radius: 50px;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--primary);
  font-size: 22px;
}

/* MOBILE NAV DRAWER */
.mobile-drawer {
  display: none;
  position: fixed;
  top: 90px;
  left: 5%;
  right: 5%;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
  z-index: 999;
  box-shadow: var(--shadow-lg);
  flex-direction: column;
  gap: 16px;
  text-align: center;
}

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

@media (max-width: 768px) {
  .nav-links, .header-cta {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
}

/* HERO SECTION - ASYMMETRIC DESIGN */
.hero-section {
  padding: 160px 0 100px 0;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 80% 20%, rgba(245, 130, 32, 0.05) 0%, rgba(15, 44, 89, 0.02) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.hero-text-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-title .highlight {
  color: transparent;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-description {
  font-size: 18px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
}

@media (max-width: 600px) {
  .hero-buttons {
    flex-direction: column;
  }
}

/* Hero Widget Stack */
.hero-widget-stack {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.widget-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 16px;
}

.widget-card:hover {
  transform: translateX(-8px);
  border-color: var(--accent);
}

.widget-icon {
  background: var(--primary-soft);
  color: var(--primary);
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.widget-card:nth-child(even) .widget-icon {
  background: var(--accent-soft);
  color: var(--accent);
}

.widget-info h4 {
  font-size: 20px;
  margin-bottom: 2px;
}

.widget-info p {
  font-size: 13px;
}

/* CLIENT LOGO STRIP */
.partner-strip {
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 24px 0;
  background: var(--bg-main);
}

.partner-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  opacity: 0.8;
}

.partner-logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.partner-logo i {
  color: var(--accent);
}

/* INTERACTIVE CATALOG FILTER */
.filter-section {
  position: sticky;
  top: 96px;
  background: rgba(250, 252, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 30;
  border-bottom: 1px solid var(--border-color);
  padding: 20px 0;
}

.filter-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

@media (max-width: 768px) {
  .filter-container {
    flex-direction: column;
    align-items: stretch;
  }
}

.filter-btn-group {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.filter-btn-group::-webkit-scrollbar {
  display: none;
}

.filter-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 10px 20px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
}

.filter-btn:hover {
  background-color: var(--primary-soft);
}

.filter-btn.active {
  background: var(--primary);
  color: var(--bg-main);
  border-color: var(--primary);
}

.catalog-metric {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
}

/* COURSE CARDS GRID */
.courses-grid-section {
  padding: 60px 0;
}

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

.course-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.course-thumb {
  position: relative;
  height: 200px;
  background-color: var(--primary-dark);
  overflow: hidden;
}

.course-thumb img {
  width: 100%;
  height: 100%;
  object-cover: cover;
  opacity: 0.7;
  transition: var(--transition);
}

.course-card:hover .course-thumb img {
  transform: scale(1.05);
}

.course-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--accent);
  color: var(--bg-main);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 10px;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
}

.course-duration {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(10, 29, 55, 0.8);
  color: var(--bg-main);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 4px;
}

.course-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}

.course-meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
}

.course-meta i {
  color: var(--accent);
}

.course-title {
  font-size: 20px;
  color: var(--primary);
  line-height: 1.3;
}

.course-desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-muted);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.course-tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
  padding-top: 12px;
}

.course-subtag {
  background: var(--bg-main);
  border: 1px solid var(--border-color);
  font-size: 10px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 4px;
}

.course-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.course-fee-info span {
  font-size: 10px;
  text-transform: uppercase;
  color: var(--text-light);
  display: block;
}

.course-fee {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  color: var(--primary);
}

/* PREMIUM METHODOLOGY TIMELINE */
.methodology-timeline {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 48px;
  position: relative;
}

.methodology-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  width: 2px;
  background: var(--primary-soft);
}

.timeline-item {
  position: relative;
  padding-left: 56px;
}

.timeline-num {
  position: absolute;
  left: 0;
  top: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--bg-main);
  font-family: var(--font-heading);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid var(--bg-main);
  box-shadow: var(--shadow-sm);
  z-index: 2;
}

.timeline-item:nth-child(even) .timeline-num {
  background-color: var(--accent);
}

.timeline-content {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

/* REVIEWS / TESTIMONIALS SLIDER */
.testimonials-section {
  background-color: var(--primary-dark);
  color: var(--bg-main);
}

.testimonials-section h2 {
  color: var(--bg-main);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--transition);
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}

.stars {
  color: var(--accent);
  font-size: 14px;
}

.quote {
  font-size: 15px;
  font-style: italic;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--accent);
  color: var(--bg-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
}

.reviewer-details h4 {
  color: var(--bg-main);
  font-size: 14px;
}

.reviewer-details p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
}

/* MODERN BRANDED FOOTER */
.custom-footer {
  background: var(--primary-dark);
  color: var(--bg-main);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 80px 0 32px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 48px;
  margin-bottom: 32px;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo img {
  height: 40px;
}

.footer-desc {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

.social-link:hover {
  background: var(--accent);
  color: var(--bg-main);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-family: var(--font-heading);
  color: var(--bg-main);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 13px;
}

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

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

.footer-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact i {
  color: var(--accent);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  flex-wrap: wrap;
  gap: 16px;
}

@media (max-width: 600px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

.footer-legal-links {
  display: flex;
  gap: 24px;
}

/* FLOATING WHATSAPP BUTTON */
.whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background-color: #25D366;
  color: var(--bg-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  z-index: 999;
  transition: var(--transition);
}

.whatsapp-btn:hover {
  transform: scale(1.1) rotate(8deg);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
}

/* ABOUT US SPECIAL STYLES */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}

.team-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 16px auto;
  border: 3px solid var(--border-color);
}

.team-card:nth-child(even) .team-avatar {
  background: var(--accent-soft);
  color: var(--accent);
}

/* CONTACT PAGE CUSTOM FORM */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: flex-start;
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.info-item {
  display: flex;
  gap: 20px;
}

.info-icon {
  width: 48px;
  height: 48px;
  background-color: var(--accent-soft);
  color: var(--accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.info-text h4 {
  font-size: 16px;
  margin-bottom: 4px;
}

.info-text p {
  font-size: 14px;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

@media (max-width: 600px) {
  .contact-card {
    padding: 24px;
  }
}

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

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 6px;
  color: var(--primary);
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text-dark);
  background-color: var(--bg-main);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent);
  background-color: var(--bg-card);
  box-shadow: 0 0 0 4px rgba(245, 130, 32, 0.15);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* COURSE DETAIL / SYLLABUS MODALS */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 29, 55, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.modal-overlay.open {
  display: flex;
}

.modal-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  width: 100%;
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  position: relative;
  animation: modalEnter 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes modalEnter {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--bg-main);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
}

.modal-close:hover {
  background: var(--accent);
  color: var(--bg-main);
}

.modal-header-block {
  padding: 40px 40px 24px 40px;
  background-color: var(--primary-dark);
  color: var(--bg-main);
}

.modal-header-block h2 {
  color: var(--bg-main);
  font-size: 24px;
}

.modal-body-block {
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (max-width: 600px) {
  .modal-header-block, .modal-body-block {
    padding: 24px;
  }
}

.modal-meta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 24px;
}

@media (max-width: 600px) {
  .modal-meta-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.meta-item span {
  font-size: 10px;
  text-transform: uppercase;
  color: var(--text-light);
  display: block;
}

.meta-item p {
  font-weight: 700;
  font-size: 15px;
  color: var(--primary);
}

.syllabus-module-item {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-bottom: 12px;
}

.syllabus-module-title {
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.syllabus-module-desc {
  font-size: 13px;
  color: var(--text-muted);
}
