/* QubikCS Landing Page Stylesheet - Education & Tutoring Theme */

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

:root {
  --bg-landing: #faf9f5; /* Warm soothing cream-sand */
  --bg-card: #ffffff;
  --text-main: #1f2723; /* Dark charcoal green */
  --text-muted: #64756c; /* Cool green-slate */
  --text-inverse: #0d1210;
  
  --primary: #4d8e78; /* Trusted learning green */
  --primary-gradient: linear-gradient(135deg, #4d8e78 0%, #366c59 100%);
  --secondary-gradient: linear-gradient(135deg, #df9b6d 0%, #a7663e 100%);
  --accent-teal: #3a808f; /* Calm educational teal */
  --warning: #dfa04b; /* Soft warm gold */
  --danger: #cf6666; /* Muted red */
  
  --border-light: #e6eae7;
  --border-focus: #4d8e78;
  --radius-lg: 24px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --shadow-light: 0 10px 30px rgba(77, 142, 120, 0.04);
  --shadow-hover: 0 20px 40px rgba(77, 142, 120, 0.08);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

/* Reset & Basic Resets */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--text-inverse);
  font-weight: 700;
  letter-spacing: -0.02em;
}

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

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-primary {
  background: var(--primary-gradient);
  color: white;
  box-shadow: 0 8px 24px rgba(77, 142, 120, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(77, 142, 120, 0.4);
}

.btn-secondary {
  background: white;
  border: 2px solid var(--primary);
  color: var(--primary);
}

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

.btn-block {
  width: 100%;
  display: flex;
}

/* ==========================================================================
   1. STICKY HEADER NAVIGATION
   ========================================================================== */
.landing-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(250, 249, 245, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  z-index: 100;
  transition: var(--transition);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: var(--primary);
}

.logo-icon {
  width: 38px;
  height: 38px;
  background: var(--primary-gradient);
  color: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 4px 12px rgba(77, 142, 120, 0.2);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-actions .btn {
  white-space: nowrap;
}

/* Pulsing Toll-Free Ring */
.toll-free-link {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: 12px;
}

.phone-ring {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(77, 142, 120, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  position: relative;
}

.phone-pulse {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  border: 1px solid var(--primary);
  animation: pulse-ring 2s infinite ease-in-out;
}

@keyframes pulse-ring {
  0% { transform: scale(1.0); opacity: 0.6; }
  100% { transform: scale(1.6); opacity: 0; }
}

.toll-free-text {
  font-size: 13px;
  color: var(--text-muted);
}

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

@media (max-width: 992px) {
  .nav-menu, .toll-free-link, .header-actions .btn-secondary {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: -100%;
  width: 280px;
  height: 100vh;
  background: var(--bg-landing);
  border-right: 1px solid var(--border-light);
  z-index: 200;
  padding: 40px 24px;
  box-shadow: 10px 0 40px rgba(0,0,0,0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav-overlay.active {
  left: 0;
}

.close-mobile-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 22px;
  cursor: pointer;
  color: var(--primary);
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.mobile-menu a {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-main);
  padding: 8px 0;
  white-space: nowrap;
}

/* ==========================================================================
   2. HERO BANNER & BOOKING SECTION
   ========================================================================== */
.hero-section {
  padding: 50px 24px;
  background: radial-gradient(circle at 80% 20%, rgba(77, 142, 120, 0.08) 0%, transparent 60%);
  position: relative;
  overflow: hidden;
}

.hero-mesh {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: var(--accent-teal);
  filter: blur(140px);
  opacity: 0.04;
  top: -100px;
  right: -100px;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
}

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

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

.hero-text-area {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  background: rgba(77, 142, 120, 0.1);
  padding: 6px 14px;
  border-radius: 20px;
  align-self: flex-start;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-text-area h1 {
  font-size: 52px;
  line-height: 1.1;
  color: var(--text-inverse);
}

@media (max-width: 600px) {
  .hero-text-area h1 {
    font-size: 38px;
  }
}

.hero-text-area p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
}

.trust-icons-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 15px;
}

.trust-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: white;
  border: 1px solid var(--border-light);
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  box-shadow: var(--shadow-light);
}

.trust-pill i {
  color: var(--primary);
}

/* Enquiry Form Card */
.booking-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  box-shadow: 0 15px 50px rgba(77, 142, 120, 0.05);
}

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

.booking-card h3 {
  font-size: 24px;
  margin-bottom: 10px;
  line-height: 1.2;
}

.booking-card p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 18px;
  line-height: 1.5;
}

.demo-option-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 2px;
}

.demo-option-block h4 {
  font-size: 15px;
  line-height: 1.35;
  margin: 0;
}

.demo-option-block .form-intro {
  margin-bottom: 0;
  font-weight: 600;
  color: var(--text-main);
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-row-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 0;
  text-align: left;
}

.form-row-group label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 2px;
}

