/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #3b82f6;
  --primary-dark: #2563eb;
  --secondary-color: #8b5cf6;
  --secondary-dark: #7c3aed;
  --success-color: #10b981;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --background: #ffffff;
  --background-gray: #f9fafb;
  --border-color: #e5e7eb;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--background);
}

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

/* Header */
.header {
  background-color: var(--background);
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

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

.logo a {
  color: var(--primary-color);
  text-decoration: none;
  font-size: 1.75rem;
  font-weight: 700;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.nav a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav a:not(.btn):hover {
  color: var(--primary-color);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.625rem 1.25rem;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  font-size: 1rem;
  text-align: center;
}

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

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

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

.btn-secondary:hover {
  background-color: var(--secondary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

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

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

.btn-lg {
  padding: 0.875rem 2rem;
  font-size: 1.125rem;
}

/* Main Content */
.main-content {
  min-height: calc(100vh - 200px);
}

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

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 800;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.hero-description {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

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

/* Services Section */
.services-section {
  padding: 4rem 0;
  background-color: var(--background-gray);
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--text-dark);
  font-weight: 700;
}

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

.service-card {
  background-color: white;
  padding: 2rem;
  border-radius: 0.75rem;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s, box-shadow 0.3s;
}

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

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

.service-description {
  color: var(--text-light);
  line-height: 1.8;
}

.empty-state {
  text-align: center;
  padding: 3rem;
  color: var(--text-light);
}

/* CTA Section */
.cta-section {
  background-color: var(--primary-color);
  color: white;
  padding: 4rem 0;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.cta-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.cta-content .btn-primary {
  background-color: white;
  color: var(--primary-color);
}

.cta-content .btn-primary:hover {
  background-color: var(--background-gray);
}

/* Form Page */
.form-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 0;
}

.form-header {
  text-align: center;
  margin-bottom: 3rem;
}

.form-header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  font-weight: 700;
}

.form-header p {
  font-size: 1.125rem;
  color: var(--text-light);
}

.form-container {
  background-color: white;
  padding: 2.5rem;
  border-radius: 0.75rem;
  box-shadow: var(--shadow-lg);
}

.form-section {
  margin-bottom: 2.5rem;
}

.form-section h2 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
  font-weight: 600;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--border-color);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.form-group small {
  color: var(--text-light);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  display: block;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea,
.form-group select {
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input[type="file"] {
  padding: 0.5rem;
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

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

.error {
  color: #ef4444;
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

.form-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* Success Page */
.success-page {
  max-width: 600px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
  text-align: center;
}

.success-icon {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
}

.success-page h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--success-color);
  font-weight: 700;
}

.success-message {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.success-description {
  font-size: 1rem;
  margin-bottom: 2rem;
  color: var(--text-light);
}

.success-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Packages Page */
.packages-hero {
  background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
  color: white;
  padding: 4rem 0 5rem;
  text-align: center;
}

.packages-hero h1 {
  font-size: 3rem;
  margin-bottom: 0.75rem;
  font-weight: 800;
}

.packages-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  opacity: 0.95;
}

.packages-description {
  font-size: 1.125rem;
  opacity: 0.85;
}

.services-detail-section {
  padding: 4rem 0;
  background-color: var(--background-gray);
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 4rem;
}

.service-detail-card {
  background-color: white;
  border-radius: 1rem;
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  transition: transform 0.3s, box-shadow 0.3s;
  border-left: 5px solid var(--primary-color);
}

.service-detail-card:hover {
  transform: translateX(5px);
  box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.15);
}

.service-number {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
}

.service-content {
  flex: 1;
}

.service-detail-title {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
  font-weight: 700;
}

.service-detail-description {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 1.0625rem;
  margin-bottom: 1rem;
}

.service-pricing {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.pricing-badge {
  background: linear-gradient(135deg, var(--success-color), #059669);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: var(--shadow-md);
}

.pricing-badge.package {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.services-cta {
  background-color: white;
  padding: 3rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.services-cta h2 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
  font-weight: 700;
}

.services-cta p {
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

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

/* Package Cards */
.packages-section {
  padding: 4rem 0;
  background-color: var(--background-gray);
  margin-top: -2rem;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.package-card {
  background: white;
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Bronze Styling */
.package-card.bronze {
  border-top: 5px solid #cd7f32;
}

/* Silver Styling */
.package-card.silver {
  border-top: 5px solid #c0c0c0;
}

.package-card.silver.featured {
  transform: scale(1.05);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
  border-top: 5px solid #c0c0c0;
}

/* Gold Styling */
.package-card.gold {
  border-top: 5px solid #ffd700;
}

.popular-badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  box-shadow: 0 5px 15px rgba(245, 158, 11, 0.4);
}

.package-badge {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

.package-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  text-align: center;
}

.package-subtitle {
  font-size: 0.9375rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  text-align: center;
  font-style: italic;
}

.package-price {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--border-color);
}

.price-main {
  display: block;
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.price-range {
  display: block;
  font-size: 0.875rem;
  color: var(--text-light);
}

.package-features {
  flex: 1;
  margin-bottom: 2rem;
}

.package-features h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.package-features h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 1.5rem 0 0.75rem;
}

.track-option {
  background-color: var(--background-gray);
  padding: 1.25rem;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
}

.track-option h4 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.package-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.package-features li {
  padding: 0.5rem 0;
  color: var(--text-light);
  line-height: 1.6;
}

.package-features li:before {
  content: "✓ ";
  color: var(--success-color);
  font-weight: bold;
  margin-right: 0.5rem;
}

.track-option li:before {
  content: "• ";
  color: var(--text-dark);
}

.package-btn {
  display: block;
  width: 100%;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-weight: 700;
  font-size: 1.125rem;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.bronze-btn {
  background: linear-gradient(135deg, #cd7f32, #b8732c);
  color: white;
}

.bronze-btn:hover {
  background: linear-gradient(135deg, #b8732c, #a36827);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(205, 127, 50, 0.4);
}

.silver-btn {
  background: linear-gradient(135deg, #c0c0c0, #a8a8a8);
  color: white;
}

.silver-btn:hover {
  background: linear-gradient(135deg, #a8a8a8, #909090);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(192, 192, 192, 0.4);
}

.gold-btn {
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #1f2937;
}

.gold-btn:hover {
  background: linear-gradient(135deg, #ffed4e, #ffd700);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

/* Add-Ons Section */
.addons-section {
  background: white;
  padding: 3rem;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-lg);
  margin-bottom: 4rem;
}

.addons-section h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--text-dark);
}

.addons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.addon-card {
  background-color: var(--background-gray);
  padding: 1.5rem;
  border-radius: 0.75rem;
  text-align: center;
  transition: transform 0.3s;
}

.addon-card:hover {
  transform: translateY(-5px);
}

.addon-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.addon-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color);
}

/* Footer */
.footer {
  background-color: var(--text-dark);
  color: white;
  padding: 2rem 0;
  margin-top: 4rem;
}

.footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

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

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

  .hero-subtitle {
    font-size: 1.25rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .form-container {
    padding: 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .services-subtitle {
    font-size: 1rem;
  }

  .service-detail-card {
    flex-direction: column;
    padding: 1.5rem;
  }

  .service-number {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .service-detail-title {
    font-size: 1.5rem;
  }

  .services-cta {
    padding: 2rem 1.5rem;
  }

  .services-cta h2 {
    font-size: 1.5rem;
  }

  .packages-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

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

  .packages-subtitle {
    font-size: 1.25rem;
  }

  .price-main {
    font-size: 2.5rem;
  }

  .addons-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    width: 100%;
    justify-content: center;
  }

  .footer .container {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }
}

/* ============================================
   MODERN HOME PAGE STYLES
   ============================================ */

/* Modern Hero Section */
.modern-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 6rem 0 8rem;
  position: relative;
  overflow: hidden;
}

.modern-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.3), transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(118, 75, 162, 0.3), transparent 50%);
}

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

.hero-text {
  animation: fadeInUp 1s ease-out;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1.25rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-main-title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero-lead {
  font-size: 1.25rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  opacity: 0.95;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  display: block;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.875rem;
  opacity: 0.9;
}

.hero-cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Modern Buttons */
.btn-modern {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn-modern-primary {
  background: white;
  color: #667eea;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-modern-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

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

.btn-modern-outline:hover {
  background: white;
  color: #667eea;
}

.btn-modern-lg {
  padding: 1.125rem 2.5rem;
  font-size: 1.125rem;
}

.btn-modern-xl {
  padding: 1.25rem 3rem;
  font-size: 1.25rem;
}

/* Hero Image Placeholder with Floating Cards */
.hero-image {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-placeholder {
  position: relative;
  width: 100%;
  height: 100%;
}

.floating-card {
  position: absolute;
  background: white;
  color: var(--text-dark);
  padding: 1.5rem 2rem;
  border-radius: 1rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: float 3s ease-in-out infinite;
}

.floating-card .card-icon {
  font-size: 2rem;
}

.floating-card .card-text {
  font-weight: 700;
  font-size: 1.125rem;
}

.card-1 {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.card-2 {
  top: 45%;
  right: 5%;
  animation-delay: 1s;
}

.card-3 {
  bottom: 15%;
  left: 20%;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

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

/* Why Choose Us Section */
.why-choose-section {
  padding: 6rem 0;
  background-color: white;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-main-title {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

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

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

.feature-card {
  text-align: center;
  padding: 2rem;
  transition: transform 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  border-radius: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.gradient-blue { background: linear-gradient(135deg, #667eea, #764ba2); }
.gradient-purple { background: linear-gradient(135deg, #a855f7, #ec4899); }
.gradient-green { background: linear-gradient(135deg, #10b981, #3b82f6); }
.gradient-orange { background: linear-gradient(135deg, #f59e0b, #ef4444); }
.gradient-pink { background: linear-gradient(135deg, #ec4899, #f472b6); }
.gradient-teal { background: linear-gradient(135deg, #14b8a6, #06b6d4); }

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

.feature-description {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-light);
}

/* Services Overview */
.services-overview {
  padding: 6rem 0;
  background-color: var(--background-gray);
}

.services-showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.service-showcase-card {
  background: white;
  padding: 2.5rem;
  border-radius: 1.5rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  border-top: 4px solid var(--primary-color);
}

.service-showcase-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-showcase-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

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

.service-showcase-description {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.service-showcase-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-showcase-features li {
  padding: 0.5rem 0;
  color: var(--text-light);
  font-size: 0.9375rem;
}

.services-overview-cta {
  text-align: center;
}

/* Testimonials Section */
.testimonials-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f6f8fb 0%, #ffffff 100%);
}

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

.testimonial-card {
  background: white;
  padding: 2.5rem;
  border-radius: 1.5rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: all 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.testimonial-stars {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.testimonial-text {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
}

.author-name {
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.author-school {
  font-size: 0.875rem;
  color: var(--text-light);
}

/* How It Works Section */
.how-it-works {
  padding: 6rem 0;
  background: white;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1.5rem;
  align-items: center;
}

.step-card {
  background: linear-gradient(135deg, #f6f8fb 0%, #ffffff 100%);
  padding: 2.5rem 1.5rem;
  border-radius: 1.5rem;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  grid-column: span 1;
}

.step-card:nth-child(1) { grid-column: span 2; }
.step-card:nth-child(3) { grid-column: span 2; }
.step-card:nth-child(5) { grid-column: span 2; }
.step-card:nth-child(7) { grid-column: span 2; }

.step-arrow {
  text-align: center;
  font-size: 2rem;
  color: var(--primary-color);
  font-weight: 700;
  grid-column: span 1;
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.step-number {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 800;
  box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

.step-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.step-description {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-light);
}

/* Final CTA Section */
.final-cta {
  padding: 6rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid2" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid2)"/></svg>');
  opacity: 0.3;
}

.final-cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.final-cta-title {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.final-cta-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
}

.final-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.final-cta-note {
  font-size: 1rem;
  opacity: 0.9;
}

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */

/* About Hero */
.about-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 5rem 0;
  text-align: center;
}

.about-hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.about-hero-subtitle {
  font-size: 1.5rem;
  opacity: 0.95;
}

/* Our Story Section */
.our-story-section {
  padding: 6rem 0;
  background: white;
}

.our-story-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.story-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 2rem;
}

.story-paragraph {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.story-highlights {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.highlight-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background: var(--background-gray);
  padding: 1.5rem;
  border-radius: 1rem;
}

.highlight-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.highlight-text h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.highlight-text p {
  font-size: 1rem;
  color: var(--text-light);
}

.story-image-placeholder {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.story-stat-card {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 2rem;
  border-radius: 1.5rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.stat-big {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.stat-text {
  font-size: 1.125rem;
  opacity: 0.95;
}

/* Founders Section */
.founders-section {
  padding: 6rem 0;
  background: var(--background-gray);
}

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

.founder-card {
  background: white;
  padding: 3rem;
  border-radius: 1.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s;
}

.founder-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.founder-image-placeholder {
  width: 150px;
  height: 150px;
  margin: 0 auto 2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.125rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.founder-initials {
  font-size: 1.5rem;
}

.founder-name {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.founder-title {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.founder-education {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.founder-bio {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.founder-social {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.social-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border: 2px solid var(--primary-color);
  border-radius: 0.5rem;
  transition: all 0.3s;
}

.social-link:hover {
  background: var(--primary-color);
  color: white;
}

.founders-note {
  text-align: center;
  padding: 2rem;
  background: rgba(59, 130, 246, 0.05);
  border-radius: 1rem;
  color: var(--text-light);
}

/* Tutors Section */
.tutors-section {
  padding: 6rem 0;
  background: white;
}

.tutors-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-light);
}

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

.tutor-card {
  background: linear-gradient(135deg, #f6f8fb 0%, #ffffff 100%);
  padding: 2.5rem;
  border-radius: 1.5rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s;
  border-top: 4px solid var(--primary-color);
}

.tutor-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.tutor-image-placeholder {
  width: 100px;
  height: 100px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.tutor-initials {
  font-size: 1.5rem;
}

.tutor-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.tutor-education {
  font-size: 1rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.tutor-specialization {
  font-size: 0.9375rem;
  color: var(--text-light);
  margin-bottom: 1rem;
  font-style: italic;
}

.tutor-bio {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.tutor-stats {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.tutor-stat {
  background: rgba(59, 130, 246, 0.1);
  color: var(--primary-color);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.tutors-note {
  text-align: center;
  padding: 2rem;
  background: rgba(59, 130, 246, 0.05);
  border-radius: 1rem;
  color: var(--text-light);
}

/* Join Team Section */
.join-team-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #10b981 0%, #3b82f6 100%);
  color: white;
  text-align: center;
}

.join-team-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.join-team-text {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

/* About Final CTA */
.about-final-cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-align: center;
}

.about-final-title {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.about-final-text {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

/* ============================================
   RESPONSIVE STYLES FOR NEW PAGES
   ============================================ */

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

  .hero-main-title {
    font-size: 2.5rem;
  }

  .hero-image {
    height: 300px;
  }

  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .section-main-title {
    font-size: 2rem;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .step-card {
    grid-column: span 1 !important;
  }

  .step-arrow {
    display: none;
  }

  .final-cta-title {
    font-size: 2rem;
  }

  .our-story-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-hero-title {
    font-size: 2.5rem;
  }

  .founders-grid {
    grid-template-columns: 1fr;
  }

  .about-final-title {
    font-size: 2rem;
  }
}

@media (max-width: 640px) {
  .hero-main-title {
    font-size: 2rem;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .floating-card {
    padding: 1rem 1.5rem;
  }

  .floating-card .card-text {
    font-size: 0.9375rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .services-showcase-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .final-cta-title {
    font-size: 1.75rem;
  }

  .final-cta-subtitle {
    font-size: 1rem;
  }

  .btn-modern-xl {
    padding: 1rem 2rem;
    font-size: 1rem;
  }

  .about-hero-title {
    font-size: 2rem;
  }

  .about-hero-subtitle {
    font-size: 1.125rem;
  }

  .story-title {
    font-size: 2rem;
  }

  .tutors-grid {
    grid-template-columns: 1fr;
  }

  .join-team-title {
    font-size: 2rem;
  }

  .about-final-title {
    font-size: 1.75rem;
  }
}

/* ============================================
   MODERN FORM PAGES STYLES
   ============================================ */

/* Form Hero Section */
.form-hero {
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
  color: white;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.form-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="formgrid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23formgrid)"/></svg>');
  opacity: 0.3;
}

.form-hero.tutor-hero {
  background: linear-gradient(135deg, #10b981 0%, #3b82f6 100%);
}

.form-hero-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.form-hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1.25rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.form-hero-title {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.form-hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.form-hero-features {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.form-hero-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
}

.feature-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  font-size: 0.875rem;
  font-weight: 700;
}

/* Modern Form Section */
.modern-form-section {
  padding: 4rem 0 6rem;
  background: linear-gradient(to bottom, #f9fafb 0%, #ffffff 100%);
}

.modern-form-container {
  max-width: 900px;
  margin: 0 auto;
}

/* Progress Steps */
.form-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 3rem;
  padding: 2rem;
  background: white;
  border-radius: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.progress-step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #e5e7eb;
  color: #6b7280;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  transition: all 0.3s;
}

.progress-step.active .progress-step-number {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.progress-step-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #6b7280;
}

.progress-step.active .progress-step-label {
  color: var(--primary-color);
}

.progress-connector {
  width: 80px;
  height: 2px;
  background: #e5e7eb;
  margin: 0 1rem;
}

/* Modern Form Cards */
.modern-form-card {
  background: white;
  border-radius: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem;
  overflow: hidden;
  transition: all 0.3s;
}

.modern-form-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.form-card-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
  border-bottom: 1px solid #e5e7eb;
}

.form-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.form-card-subtitle {
  font-size: 0.9375rem;
  color: var(--text-light);
}

.form-card-body {
  padding: 2.5rem;
}

/* Modern Form Elements */
.modern-form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.modern-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.modern-label {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-dark);
}

.required {
  color: #ef4444;
}

.field-hint {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-top: -0.25rem;
  margin-bottom: 0.75rem;
}

.modern-form input[type="text"],
.modern-form input[type="email"],
.modern-form input[type="tel"],
.modern-form textarea {
  padding: 0.875rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 0.75rem;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s;
  background: white;
}

.modern-form input:focus,
.modern-form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

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

/* Input with Icon */
.input-icon-wrapper {
  position: relative;
}

.input-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.25rem;
  pointer-events: none;
}

.input-icon-wrapper input {
  padding-left: 3rem;
}

/* Modern Checkboxes */
.modern-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.modern-checkbox-item {
  position: relative;
}

.modern-checkbox-item input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.modern-checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: #f9fafb;
  border: 2px solid #e5e7eb;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.3s;
}

.modern-checkbox-label:hover {
  background: white;
  border-color: var(--primary-color);
}

.modern-checkbox-item input[type="checkbox"]:checked + .modern-checkbox-label {
  background: rgba(59, 130, 246, 0.1);
  border-color: var(--primary-color);
}

.checkbox-icon {
  width: 20px;
  height: 20px;
  border: 2px solid #d1d5db;
  border-radius: 0.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
}

.modern-checkbox-item input[type="checkbox"]:checked + .modern-checkbox-label .checkbox-icon {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.modern-checkbox-item input[type="checkbox"]:checked + .modern-checkbox-label .checkbox-icon::after {
  content: '✓';
  color: white;
  font-size: 0.875rem;
  font-weight: 700;
}

.checkbox-text {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-dark);
}

/* File Upload Styling */
.file-upload-wrapper {
  margin-top: 0.75rem;
}

.file-upload-area {
  border: 2px dashed #d1d5db;
  border-radius: 0.75rem;
  padding: 2rem;
  text-align: center;
  background: #f9fafb;
  transition: all 0.3s;
  position: relative;
}

.file-upload-area:hover {
  border-color: var(--primary-color);
  background: white;
}

.file-upload-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 1rem;
}

.file-upload-area input[type="file"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.file-upload-text {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.file-upload-subtext {
  font-size: 0.875rem;
  color: var(--text-light);
}

/* Info Boxes */
.form-info-box {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
  border-left: 4px solid var(--primary-color);
  border-radius: 0.75rem;
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.info-box-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.info-box-content {
  flex: 1;
}

.info-box-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.info-box-text {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-light);
}

/* Requirements Box */
.form-requirements-box {
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 1rem;
  padding: 2rem;
  margin-bottom: 2rem;
}

.requirements-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.requirements-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.requirement-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.requirement-check {
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, var(--success-color), #059669);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* Form Actions */
.modern-form-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.btn-arrow {
  margin-left: 0.5rem;
  transition: transform 0.3s;
}

.btn-modern:hover .btn-arrow {
  transform: translateX(5px);
}

/* Privacy Notice */
.form-privacy-notice {
  text-align: center;
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.02);
  border-radius: 0.75rem;
}

.form-privacy-notice p {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* Error Styling */
.modern-error {
  color: #ef4444;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.modern-error::before {
  content: '⚠';
  font-size: 1rem;
}

/* ============================================
   SUCCESS PAGE STYLES
   ============================================ */

.modern-success-section {
  padding: 4rem 0 6rem;
  background: linear-gradient(to bottom, #f9fafb 0%, #ffffff 100%);
  min-height: calc(100vh - 200px);
}

.modern-success-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

/* Animated Checkmark */
.success-animation {
  margin-bottom: 2rem;
}

.success-checkmark {
  width: 120px;
  height: 120px;
  margin: 0 auto;
}

.checkmark-svg {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: block;
  stroke-width: 3;
  stroke: #10b981;
  stroke-miterlimit: 10;
  box-shadow: 0 10px 40px rgba(16, 185, 129, 0.2);
  animation: fill 0.4s ease-in-out 0.4s forwards, scale 0.3s ease-in-out 0.9s both;
}

.checkmark-circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 3;
  stroke: #10b981;
  fill: #f0fdf4;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  stroke: #10b981;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes scale {
  0%, 100% {
    transform: none;
  }
  50% {
    transform: scale3d(1.1, 1.1, 1);
  }
}

@keyframes fill {
  100% {
    box-shadow: 0 10px 60px rgba(16, 185, 129, 0.4);
  }
}

/* Success Content */
.success-content {
  margin-bottom: 3rem;
}

.success-title {
  font-size: 3rem;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.success-subtitle {
  font-size: 1.5rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.success-description {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* Success Timeline */
.success-timeline {
  background: white;
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 3rem;
  text-align: left;
}

.timeline-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2rem;
  text-align: center;
}

.timeline-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.timeline-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.timeline-step-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.timeline-step-content {
  flex: 1;
}

.timeline-step-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.timeline-step-text {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}

.timeline-step-time {
  display: inline-block;
  background: rgba(59, 130, 246, 0.1);
  color: var(--primary-color);
  padding: 0.25rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
}

/* Success Stats */
.success-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.success-stat {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
}

.success-stat:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.stat-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9375rem;
  color: var(--text-light);
}

/* Success Actions */
.success-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

/* Success Help */
.success-help {
  background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
  border-radius: 1.5rem;
  padding: 2.5rem;
  margin-bottom: 3rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.help-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.help-contacts {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.help-contact {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.5rem;
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 0.75rem;
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 600;
  transition: all 0.3s;
}

.help-contact:hover {
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
}

.help-contact-icon {
  font-size: 1.25rem;
}

/* Success Testimonial */
.success-testimonial {
  background: white;
  border-radius: 1.5rem;
  padding: 3rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: relative;
}

.testimonial-quote {
  position: absolute;
  top: 1rem;
  left: 2rem;
  font-size: 5rem;
  color: rgba(59, 130, 246, 0.1);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-dark);
  font-style: italic;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
}

.testimonial-name {
  font-weight: 700;
  color: var(--text-dark);
}

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

/* ============================================
   FORM PAGES RESPONSIVE STYLES
   ============================================ */

@media (max-width: 768px) {
  .form-hero-title {
    font-size: 2rem;
  }

  .form-hero-subtitle {
    font-size: 1rem;
  }

  .form-hero-features {
    flex-direction: column;
    gap: 1rem;
  }

  .form-progress {
    flex-direction: column;
    gap: 1rem;
  }

  .progress-connector {
    width: 2px;
    height: 40px;
    margin: 0;
  }

  .modern-form-row {
    grid-template-columns: 1fr;
  }

  .modern-checkbox-grid {
    grid-template-columns: 1fr;
  }

  .form-card-header {
    flex-direction: column;
    text-align: center;
  }

  .success-title {
    font-size: 2rem;
  }

  .success-subtitle {
    font-size: 1.125rem;
  }

  .timeline-steps {
    gap: 1.5rem;
  }

  .success-stats {
    grid-template-columns: 1fr;
  }

  .help-contacts {
    flex-direction: column;
  }
}
