:root {
  /* Client's Preferred Colors - Green, Gold, White Theme */
  --primary-green: #0b6e4f;
  --primary-dark: #064d39;
  --accent-gold: #d4af37;
  --accent-gold-dark: #b8941f;
  --dark-navy: #2d3748;

  /* Light Theme Colors */
  --light-bg: #f7f5f3;
  --card-bg: #ffffff;
  --section-bg: #fafafa;
  --border-color: #e2e8f0;

  /* Text Colors */
  --text-primary: #2d3748;
  --text-secondary: #4a5568;
  --text-muted: #718096;
  --text-light: #a0aec0;

  /* Status Colors */
  --success: #48bb78;
  --warning: #ed8936;
  --error: #dc2626;

  /* Shadows */
  --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --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);
}

/* Global Styles */
* {
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--light-bg);
  color: var(--text-primary);
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

body main {
  min-height: 80vh;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 1.5rem 0;
  color: var(--text-primary);
}

h1 {
  font-size: 4.5rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}
h2 {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}
h3 {
  font-size: 2.5rem;
  font-weight: 700;
}
h4 {
  font-size: 2rem;
  font-weight: 600;
}
h5 {
  font-size: 1.5rem;
  font-weight: 600;
}
h6 {
  font-size: 1.25rem;
  font-weight: 600;
}

/* Navigation */
.nav-elevated {
  background: var(--card-bg) !important;
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--border-color);
  padding: 0;
  height: 80px;
  line-height: 80px;
}

.nav-wrapper {
  padding: 0 40px;
  position: relative;
}

.brand-logo {
  font-weight: 900 !important;
  font-size: 1.8rem !important;
  color: var(--primary-green) !important;
  letter-spacing: -0.5px;
  line-height: 80px;
}

.nav-link {
  color: var(--text-secondary) !important;
  font-weight: 500;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  padding: 0 20px !important;
  line-height: 80px;
}

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

/* Mobile Navigation */
.sidenav-trigger {
  color: var(--accent-gold) !important;
  display: none;
  margin: 0;
  padding: 0;
  line-height: 80px;
  height: 80px;
}

.sidenav-trigger i {
  line-height: 80px;
  height: 80px;
  font-size: 40px;
  transition: all 0.3s ease;
  display: block;
}

.sidenav-trigger:hover {
  background-color: rgba(212, 175, 55, 0.1);
}

.sidenav-trigger:hover i {
  transform: scale(1.15);
}

.sidenav {
  background-color: white;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  width: 280px;
}

.sidenav li > a {
  color: var(--text-primary);
  font-weight: 500;
  padding: 0 24px;
  line-height: 48px;
  height: 48px;
  transition: all 0.3s ease;
  border-radius: 8px;
  margin: 4px 12px;
}

.sidenav li > a:hover {
  background-color: rgba(11, 110, 79, 0.08);
  border-radius: 8px;
  padding-left: 28px;
}

.sidenav .badge {
  background-color: var(--primary-red);
  color: white;
  float: right;
  margin-left: 10px;
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 0.7rem;
  font-weight: 600;
}