.form-row-group input, .form-row-group select {
  min-height: 52px;
  padding: 12px 16px;
  background: #fbfcfb;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  outline: none;
  font-size: 13px;
  transition: var(--transition);
  min-width: 0;
}

.form-row-group input:focus, .form-row-group select:focus {
  border-color: var(--border-focus);
  box-shadow: 0 0 0 3px rgba(77, 142, 120, 0.1);
}

.grid-2-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (max-width: 480px) {
  .grid-2-col {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ==========================================================================
   3. K-12 STAGES DIVISIONS
   ========================================================================== */
.stages-section {
  padding: 100px 24px;
  background: white;
}

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 60px auto;
}

.section-header h2 {
  font-size: 34px;
  margin-bottom: 12px;
  line-height: 1.2;
}

.section-header p {
  font-size: 15px;
  color: var(--text-muted);
}

.stages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.stage-card {
  padding: 40px;
  background: var(--bg-landing);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

.stage-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary);
}

.stage-icon {
  width: 90px;
  height: 90px;
  margin-bottom: 10px;
}

.edu-illustration {
  width: 100%;
  height: 100%;
}

.stage-card h3 {
  font-size: 20px;
}

.grade-pill {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-teal);
  background: rgba(58, 128, 143, 0.1);
  padding: 4px 10px;
  border-radius: 12px;
  align-self: flex-start;
}

.stage-card p {
  font-size: 13px;
  line-height: 1.7;
}

/* Card color differences */
.stage-card.elementary:hover {
  background: linear-gradient(180deg, var(--bg-landing) 0%, rgba(77, 142, 120, 0.05) 100%);
}
.stage-card.middle:hover {
  background: linear-gradient(180deg, var(--bg-landing) 0%, rgba(58, 128, 143, 0.05) 100%);
}
.stage-card.high:hover {
  background: linear-gradient(180deg, var(--bg-landing) 0%, rgba(223, 155, 109, 0.05) 100%);
}

/* ==========================================================================
   4. DYNAMIC SCROLL STATS COUNTER
   ========================================================================== */
.stats-section {
  padding: 60px 24px;
  background: var(--primary-gradient);
  color: white;
}

.stats-flex-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
}

.stat-counter-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.stat-num {
  font-size: 48px;
  font-weight: 800;
  color: white;
  display: inline-block;
  font-family: var(--font-heading);
}

.stat-plus {
  font-size: 32px;
  font-weight: 800;
  color: var(--warning);
  display: inline-block;
  margin-left: 2px;
  vertical-align: super;
}

.stat-label {
  font-size: 13px;
  font-weight: 600;
  color: #c4ded2;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 6px;
}

/* ==========================================================================
   5. SUBJECT SHIFT SLIDER
   ========================================================================== */
.subjects-section {
  padding: 100px 24px;
  background: white;
  overflow: hidden;
}

.subjects-slider-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  padding: 10px 0;
}

