/* ANVOQ Website - CSS Stylesheet */
/* Color Palette from Logo: Teal (#4B9BA8), Red (#E74C3C), Navy (#1F3A5C), Gold (#F4C430) */

:root {
  --primary-teal: #4B9BA8;
  --primary-red: #E74C3C;
  --primary-navy: #1F3A5C;
  --primary-gold: #F4C430;
  --secondary-light: #F5F7FA;
  --secondary-dark: #2C3E50;
  --text-dark: #2C3E50;
  --text-light: #7F8C8D;
  --border-color: #ECF0F1;
  --white: #FFFFFF;
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.15);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem;
  color: var(--primary-navy);
}

h2 {
  font-size: 2.5rem;
  color: var(--primary-navy);
}

h3 {
  font-size: 1.8rem;
  color: var(--primary-navy);
}

h4 {
  font-size: 1.4rem;
  color: var(--primary-navy);
}

p {
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

a {
  color: var(--primary-teal);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-red);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header & Navigation */
header {
  background-color: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-navy);
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-red) 50%, var(--primary-navy) 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.2rem;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

nav a {
  color: var(--text-dark);
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-gold);
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

/* .cta-button {
  background-color: var(--primary-gold);
  color: var(--text-dark);
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
}

.cta-button:hover {
  background-color: var(--primary-red);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
} */
.cta-button {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: linear-gradient(135deg, #1a9fa8 0%, #0d7a82 100%);
    border-radius: 8px;
    padding: 6px 14px;
    line-height: 1.3;
    box-shadow: 0 2px 8px rgba(13,122,130,0.25);
    transition: transform .15s, box-shadow .15s;
    white-space: nowrap;
}
.cta-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(13,122,130,0.35);
}
.cta-button {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
}
.powered-text {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .12em;
    color: rgba(255,255,255,0.75);
    text-transform: uppercase;
    font-family: 'DM Sans', sans-serif;
}
.company-text {
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    font-family: 'DM Sans', sans-serif;
    letter-spacing: .01em;
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--primary-navy);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-teal) 100%);
  color: var(--white);
  padding: 6rem 0;
  text-align: center;
}

.hero h1 {
  color: var(--white);
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 0.875rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--primary-gold);
  color: var(--text-dark);
}

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

.btn-secondary {
  background-color: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-secondary:hover {
  background-color: var(--white);
  color: var(--primary-navy);
}

/* Section Spacing */
section {
  padding: 4rem 0;
}

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

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

section.dark-bg h2,
section.dark-bg h3 {
  color: var(--white);
}

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

/* Metrics Section */
.metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.metric-item {
  padding: 2rem;
}

.metric-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-gold);
  margin-bottom: 0.5rem;
}

.metric-label {
  color: var(--text-light);
  font-weight: 500;
}

/* Cards Grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 2rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-teal);
}

.card-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-teal), var(--primary-gold));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.card h3 {
  margin-bottom: 1rem;
}

.card p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.card-link {
  color: var(--primary-teal);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s ease;
}

.card-link:hover {
  gap: 1rem;
  color: var(--primary-red);
}

/* Steps Section */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.step {
  text-align: center;
}

.step-number {
  width: 60px;
  height: 60px;
  background-color: var(--primary-navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

/* Testimonials */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.testimonial {
  background: var(--white);
  border-left: 4px solid var(--primary-gold);
  padding: 2rem;
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.testimonial-stars {
  color: var(--primary-gold);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.testimonial-quote {
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary-navy);
  margin-bottom: 0.25rem;
}

.testimonial-role {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Pricing Cards */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
  align-items: stretch;
}

.pricing-card {
  background: var(--white);
  border: 2px solid var(--border-color);
  border-radius: 8px;
  padding: 2rem 1.25rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card.featured {
  border-color: var(--primary-gold);
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary-gold);
  color: var(--text-dark);
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 4px;
}

.pricing-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 0.5rem;
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-gold);
  margin-bottom: 0.5rem;
}

.pricing-period {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.pricing-features {
  list-style: none;
  margin: 2rem 0;
  text-align: left;
}

.pricing-features li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pricing-features li::before {
  content: '✓';
  color: var(--primary-teal);
  font-weight: 700;
  font-size: 1.2rem;
}

/* Forms */
.form-group {
  margin-bottom: 1.5rem;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--primary-navy);
}

input,
textarea,
select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--primary-teal);
  box-shadow: 0 0 0 3px rgba(75, 155, 168, 0.1);
}

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