/* Show hamburger menu on tablets and mobile */
@media only screen and (max-width: 992px) {
  .sidenav-trigger {
    display: block !important;
    line-height: 80px;
    position: absolute;
    right: 0;
    top: 0;
  }

  .nav-wrapper {
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .brand-logo {
    position: static !important;
    left: auto !important;
    transform: none !important;
    padding-left: 16px;
  }
}

/* Buttons */
.btn, .btn-large {
  border-radius: 0;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: none;
  padding: 18px 32px;
  font-size: 0.95rem;
  height: auto;
  line-height: 1.2;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-large {
  padding: 22px 40px;
  font-size: 1rem;
  min-height: 60px;
}

.btn-primary {
  background: var(--primary-green);
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  border: 2px solid var(--accent-gold);
  color: var(--accent-gold-dark);
  background: transparent;
}

.btn-outline:hover {
  background: var(--accent-gold);
  color: white;
  transform: translateY(-1px);
}

.btn-ghost {
  background: var(--card-bg);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.btn-ghost:hover {
  background: var(--section-bg);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* Cards */
.card, .card-panel {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 0;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  color: var(--text-primary);
  margin-bottom: 2rem;
}

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

.card .card-title {
  font-weight: 700;
  color: var(--text-primary);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Hero Section */
.hero {
  padding: 150px 0 120px 0;
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  /* Force full-bleed width across viewport even if nested */
  width: 100%;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

/* Hero Slider */
.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: #1a1a1a;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  z-index: 0;
}

.hero-slide.active {
  opacity: 1;
  z-index: 0;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(11, 110, 79, 0.75) 0%, rgba(11, 110, 79, 0.65) 50%, rgba(6, 77, 57, 0.55) 100%);
  z-index: 1;
}

/* Slider Navigation Dots */
.hero-slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.slider-dot:hover {
  background: rgba(255, 255, 255, 0.6);
  transform: scale(1.2);
}

.slider-dot.active {
  background: var(--accent-gold);
  border-color: white;
  transform: scale(1.3);
}

.hero .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
  position: relative;
  z-index: 2;
}

.hero-content {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 600px;
}

.hero-text {
  max-width: 700px;
}

.hero h1 {
  font-size: 4.5rem;
  font-weight: 900;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 2.5rem;
  line-height: 1.7;
  max-width: 550px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-buttons {
  margin-bottom: 3rem;
}

.hero-buttons .btn {
  margin-right: 20px;
  margin-bottom: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-buttons .btn-primary {
  background: var(--accent-gold);
  color: var(--dark-navy);
}

.hero-buttons .btn-primary:hover {
  background: var(--accent-gold-dark);
  color: white;
}

.hero-buttons .btn-outline {
  border: 2px solid white;
  color: white;
  background: transparent;
}

.hero-buttons .btn-outline:hover {
  background: white;
  color: var(--primary-green);
}


/* Hero Stats */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 2rem;
  max-width: 550px;
}

.hero-stat {
  text-align: center;
  padding: 25px 15px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.hero-stat:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.hero-stat i {
  color: var(--accent-gold);
  font-size: 2rem;
  margin-bottom: 10px;
  display: block;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.hero-stat-number {
  font-size: 1.8rem;
  font-weight: 900;
  color: white;
  margin-bottom: 5px;
  display: block;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

/* Statistics */
.stat {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 1.1rem;
  padding: 25px;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  text-align: center;
  flex-direction: column;
}

.stat:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.stat i {
  color: var(--primary-coral);
  font-size: 2rem;
  margin-bottom: 10px;
}

.stat-number {
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary-navy);
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Pricing Cards */
.pricing .card {
  border: 2px solid rgba(229, 62, 62, 0.2);
  position: relative;
}

.pricing .featured {
  border-color: var(--primary-red);
  box-shadow: 0 15px 40px rgba(229, 62, 62, 0.3);
  transform: scale(1.05);
}

.pricing .featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-gradient);
  color: white;
  padding: 8px 24px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
}

/* Notifications */
.notif-bell {
  position: relative;
  display: inline-block;
  color: var(--text-primary);
  padding: 8px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.notif-bell:hover {
  background: rgba(229, 62, 62, 0.1);
  color: var(--primary-red);
}

.notif-bell .notif-dot {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 12px;
  height: 12px;
  background: var(--primary-red);
  border-radius: 50%;
  border: 2px solid var(--dark-bg);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(229, 62, 62, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(229, 62, 62, 0); }
  100% { box-shadow: 0 0 0 0 rgba(229, 62, 62, 0); }
}

/* Forms */
.input-field input:focus + label,
.input-field input:valid + label {
  color: var(--primary-red) !important;
}

.input-field input:focus {
  border-bottom: 1px solid var(--primary-red) !important;
  box-shadow: 0 1px 0 0 var(--primary-red) !important;
}

/* Collections */
.collection .collection-item {
  background: rgba(26, 26, 26, 0.5);
  border-bottom: 1px solid rgba(229, 62, 62, 0.1);
  color: var(--text-primary);
  padding: 15px 20px;
}

.collection .collection-item:last-child {
  border-bottom: none;
}

/* Footer */
.page-footer {
  background: var(--darker-bg) !important;
  border-top: 1px solid rgba(229, 62, 62, 0.1);
}

.footer-link {
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.footer-link:hover {
  color: var(--primary-red);
  text-decoration: none;
}

.footer-light {
  color: var(--text-muted);
}

.footer-copy {
  background: rgba(5, 5, 5, 0.8);
  padding: 20px 0;
  border-top: 1px solid rgba(229, 62, 62, 0.1);
}

/* Status Indicators */
/* Keep generic .star rule for backward compatibility */
.star {
  color: var(--accent-gold);
}

/* Testimonials */
.testimonial-actions {
  margin-top: 20px;
}

.testimonial-actions .btn {
  min-width: 180px;
  padding: 18px 30px;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.testimonial-actions .btn-outline {
  background: white;
  border: 2px solid var(--primary-green);
  color: var(--primary-green);
}

.testimonial-actions .btn-outline:hover {
  background: var(--primary-green);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(11, 110, 79, 0.3);
}

.testimonial-actions .btn-primary {
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
  border: 2px solid var(--accent-gold);
  color: white;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.testimonial-actions .btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-gold-dark) 0%, var(--accent-gold) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

.testimonial-actions .btn i {
  font-size: 1.2rem;
}

.rating-stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 20px;
  white-space: nowrap; /* ensure single line */
}

/* Default star (empty) muted; more specific than generic .star above */
.rating-stars .star {
  color: var(--text-light);
  font-size: 1.2rem;
  line-height: 1;
}

.rating-stars .star.filled {
  color: var(--accent-gold);
}

.testimonial-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

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

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

/* Dashboard Specific */
.dashboard-card {
  background: var(--card-gradient);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(229, 62, 62, 0.15);
  transition: all 0.3s ease;
}

.dashboard-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.metric-card {
  text-align: center;
  padding: 25px;
  background: var(--card-gradient);
  border-radius: 16px;
  border: 1px solid rgba(229, 62, 62, 0.1);
  transition: all 0.3s ease;
}

.metric-card:hover {
  transform: translateY(-3px);
  border-color: rgba(229, 62, 62, 0.3);
}

.metric-number {
  font-size: 2.5rem;
  font-weight: 900;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.metric-label {
  color: var(--text-secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

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

.section-large {
  padding: 120px 0;
}

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

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

/* Footer */
.page-footer {
  background: var(--dark-navy) !important;
  color: white;
  margin-top: 100px;
}

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

.footer-link:hover {
  color: var(--accent-gold);
  text-decoration: none;
}

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

.footer-copy {
  background: rgba(0, 0, 0, 0.2);
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Form Styles */
.input-field input:focus + label {
  color: var(--primary-green) !important;
}

.input-field input:focus {
  border-bottom: 1px solid var(--primary-green) !important;
  box-shadow: 0 1px 0 0 var(--primary-green) !important;
}

.input-field .prefix.active {
  color: var(--primary-green) !important;
}

.input-field input {
  color: var(--text-primary);
}

.input-field label {
  color: var(--text-secondary);
}

/* Pricing Cards */
.pricing .card {
  border: 2px solid var(--border-color);
  position: relative;
}

.pricing .featured {
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-lg);
  transform: scale(1.02);
}

.pricing .featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-gold);
  color: white;
  padding: 8px 24px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
}

/* Responsive Design */
@media only screen and (max-width: 1200px) {
  .hero .container {
    max-width: 1200px;
    padding: 0 40px;
  }
  .hero h1 {
    font-size: 4rem;
  }
  .hero-text {
    max-width: 650px;
  }
}

@media only screen and (max-width: 992px) {
  .hero {
    padding: 120px 0 100px 0;
    min-height: 70vh;
  }
  .hero h1 {
    font-size: 3.2rem;
  }
  .hero p {
    font-size: 1.1rem;
  }
  .pricing .featured {
    transform: none;
  }
  .hero-content {
    text-align: center;
    justify-content: center;
  }
  .hero-text {
    max-width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero h1, .hero p {
    max-width: 100%;
  }
  .hero-stats {
    max-width: 100%;
    justify-content: center;
    margin: 2rem auto 0;
    gap: 15px;
  }
  .hero-stat {
    padding: 20px 12px;
  }
  .hero .container {
    padding: 0 30px;
  }

  /* Tablet Section Padding */
  .section {
    padding: 70px 0;
  }

  /* Tablet Card Spacing */
  .card {
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 600px) {
  .hero {
    padding: 100px 0 80px 0;
    min-height: auto;
    background-attachment: scroll;
  }
  .hero h1 {
    font-size: 2.5rem;
    line-height: 1.2;
  }
  .hero p {
    font-size: 1rem;
  }
  .section {
    padding: 60px 0;
  }
  .nav-wrapper {
    padding: 0 20px;
  }
  .btn, .btn-large {
    padding: 16px 24px;
    font-size: 0.9rem;
  }
  .hero-buttons .btn {
    display: block;
    width: 100%;
    margin-right: 0;
    margin-bottom: 12px;
  }
  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    max-width: 100%;
    padding: 0;
  }
  .hero-stat {
    padding: 15px 8px;
  }
  .hero-stat i {
    font-size: 1.5rem;
    margin-bottom: 5px;
  }
  .hero-stat-number {
    font-size: 1.2rem;
  }
  .hero-stat-label {
    font-size: 0.65rem;
  }
  .hero .container {
    padding: 0 20px;
  }

  /* Mobile Section Padding */
  .section {
    padding: 50px 0;
  }

  /* Mobile Card Columns */
  .card {
    margin-bottom: 20px;
  }

  /* Mobile Program/Service Cards */
  .card .card-content {
    padding: 20px !important;
  }

  .card h5, .card-title {
    font-size: 1.3rem !important;
    margin-bottom: 12px !important;
  }

  .card p {
    font-size: 0.95rem !important;
  }

  /* Mobile Section Headers */
  h2 {
    font-size: 2rem !important;
    margin-bottom: 20px !important;
  }

  /* Mobile Pricing Cards */
  .pricing .card {
    margin-bottom: 20px;
  }

  .pricing .card .card-content {
    padding: 30px 20px !important;
  }

  /* Mobile Testimonials */
  .testimonial-card {
    margin-bottom: 20px;
  }

  /* Mobile Testimonial Actions */
  .testimonial-actions {
    flex-direction: column;
    gap: 12px !important;
  }

  .testimonial-actions .btn {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  /* Mobile Buttons */
  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
    margin: 0 !important;
  }

  /* Mobile Footer */
  .footer-copy .col.s12.m6 {
    text-align: center !important;
  }

  .footer-copy .col.s12.m6:last-child {
    margin-top: 10px;
  }

  /* Mobile Container Padding */
  .container {
    padding: 0 20px !important;
  }

  /* Mobile Icons */
  .material-icons {
    font-size: 2.5rem !important;
  }

  /* Mobile Text Sizing */
  .section p {
    font-size: 1rem !important;
    line-height: 1.6 !important;
  }

  /* Mobile Navigation Logo */
  .brand-logo {
    font-size: 1.5rem !important;
  }

  /* Mobile Featured Cards */
  .featured {
    transform: none !important;
    margin-top: 0 !important;
  }
}

/* Simple Hero (for auth pages) */
.hero-simple {
  padding: 80px 0;
  background: var(--light-bg);
  text-align: center;
  min-height: auto;
}

.hero-simple h1,
.hero-simple h2 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.hero-simple p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2rem auto;
  line-height: 1.6;
}

@media only screen and (max-width: 600px) {
  .hero-simple {
    padding: 60px 0;
  }
  .hero-simple h1,
  .hero-simple h2 {
    font-size: 2.2rem;
  }
  .hero-simple p {
    font-size: 1rem;
  }
}

/* CTA Section */
.cta-section {
  background: var(--primary-green);
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  padding: 80px 40px;
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.cta-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-image {
  text-align: center;
}

.cta-image img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: var(--shadow-md);
}

.cta-text h3 {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 20px;
  color: white;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.cta-text p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-buttons .btn {
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

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

.cta-buttons .btn-primary:hover {
  background: var(--accent-gold);
  color: white;
  border-color: var(--accent-gold);
  transform: translateY(-2px);
}

.cta-buttons .btn-outline {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.cta-buttons .btn-outline:hover {
  background: white;
  color: var(--primary-green);
  transform: translateY(-2px);
}

/* Responsive CTA */
@media only screen and (max-width: 992px) {
  .cta-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }

  .cta-text h3 {
    font-size: 2.8rem;
  }
}

@media only screen and (max-width: 600px) {
  .cta-section {
    padding: 60px 20px;
  }

  .cta-text h3 {
    font-size: 2.2rem;
  }

  .cta-text p {
    font-size: 1rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
}

/* Authentication Pages */
.auth-body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  background: var(--light-bg);
  min-height: 100vh;
}

.auth-main {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.auth-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.auth-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90vh;
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Left Side - Image Section */
.auth-image {
  background: linear-gradient(135deg, var(--primary-green) 0%, #0a5d42 100%);
  background-image: url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 60px 40px;
}

.auth-image-overlay {
  background: linear-gradient(135deg, rgba(11, 110, 79, 0.9) 0%, rgba(10, 93, 66, 0.95) 100%);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 60px 40px;
}

.auth-brand h1 {
  color: white;
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.auth-brand p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.5;
}

.auth-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.auth-stat {
  text-align: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(10px);
}

.auth-stat .stat-number {
  display: block;
  color: var(--accent-gold);
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 8px;
}

.auth-stat .stat-label {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Right Side - Form Section */
.auth-form-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: white;
}

.auth-form {
  width: 100%;
  max-width: 440px;
}

.auth-header {
  text-align: center;
  margin-bottom: 40px;
}

.auth-header h2 {
  color: var(--text-primary);
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

.auth-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.5;
}

.auth-form-content {
  margin-bottom: 30px;
}

.auth-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.auth-field {
  position: relative;
  margin-bottom: 20px;
}

.auth-field i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-secondary);
  font-size: 1.2rem;
  z-index: 2;
  pointer-events: none;
}

.auth-field input {
  width: 100%;
  padding: 16px;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  font-size: 1rem;
  color: var(--text-primary);
  background: var(--card-bg);
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
  box-sizing: border-box;
}

/* Add left padding only for inputs that have an icon */
.auth-field:has(i) input {
  padding-left: 50px;
}

/* Fallback for browsers that don't support :has() */
.auth-field.has-icon input {
  padding-left: 50px;
}

.auth-field input:focus {
  outline: none;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(11, 110, 79, 0.1);
}

.auth-field input::placeholder {
  color: var(--text-muted);
}

.auth-error {
  display: block;
  color: var(--error);
  font-size: 0.9rem;
  margin-top: 6px;
  font-weight: 500;
}

.auth-error-message {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 24px;
  color: var(--error);
  font-weight: 500;
}

.auth-checkbox {
  margin-bottom: 24px;
}

.auth-checkbox label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
  cursor: pointer;
}

.auth-checkbox input[type="checkbox"] {
  margin: 0;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 2px solid var(--border-color);
  appearance: none;
  background: white;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  margin-top: 2px;
}

.auth-checkbox input[type="checkbox"]:checked {
  background: var(--primary-green);
  border-color: var(--primary-green);
}

.auth-checkbox input[type="checkbox"]:checked::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 12px;
  font-weight: bold;
}

.auth-checkbox a {
  color: var(--primary-green);
  text-decoration: none;
  font-weight: 600;
}

.auth-checkbox a:hover {
  text-decoration: underline;
}

.auth-btn {
  width: 100%;
  padding: 16px 24px;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.auth-btn-primary {
  background: var(--primary-green);
  color: white;
}

.auth-btn-primary:hover {
  background: #0a5d42;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(11, 110, 79, 0.3);
}

.auth-forgot {
  text-align: center;
  margin-top: 20px;
}

.auth-forgot a {
  color: var(--primary-green);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.auth-forgot a:hover {
  text-decoration: underline;
}

.auth-footer {
  text-align: center;
  padding: 24px 0;
  border-top: 1px solid var(--border-color);
}

.auth-footer p {
  color: var(--text-secondary);
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.auth-link {
  color: var(--primary-green);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
}

.auth-link:hover {
  text-decoration: underline;
}

.auth-help {
  text-align: center;
  margin-top: 20px;
}

.auth-help p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.auth-help a {
  color: var(--primary-green);
  text-decoration: none;
  font-weight: 600;
}

.auth-help a:hover {
  text-decoration: underline;
}

.auth-benefits {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
}

.auth-benefits h4 {
  color: var(--text-primary);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}

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

.benefit-item {
  text-align: center;
  padding: 16px 8px;
}

.benefit-item i {
  color: var(--accent-gold);
  font-size: 1.8rem;
  margin-bottom: 8px;
  display: block;
}

.benefit-item span {
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 600;
}

/* Responsive Design */
@media only screen and (max-width: 1024px) {
  .auth-layout {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .auth-image {
    min-height: 300px;
    order: 2;
  }

  .auth-image-overlay {
    padding: 40px 30px;
  }

  .auth-brand h1 {
    font-size: 2.2rem;
  }

  .auth-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .auth-stat .stat-number {
    font-size: 1.5rem;
  }

  .auth-form-container {
    order: 1;
    padding: 40px 30px;
  }
}

@media only screen and (max-width: 768px) {
  .auth-main {
    padding: 10px;
  }

  .auth-layout {
    border-radius: 16px;
  }

  .auth-image {
    min-height: 250px;
  }

  .auth-image-overlay {
    padding: 30px 20px;
  }

  .auth-brand h1 {
    font-size: 1.8rem;
  }

  .auth-brand p {
    font-size: 1.1rem;
  }

  .auth-form-container {
    padding: 30px 20px;
  }

  .auth-header h2 {
    font-size: 2rem;
  }

  .auth-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media only screen and (max-width: 480px) {
  .auth-image {
    min-height: 200px;
  }

  .auth-stats {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .auth-header h2 {
    font-size: 1.8rem;
  }

  .auth-form {
    max-width: 100%;
  }
}

/* Enhanced Visual Styling */

/* Section Backgrounds with subtle patterns */
.section-bg {
  background: linear-gradient(135deg, #f7f5f3 0%, #fafafa 100%);
  position: relative;
}

.section-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(11, 110, 79, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

/* Program Cards Enhanced */
.card.hoverable {
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.card.hoverable::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(11, 110, 79, 0.05), transparent);
  transition: left 0.5s;
}

.card.hoverable:hover::before {
  left: 100%;
}

.card.hoverable:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-green);
}

/* Icon Backgrounds */
.card .material-icons {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(11, 110, 79, 0.1) 0%, rgba(212, 175, 55, 0.1) 100%);
  transition: all 0.3s ease;
}

.card:hover .material-icons {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-gold) 100%);
  color: white !important;
  transform: rotate(360deg) scale(1.1);
  box-shadow: 0 8px 20px rgba(11, 110, 79, 0.3);
}

/* Service Cards */
.section-white .card {
  background: white;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.section-white .card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-green) 0%, var(--accent-gold) 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.section-white .card:hover::after {
  transform: scaleX(1);
}

.section-white .card:hover {
  border-color: var(--primary-green);
  box-shadow: 0 8px 30px rgba(11, 110, 79, 0.15);
  transform: translateY(-4px);
}

/* Pricing Section Enhancement */
.pricing {
  background: linear-gradient(180deg, #fafafa 0%, #f7f5f3 100%);
  position: relative;
}

.pricing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(180deg, rgba(11, 110, 79, 0.05) 0%, transparent 100%);
  pointer-events: none;
}

.pricing .card {
  background: white;
  border: 2px solid #e2e8f0;
  transition: all 0.4s ease;
}

/* Reduce/disable large circular icon background within pricing cards */
.pricing .card .material-icons {
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  transform: none;
}

.pricing .card:hover .material-icons {
  transform: none;
}

.pricing .card:hover {
  border-color: var(--primary-green);
  box-shadow: 0 15px 45px rgba(11, 110, 79, 0.2);
  transform: translateY(-10px);
}

.pricing .card.featured {
  border-color: var(--accent-gold);
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
  position: relative;
}

.pricing .card.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
  color: white;
  padding: 8px 24px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

/* Testimonial Cards */
.section-white .card {
  position: relative;
  transition: all 0.3s ease;
}

.section-white .card::before {
  content: '"';
  position: absolute;
  top: 15px;
  left: 20px;
  font-size: 4rem;
  font-family: Georgia, serif;
  color: rgba(11, 110, 79, 0.08);
  line-height: 1;
}

/* Section Headers */
.section h2 {
  position: relative;
  display: inline-block;
}

.section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-green) 0%, var(--accent-gold) 100%);
  border-radius: 2px;
}

/* Button Enhancements */
.btn {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
  z-index: -1;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

/* Animated Gradient Backgrounds */
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.card-action .btn-primary {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-dark) 50%, var(--primary-green) 100%);
  background-size: 200% 200%;
  animation: gradientShift 3s ease infinite;
}

/* Add subtle shadows to text for better readability */
.section h2, .section h3, .section h4 {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Image placeholder styling */
.card img {
  transition: transform 0.3s ease;
}

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