.subjects-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.subject-card {
  min-width: 280px;
  width: 280px;
  padding: 30px;
  background: var(--bg-landing);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: var(--transition);
}

.subject-card.active, .subject-card:hover {
  background: white;
  border-color: var(--primary);
  transform: scale(1.02);
  box-shadow: var(--shadow-hover);
}

.subject-card-graphic {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
}

.sub-card-svg {
  width: 70%;
  height: 70%;
}

.subject-card h4 {
  font-size: 18px;
}

.subject-card p {
  font-size: 13px;
  line-height: 1.6;
}

.subject-card-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid var(--border-light);
  padding-top: 12px;
}

.subject-card-footer span {
  font-size: 11px;
  color: var(--text-muted);
}

.reserve-btn {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.reserve-btn:hover {
  color: var(--accent-teal);
  text-decoration: underline;
}

/* Controls */
.slider-controls {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 30px;
}

.slider-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  background: white;
  color: var(--primary);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.slider-arrow:hover {
  background: var(--primary);
  color: white;
}

/* ==========================================================================
   6. THE QUBIKCS ADVANTAGE (WHY CHOOSE US)
   ========================================================================== */
.advantage-section {
  padding: 100px 24px;
  background: var(--bg-landing);
  border-top: 1px solid var(--border-light);
}

.advantage-graphic {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-light);
}

.advantage-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
}

.advantage-text h2 {
  font-size: 34px;
  line-height: 1.2;
}

.val-points-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 10px;
}

.val-point-item {
  display: flex;
  gap: 16px;
}

.val-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(77, 142, 120, 0.1);
  color: var(--primary);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.val-point-item:nth-child(2) .val-icon {
  background: rgba(58, 128, 143, 0.1);
  color: var(--accent-teal);
}
.val-point-item:nth-child(3) .val-icon {
  background: rgba(223, 160, 75, 0.1);
  color: var(--warning);
}

.val-point-item h4 {
  font-size: 15px;
  margin-bottom: 4px;
}

.val-point-item p {
  font-size: 13px;
  line-height: 1.6;
}

@media (max-width: 992px) {
  .advantage-section {
    padding: 60px 24px;
    overflow-x: hidden;
  }

  .advantage-section .section-container.grid-2-col {
    grid-template-columns: 1fr;
    gap: 36px !important;
    align-items: stretch !important;
  }

  .advantage-graphic,
  .advantage-text {
    width: 100%;
    max-width: 100%;
  }

  .advantage-text h2 {
    font-size: 34px;
    line-height: 1.15;
    max-width: 100%;
  }

  .advantage-text > p {
    font-size: 17px;
    line-height: 1.7;
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .advantage-section {
    padding: 46px 20px;
  }

  .advantage-graphic {
    padding: 14px;
  }

  .advantage-text {
    gap: 16px;
  }

  .advantage-text h2 {
    font-size: 30px;
  }

  .val-points-list {
    gap: 18px;
  }

  .val-point-item {
    align-items: flex-start;
    gap: 14px;
  }
}

/* ==========================================================================
   7. LANDING FOOTER
   ========================================================================== */
.landing-footer {
  background: #141b18; /* Dark green slate */
  color: white;
  padding: 80px 24px 20px 24px;
  border-top: 1px solid #232c28;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 0.8fr);
  gap: 40px;
  margin-bottom: 60px;
}

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

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

.landing-footer h4 {
  color: white;
  font-size: 15px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 13px;
  color: #8fa096;
}

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

.footer-bottom {
  border-top: 1px solid #232c28;
  padding-top: 30px;
  text-align: center;
  font-size: 11px;
  color: #5d6d64;
}

/* ==========================================================================
   8. SIMPLE CONTENT PAGES
   ========================================================================== */
.simple-page-hero {
  padding: 80px 24px 40px;
  background: radial-gradient(circle at 80% 20%, rgba(77, 142, 120, 0.08) 0%, transparent 60%);
}

.simple-page-hero .section-container {
  max-width: 900px;
}

.simple-page-hero h1 {
  font-size: 44px;
  line-height: 1.15;
  margin-bottom: 14px;
}

.simple-page-hero p {
  font-size: 16px;
  line-height: 1.8;
}

.content-section {
  padding: 40px 24px 90px;
  background: white;
}

.content-card {
  max-width: 900px;
  margin: 0 auto;
  background: var(--bg-landing);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-light);
}

