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

:root {
  /* Brand Colors from Logo Analysis */
  --primary-blue: #1F376B; /* Navy Blue Primary Brand */
  --primary-blue-dark: #142548;
  --brand-orange: #F57C00;
  --brand-orange-hover: #e07000;
  --brand-green: #0A2F7F; /* Blue accent */
  
  /* Neutral Colors */
  --text-dark: #1F2937;
  --text-light: #6B7280;
  --bg-light: #F8FAFC;
  --bg-white: #FFFFFF;
  --border-color: #E5E7EB;

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Shadows & Glassmorphism */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.18);
  --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
}

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

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

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

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

ul {
  list-style: none;
}

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

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 50px; /* Pill shape for modern look */
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Bouncy transition */
  border: none;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

.btn-primary {
  background-color: var(--brand-orange);
  color: var(--bg-white);
  box-shadow: 0 4px 14px rgba(245, 124, 0, 0.3);
}

.btn-primary:hover {
  background-color: var(--brand-orange-hover);
  color: var(--bg-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 124, 0, 0.4);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-secondary:hover:not(:disabled) {
  background-color: var(--primary-blue);
  color: var(--bg-white);
  border-color: var(--primary-blue);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(30, 142, 62, 0.15);
}

.btn-enrolled {
  background-color: var(--primary-blue);
  color: var(--bg-white) !important;
  opacity: 0.9 !important;
  cursor: default;
}

.btn-outline-white {
  background-color: transparent;
  color: var(--bg-white);
  border: 2px solid var(--bg-white);
}

.btn-outline-white:hover {
  background-color: var(--bg-white);
  color: var(--primary-blue);
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.header.scrolled {
  box-shadow: var(--shadow-sm);
}

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

.logo-container {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 50px;
  max-height: 100%;
}

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

.nav-link {
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--text-dark);
  font-size: 1.05rem;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--brand-orange);
  transition: width 0.3s ease;
}

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

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

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary-blue);
  cursor: pointer;
}

/* Hero Section */
.hero {
  padding: 160px 0 100px;
  background: linear-gradient(135deg, #f0f4f8 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,124,0,0.1) 0%, rgba(255,255,255,0) 70%);
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10,47,127,0.05) 0%, rgba(255,255,255,0) 70%);
  z-index: 0;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: var(--primary-blue);
}

.hero-content h1 span {
  color: var(--brand-orange);
}

.hero-content p {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 30px;
}

.hero-btns {
  display: flex;
  gap: 20px;
}

.hero-image-wrapper {
  position: relative;
}

.hero-image {
  border-radius: 20px;
  box-shadow: var(--shadow-xl);
}

/* Sections */
.section {
  padding: 100px 0;
}

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

.section-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 3px;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--brand-orange);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
}

/* Features/How it works */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.step-card {
  background: var(--bg-white);
  padding: 40px 30px;
  border-radius: 24px; /* Modern bento grid radius */
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  border: 1px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(10px);
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(245, 124, 0, 0.3);
}

.step-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background-color: rgba(10, 47, 127, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary-blue);
  transition: all 0.3s ease;
}

.step-card:hover .step-icon {
  background-color: var(--primary-blue);
  color: var(--bg-white);
}

.step-card h3 {
  font-size: 1.25rem;
  margin-bottom: 15px;
}

.step-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* Stats/Counter */
.stats-section {
  background-color: var(--primary-blue);
  color: var(--bg-white);
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item h3 {
  font-size: 3rem;
  color: var(--brand-orange);
  margin-bottom: 10px;
}

.stat-item p {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1.1rem;
}

/* Course Bundles */
.bundles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.bundle-card {
  background: var(--bg-white);
  border-radius: 24px;
  overflow: visible; /* Allow badge to float outside top edge */
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
  border: 1px solid var(--border-color);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1);
  position: relative;
}

.bundle-card.active-plan-border {
  border: 3px solid var(--brand-orange) !important;
  box-shadow: 0 0 25px rgba(245, 124, 0, 0.2);
}

.active-label {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand-orange);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: bold;
  white-space: nowrap;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(245, 124, 0, 0.4);
}