/* Footer */
footer {
  background-color: var(--primary-navy);
  color: var(--white);
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: var(--primary-gold);
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1.5rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: var(--primary-gold);
  color: var(--text-dark);
}

/* Responsive Design */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  h3 {
    font-size: 1.4rem;
  }

  nav ul {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  nav.active ul {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background-color: var(--white);
    padding: 1rem;
    gap: 1rem;
    box-shadow: var(--shadow-lg);
  }

  .hero {
    padding: 3rem 0;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  section {
    padding: 2rem 0;
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.hidden {
  display: none;
}

.visible {
  display: block;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}



/* Hero Section with Video Background */
.hero {
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive Hero */
@media (max-width: 768px) {
  .hero {
    min-height: 400px;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 300px;
  }
  
  .hero h1 {
    font-size: 1.5rem;
  }
  
  .hero p {
    font-size: 0.9rem;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .hero-buttons a {
    width: 100%;
  }
}

/* =====================================================
   URGENCY BANNER
   ===================================================== */
.urgency-banner {
  background: linear-gradient(90deg, #E74C3C 0%, #c0392b 100%);
  color: white;
  text-align: center;
  padding: 0.6rem 1rem;
  font-size: 0.92rem;
  font-weight: 600;
  position: relative;
  z-index: 1100;
  letter-spacing: 0.01em;
}
.urgency-banner a {
  color: #F4C430;
  text-decoration: underline;
  margin-left: 0.5rem;
}
.urgency-banner .banner-close {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  cursor: pointer;
  line-height: 1;
}

/* =====================================================
   LIVE SESSION ANNOUNCEMENT BAR
   ===================================================== */
.live-session-bar {
  background: linear-gradient(90deg, #1F3A5C 0%, #2c5282 100%);
  color: white;
  text-align: center;
  padding: 0.55rem 1rem;
  font-size: 0.88rem;
}
.live-session-bar .live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  margin-right: 6px;
  animation: pulse-dot 1.4s ease-in-out infinite;
  vertical-align: middle;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.live-session-bar a {
  color: #F4C430;
  font-weight: 700;
  margin-left: 0.4rem;
}

/* =====================================================
   CV REVIEW MODAL (3-STEP)
   ===================================================== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 9000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal-overlay.active {
  display: flex;
}
.modal-box {
  background: white;
  border-radius: 12px;
  max-width: 580px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  position: relative;
  animation: modalIn 0.3s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(30px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-header {
  background: linear-gradient(135deg, #1F3A5C 0%, #4B9BA8 100%);
  color: white;
  padding: 1.5rem 2rem;
  border-radius: 12px 12px 0 0;
  position: relative;
}
.modal-header h3 { color: white; margin: 0; font-size: 1.3rem; }
.modal-header p  { color: rgba(255,255,255,0.85); margin: 0.3rem 0 0; font-size: 0.9rem; }
.modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: rgba(255,255,255,0.2);
  border: none;
  color: white;
  width: 30px; height: 30px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.modal-body { padding: 2rem; }
.step-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 1.8rem;
}
.step-dot {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: #ECF0F1;
  color: #999;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  transition: all 0.3s;
}
.step-dot.active { background: #4B9BA8; color: white; }
.step-dot.done   { background: #27ae60; color: white; }
.step-line {
  width: 60px; height: 2px;
  background: #ECF0F1;
  transition: background 0.3s;
}
.step-line.done { background: #27ae60; }

/* Form inside modal */
.modal-form-group { margin-bottom: 1.2rem; }
.modal-form-group label {
  display: block;
  font-weight: 600;
  color: #1F3A5C;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
}
.modal-form-group input,
.modal-form-group select {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border: 1.5px solid #ECF0F1;
  border-radius: 6px;
  font-size: 0.95rem;
  transition: border-color 0.2s;
}
.modal-form-group input:focus,
.modal-form-group select:focus {
  outline: none;
  border-color: #4B9BA8;
  box-shadow: 0 0 0 3px rgba(75,155,168,0.12);
}
.modal-form-group .file-upload-area {
  border: 2px dashed #4B9BA8;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  cursor: pointer;
  background: #f8fcfd;
  transition: background 0.2s;
}
.modal-form-group .file-upload-area:hover { background: #eaf6f8; }
.modal-form-group .file-upload-area input[type="file"] { display: none; }
.modal-form-group .file-upload-area .upload-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.modal-form-group .file-upload-area p { color: #4B9BA8; font-weight: 600; margin: 0; font-size: 0.9rem; }
.modal-form-group .file-upload-area span { color: #999; font-size: 0.8rem; }

.modal-btn-primary {
  width: 100%;
  padding: 0.85rem;
  background: linear-gradient(135deg, #F4C430, #e6b020);
  color: #1F3A5C;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 0.5rem;
}
.modal-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(244,196,48,0.4);
}

/* Calendar slots */
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin: 1rem 0;
}
.time-slot {
  padding: 0.55rem;
  border: 1.5px solid #ECF0F1;
  border-radius: 6px;
  text-align: center;
  cursor: pointer;
  font-size: 0.85rem;
  color: #1F3A5C;
  font-weight: 600;
  transition: all 0.2s;
}
.time-slot:hover { border-color: #4B9BA8; background: #eaf6f8; }
.time-slot.selected { background: #4B9BA8; color: white; border-color: #4B9BA8; }
.time-slot.booked { background: #f5f5f5; color: #bbb; cursor: not-allowed; }

.date-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}
.date-nav button {
  background: none;
  border: 1.5px solid #ECF0F1;
  border-radius: 6px;
  padding: 0.3rem 0.7rem;
  cursor: pointer;
  color: #1F3A5C;
  font-size: 1rem;
}
.date-nav button:hover { border-color: #4B9BA8; }

/* Confirmation step */
.confirmation-icon {
  width: 70px; height: 70px;
  background: linear-gradient(135deg, #27ae60, #2ecc71);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.2rem;
  animation: popIn 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes popIn {
  from { transform: scale(0); }
  to   { transform: scale(1); }
}
.confirmation-details {
  background: #f8fcfd;
  border: 1.5px solid #4B9BA8;
  border-radius: 8px;
  padding: 1.2rem;
  margin: 1rem 0;
  font-size: 0.9rem;
}
.confirmation-details div { margin-bottom: 0.4rem; color: #1F3A5C; }
.confirmation-details strong { color: #4B9BA8; }

/* =====================================================
   JOB READINESS QUIZ
   ===================================================== */
.quiz-section {
  background: linear-gradient(135deg, #1F3A5C 0%, #2c5282 100%);
  color: white;
  padding: 4rem 0;
}
.quiz-container {
  max-width: 700px;
  margin: 0 auto;
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}
.quiz-progress-bar {
  height: 6px;
  background: #ECF0F1;
  border-radius: 3px;
  margin-bottom: 1.5rem;
  overflow: hidden;
}
.quiz-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #4B9BA8, #F4C430);
  border-radius: 3px;
  transition: width 0.4s ease;
}
.quiz-question-num {
  font-size: 0.85rem;
  color: #7F8C8D;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.quiz-question-text {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1F3A5C;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}
.quiz-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.quiz-option {
  padding: 1rem 1.2rem;
  border: 2px solid #ECF0F1;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  color: #1F3A5C;
  background: white;
}
.quiz-option:hover { border-color: #4B9BA8; background: #f0f9fb; }
.quiz-option.yes { font-size: 1rem; }
.quiz-option.no  { font-size: 1rem; }
.quiz-option-icon { font-size: 1.3rem; }

/* Quiz result */
.quiz-result { text-align: center; }
.quiz-score-circle {
  width: 120px; height: 120px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-weight: 700;
  border: 6px solid;
}
.quiz-score-circle.low    { border-color: #E74C3C; color: #E74C3C; }
.quiz-score-circle.medium { border-color: #F4C430; color: #e6a817; }
.quiz-score-circle.high   { border-color: #27ae60; color: #27ae60; }
.quiz-score-num  { font-size: 2.2rem; line-height: 1; }
.quiz-score-label{ font-size: 0.75rem; color: #999; }
.quiz-result-msg { font-size: 1.05rem; color: #1F3A5C; font-weight: 600; margin-bottom: 0.5rem; }
.quiz-result-sub { font-size: 0.9rem; color: #7F8C8D; margin-bottom: 1.5rem; }
.quiz-restart {
  background: none;
  border: 1.5px solid #4B9BA8;
  color: #4B9BA8;
  padding: 0.5rem 1.2rem;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

/* =====================================================
   FREE RESOURCE HUB
   ===================================================== */
.resource-card {
  background: white;
  border: 1.5px solid #ECF0F1;
  border-radius: 12px;
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.resource-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  border-color: #4B9BA8;
}
.resource-icon {
  font-size: 2.5rem;
  margin-bottom: 0.8rem;
}
.resource-card h4 {
  font-size: 1.05rem;
  color: #1F3A5C;
  margin-bottom: 0.5rem;
}
.resource-card p {
  font-size: 0.88rem;
  color: #7F8C8D;
  flex: 1;
  margin-bottom: 1rem;
}
.resource-tag {
  display: inline-block;
  background: #eaf6f8;
  color: #4B9BA8;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 1rem;
}
.btn-download {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem;
  background: linear-gradient(135deg, #1F3A5C, #2c5282);
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.btn-download:hover {
  background: linear-gradient(135deg, #4B9BA8, #1F3A5C);
  color: white;
  transform: translateY(-1px);
}

/* Download modal */
.download-modal .modal-body { padding: 2rem; }
.download-modal .modal-form-group { margin-bottom: 1rem; }

/* =====================================================
   STUDENT OF THE MONTH
   ===================================================== */
.sotm-card {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: start;
  position: relative;
  overflow: hidden;
}
.sotm-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 6px; height: 100%;
  background: linear-gradient(180deg, #F4C430, #E74C3C);
}
.sotm-avatar {
  width: 100px; height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4B9BA8, #1F3A5C);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: white;
  font-weight: 700;
  flex-shrink: 0;
}
.sotm-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, #F4C430, #e6a817);
  color: #1F3A5C;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.sotm-name { font-size: 1.4rem; color: #1F3A5C; margin-bottom: 0.2rem; }
.sotm-role { color: #4B9BA8; font-size: 0.9rem; font-weight: 600; margin-bottom: 0.8rem; }
.sotm-quote {
  font-style: italic;
  color: #2C3E50;
  line-height: 1.7;
  font-size: 0.97rem;
  margin-bottom: 1rem;
}
.sotm-stats {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.sotm-stat { text-align: center; }
.sotm-stat-val { font-size: 1.3rem; font-weight: 700; color: #E74C3C; }
.sotm-stat-lbl { font-size: 0.75rem; color: #7F8C8D; font-weight: 600; }

/* =====================================================
   RESPONSIVE for new sections
   ===================================================== */
@media (max-width: 1100px) {
  .pricing-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .nav-links { grid-template-columns: 1fr; }
  .sotm-card { grid-template-columns: 1fr; text-align: center; }
  .sotm-avatar { margin: 0 auto; }
  .sotm-stats { justify-content: center; }
  .calendar-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Modal step visibility */
.modal-step { display: none; }
.modal-step.active { display: block; }

/* ── WhatsApp Floating Button ── */
.wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 997;
  background: #25D366;
  color: white;
  border-radius: 50px;
  padding: 0.75rem 1.1rem 0.75rem 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 16px rgba(37,211,102,0.45);
  text-decoration: none;
  transition: all 0.25s ease;
  font-weight: 700;
  font-size: 0.88rem;
}
.wa-float:hover {
  background: #1da851;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.5);
  border-radius: 50px;
}
.wa-float-label { white-space: nowrap; }
@media (max-width: 480px) {
  .wa-float { border-radius: 50%; padding: 0.85rem; }
  .wa-float-label { display: none; }
}

/* ═══════════════════════════════════════════════════
   VALIDATION & FORM FEEDBACK
═══════════════════════════════════════════════════ */
.input-error {
  border-color: #E74C3C !important;
  box-shadow: 0 0 0 3px rgba(231,76,60,.12) !important;
}
.field-error-msg {
  display: block;
  color: #E74C3C;
  font-size: .82rem;
  margin-top: .3rem;
  font-weight: 500;
}
.form-error-banner {
  background: #fdf2f2;
  border: 1.5px solid #E74C3C;
  color: #c0392b;
  border-radius: 6px;
  padding: .85rem 1rem;
  font-size: .9rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
}

/* ═══════════════════════════════════════════════════
   TOAST NOTIFICATIONS
═══════════════════════════════════════════════════ */
.anvoq-toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  padding: .9rem 1.8rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: .95rem;
  z-index: 99999;
  opacity: 0;
  transition: all .35s ease;
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
  max-width: 90vw;
  text-align: center;
  pointer-events: none;
}
.anvoq-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.anvoq-toast-success { background: #27ae60; color: white; }
.anvoq-toast-error   { background: #E74C3C; color: white; }

/* ═══════════════════════════════════════════════════
   MODAL STEP VISIBILITY (JS-controlled)
═══════════════════════════════════════════════════ */
.modal-step { display: none; }
.modal-step.active { display: block; }

/* ═══════════════════════════════════════════════════
   QUIZ TIP BOX
═══════════════════════════════════════════════════ */
.quiz-tip {
  display: none;
  margin-top: 1rem;
  padding: .8rem 1rem;
  background: #f0f9fb;
  border-left: 3px solid #4B9BA8;
  border-radius: 4px;
  font-size: .85rem;
  color: #1F3A5C;
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════════
   CONTACT PAGE — RESPONSIVE FIX
═══════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Contact form 2-col grid → 1-col */
  #contact .container > div[style*="grid-template-columns: 2fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  /* Services 2-col grids → 1-col */
  section > .container > div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  section.light-bg > .container > div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  /* Remove ordering on mobile */
  [style*="order: 2"], [style*="order: 1"] {
    order: unset !important;
  }
  /* Calendar dates — 3 cols on mobile */
  #calendar-dates {
    grid-template-columns: repeat(3, 1fr) !important;
  }
  /* Modal box full-width on mobile */
  .modal-box { border-radius: 0; max-height: 100vh; }
  .modal-overlay { align-items: flex-end; padding: 0; }
  .modal-box { border-radius: 16px 16px 0 0; }
}

/* ═══════════════════════════════════════════════════
   COPYRIGHT YEAR FIX (2025)
═══════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════
   SEO — Skip-to-content link (accessibility)
═══════════════════════════════════════════════════ */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: #1F3A5C;
  color: white;
  padding: .5rem 1rem;
  border-radius: 0 0 4px 4px;
  font-weight: 700;
  font-size: .9rem;
  z-index: 9999;
  transition: top .2s;
}
.skip-link:focus { top: 0; color: white; }

/* ═══════════════════════════════════════════════════
   LOADING STATE FOR BUTTONS
═══════════════════════════════════════════════════ */
button:disabled, a.btn:disabled {
  opacity: .65;
  cursor: not-allowed;
  transform: none !important;
}

/* ── Required file upload area highlight ── */
.file-upload-area.has-error {
  border-color: #E74C3C !important;
  background: #fff8f8;
}
.file-upload-area.has-file {
  border-color: #27ae60 !important;
  background: #f0fdf4;
}

/* ── Required asterisk colour ── */
label span[style*="color:#E74C3C"] {
  font-size: .9em;
}

/* ── Download modal name field optional style ── */
#dl-name::placeholder { color: #bbb; }

#ss-slides-wrap div div img {
    object-fit: inherit !important;
}

div#sotm-photos div img {
    object-fit: inherit !important;
}