.content-card h2 {
  font-size: 24px;
  margin: 26px 0 10px;
}

.content-card h2:first-child {
  margin-top: 0;
}

.content-card p,
.content-card li {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
}

.content-card ul {
  padding-left: 20px;
  margin: 10px 0 18px;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin: 24px 0;
}

.contact-detail {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 18px;
}

.contact-detail strong {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--text-inverse);
  margin-bottom: 6px;
}

@media (max-width: 600px) {
  .simple-page-hero h1 {
    font-size: 34px;
  }

  .content-card {
    padding: 24px;
  }
}

@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }

  .header-container {
    max-width: 100%;
    padding: 18px 20px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    box-sizing: border-box;
  }

  .brand-logo {
    flex: 0 1 auto;
    min-width: 0;
    font-size: 2rem;
  }

  .logo-icon {
    width: 50px;
    height: 50px;
    font-size: 22px;
    flex-shrink: 0;
  }

  .header-actions {
    flex-wrap: wrap;
    justify-content: center;
    width: auto;
    gap: 12px;
  }

  .header-actions .btn-primary {
    width: auto;
    min-width: 180px;
    padding: 14px 24px;
    white-space: nowrap;
  }

  .hero-section {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .hero-grid {
    gap: 32px;
  }

  .booking-card {
    padding: 28px 22px;
  }

  .booking-card h3 {
    font-size: 22px;
  }

  .booking-card p {
    margin-bottom: 14px;
  }

  .booking-form {
    gap: 10px;
  }

  .demo-option-block {
    gap: 8px;
  }

  .form-row-group input,
  .form-row-group select {
    min-height: 48px;
  }

  .simple-page-hero {
    padding: 34px 20px 24px;
  }

  .simple-page-hero .section-container,
  .content-card {
    max-width: 100%;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
  }

  .simple-page-hero h1 {
    font-size: 2.2rem;
    line-height: 1.2;
    overflow-wrap: anywhere;
  }

  .simple-page-hero p {
    font-size: 16px;
    line-height: 1.8;
    overflow-wrap: anywhere;
  }

  .content-section {
    padding: 24px 20px 72px;
    box-sizing: border-box;
  }

  .content-card {
    padding-top: 24px;
    padding-bottom: 24px;
    border-radius: var(--radius-md);
  }

  .content-card h2 {
    font-size: 1.8rem;
    line-height: 1.25;
    overflow-wrap: anywhere;
  }

  .content-card p,
  .content-card li {
    font-size: 16px;
    line-height: 1.8;
    overflow-wrap: anywhere;
  }
}

/* ==========================================================================
   9. MODALS & CHECKOUT STYLES
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-backdrop.active {
  display: flex;
}

.modal-container {
  background: white;
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 500px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  overflow: hidden;
  animation: modal-slide 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

@keyframes modal-slide {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.modal-header {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h3 {
  font-size: 18px;
}

.modal-close-btn {
  font-size: 18px;
  cursor: pointer;
  color: var(--text-muted);
}

.modal-close-btn:hover {
  color: var(--danger);
}

.modal-body {
  padding: 24px;
}

.modal-footer {
  padding: 16px 24px;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

/* Success glowing icon */
.success-glowing-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(103, 168, 126, 0.15);
  color: var(--success);
  font-size: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px auto;
  box-shadow: 0 0 20px rgba(103, 168, 126, 0.2);
}