.bundle-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.bundle-header {
  padding: 30px 20px;
  text-align: center;
  border-radius: 24px 24px 0 0; /* Preserve rounded corners since overflow is visible */
  border-bottom: 1px solid var(--border-color);
}

.bundle-card.gold .bundle-header {
  background: linear-gradient(135deg, #FFF8E1 0%, #FFECB3 100%);
}

.bundle-card.sapphire .bundle-header {
  background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
}

.bundle-card.platinum .bundle-header {
  background: linear-gradient(135deg, #F3E5F5 0%, #E1BEE7 100%);
  border-top: 5px solid #9C27B0;
}

.bundle-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--brand-orange);
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.bundle-title {
  font-size: 1.8rem;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.bundle-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-blue);
  font-family: var(--font-heading);
}

.bundle-price span {
  font-size: 1.2rem;
  color: var(--text-light);
  font-weight: 500;
}

.bundle-body {
  padding: 30px 20px;
}

.bundle-features {
  margin-bottom: 30px;
}

.bundle-features li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.bundle-features li i {
  color: var(--brand-green);
  margin-right: 10px;
  font-size: 1.2rem;
}

.bundle-commission {
  background-color: rgba(31, 55, 107, 0.1);
  padding: 15px;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 20px;
  border: 1px dashed var(--brand-green);
}

.bundle-commission span {
  display: block;
  font-size: 0.9rem;
  color: var(--text-light);
}

.bundle-commission strong {
  display: block;
  font-size: 1.2rem;
  color: var(--brand-green);
  font-family: var(--font-heading);
}

.bundle-footer {
  padding: 0 20px 30px;
}

.bundle-card .btn {
  width: 100%;
}

/* Call to Action */
.cta-section {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
  padding: 80px 0;
  text-align: center;
  color: var(--bg-white);
}

.cta-section h2 {
  color: var(--bg-white);
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
.footer {
  background-color: #05132B; /* Even darker blue */
  color: #9CA3AF;
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand .logo-img {
  background-color: var(--bg-white); /* Added white background for visibility */
  padding: 8px 12px;
  border-radius: 8px;
  margin-bottom: 20px;
  height: 60px; /* Make footer logo bigger too */
}

.footer-brand p {
  margin-bottom: 20px;
  max-width: 300px;
}

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

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

.social-links a:hover {
  background-color: var(--brand-orange);
  transform: translateY(-3px);
}

.footer-title {
  color: var(--bg-white);
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.footer-links li {
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  line-height: 1.5;
  color: #9CA3AF;
}

.footer-links a {
  color: #9CA3AF;
  transition: all 0.3s ease;
}

.footer-links li i {
  flex-shrink: 0;
  margin-top: 5px;
  width: 20px;
  text-align: center;
}

.footer-links a:hover {
  color: var(--brand-orange);
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Affiliate & About Pages Layout */
.page-header {
  background: linear-gradient(135deg, rgba(10,47,127,0.05) 0%, rgba(245,124,0,0.05) 100%);
  padding: 180px 0 80px;
  text-align: center;
}

.page-title {
  font-size: 3rem;
  color: var(--primary-blue);
  margin-bottom: 20px;
}

.page-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

.content-row {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 80px;
}

.content-row.reverse {
  flex-direction: row-reverse;
}

.content-text {
  flex: 1;
}

.content-image {
  flex: 1;
}

.content-image img {
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
}

.content-text h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.content-text p {
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1.05rem;
}

.check-list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--brand-green);
}

/* Contact Form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
}

.contact-info-card {
  background-color: var(--primary-blue);
  color: var(--bg-white);
  padding: 40px;
  border-radius: 16px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.contact-info-item i {
  font-size: 1.5rem;
  color: var(--brand-orange);
  margin-right: 20px;
  margin-top: 5px;
}

.contact-form {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.05);
  border: 1px solid rgba(255,255,255,0.5);
}

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

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.form-control {
  width: 100%;
  padding: 15px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all 0.3s ease;
  background-color: var(--bg-light);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(10, 47, 127, 0.1);
  background-color: var(--bg-white);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-container {
    gap: 40px;
  }
  .hero-content h1 {
    font-size: 3rem;
  }
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .bundles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--bg-white);
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 40px;
    transition: left 0.3s ease;
    box-shadow: var(--shadow-lg);
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-btns {
    justify-content: center;
  }
  
  .hero-image {
    max-width: 80%;
    margin: 0 auto;
  }
  
  .bundles-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .content-row, .content-row.reverse {
    flex-direction: column;
    gap: 40px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* Profile Header in Navigation */
.user-profile-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(31, 55, 107, 0.08);
  border-radius: 50px;
  border: 1.5px solid var(--primary-blue);
  cursor: pointer;
  transition: all 0.3s ease;
}

.user-profile-header:hover {
  background: rgba(31, 55, 107, 0.15);
  transform: translateY(-2px);
}

.user-profile-header .user-name {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--primary-blue);
  font-size: 0.95rem;
}

.user-profile-header .profile-icon {
  font-size: 1.4rem;
  color: var(--primary-blue);
  display: flex;
}

/* Profile Page Specifics */
.profile-card {
  background: var(--bg-white);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-color);
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}

.profile-info-list {
  margin-top: 30px;
  text-align: left;
}

.profile-info-list .info-item {
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border-color);
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .section-title {
    font-size: 2rem;
  }
}

/* Authentication Pages (Login & Register) */
.auth-body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f0f4f8 0%, #ffffff 100%);
  position: relative;
  padding: 40px 20px;
}

.auth-body::before {
  content: '';
  position: fixed;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(31, 55, 107, 0.05) 0%, rgba(255,255,255,0) 70%);
  top: -200px;
  left: -100px;
  z-index: 0;
}

.auth-body::after {
  content: '';
  position: fixed;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245, 124, 0, 0.05) 0%, rgba(255,255,255,0) 70%);
  bottom: -200px;
  right: -100px;
  z-index: 0;
}

.auth-container {
  width: 100%;
  max-width: 450px;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 50px 40px;
  border-radius: 30px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--glass-border);
  position: relative;
  z-index: 1;
  text-align: center;
}

.back-link {
  position: absolute;
  top: 20px;
  left: 20px;
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.3s ease;
}

.back-link:hover {
  color: var(--brand-orange);
}

.auth-logo {
  height: 60px;
  margin-bottom: 30px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.auth-title {
  font-size: 2rem;
  color: var(--primary-blue);
  margin-bottom: 10px;
}

/* Small brand label inside auth cards */
.brand-name {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary-blue-dark);
  font-size: 1rem;
  letter-spacing: 0.6px;
  margin-bottom: 6px;
}

.auth-subtitle {
  color: var(--text-light);
  margin-bottom: 35px;
  font-size: 1rem;
}

.auth-form {
  text-align: left;
}

.auth-form .btn {
  width: 100%;
  margin-top: 10px;
}

.social-auth {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.social-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px;
  border-radius: 50px;
  border: 1px solid var(--border-color);
  background: white;
  color: var(--text-dark);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.social-btn:hover {
  background: var(--bg-light);
  transform: translateY(-2px);
}

.divider {
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--text-light);
  margin: 25px 0;
  font-size: 0.85rem;
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
}

.divider::before, .divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid var(--border-color);
}

.divider:not(:empty)::before { margin-right: .5em; }
.divider:not(:empty)::after { margin-left: .5em; }

.auth-footer {
  margin-top: 30px;
  color: var(--text-light);
  font-size: 0.95rem;
}

.auth-footer a {
  color: var(--brand-orange);
  font-weight: 600;
}

.otp-timer {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 5px;
}
/* Smooth reveal for OTP input to avoid layout jumps */
.otp-group {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.28s ease, margin-top 0.28s ease;
  margin-top: 0;
}
.otp-group.otp-visible {
  max-height: 160px; /* Enough for input + timer */
  opacity: 1;
  margin-top: 20px;
}

/* Utility to hide/show verification buttons cleanly */
.btn-hidden { display: none !important; }
/* Register Page specific */
.register-container {
  max-width: 600px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

/* FAQ Section */
.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-white);
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: all 0.3s ease;
}

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

.faq-question {
  padding: 24px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--text-dark);
}

.faq-question i {
  color: var(--brand-orange);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background-color: rgba(31, 55, 107, 0.02);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 30px 30px;
}

.faq-answer p {
  color: var(--text-light);
  line-height: 1.8;
}
