/* ========================================
   DEEP AI - Modern Professional Design
   Color Scheme: Deep Teal + Coral
======================================== */

/* ========================================
   CSS VARIABLES & ROOT STYLES
======================================== */
:root {
  /* Primary Colors */
  --primary-teal: #0d9488;
  --primary-teal-dark: #0f766e;
  --primary-teal-light: #5eead4;

  /* Secondary Colors */
  --coral: #ff6b6b;
  --coral-dark: #ee5a52;
  --coral-light: #ffa5a5;

  /* Neutral Colors */
  --dark: #1e293b;
  --dark-light: #334155;
  --gray: #64748b;
  --gray-light: #94a3b8;
  --bg-light: #f8fafc;
  --white: #ffffff;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
  --gradient-coral: linear-gradient(135deg, #ff6b6b 0%, #ffa5a5 100%);
  --gradient-dark: linear-gradient(135deg, #1e293b 0%, #334155 100%);

  /* Shadows */
  --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);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);

  /* Spacing */
  --container-max: 1280px;
  --section-padding: 100px;

  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Inter', sans-serif;
}

/* ========================================
   BASE & RESET
======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.875rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1rem;
  color: var(--gray);
}

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

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  outline: none;
}

/* ========================================
   CONTAINER & LAYOUT
======================================== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
}

.container-fluid {
  width: 100%;
  padding: 0 2rem;
}

/* Section Spacing */
.section {
  padding: var(--section-padding) 0;
}

.section-sm {
  padding: 60px 0;
}

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

/* ========================================
   NAVIGATION
======================================== */
.navbar-area {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.navbar-area.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(255, 255, 255, 0.98);
}

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

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
}

.navbar-brand:hover {
  color: var(--primary-teal);
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: var(--dark);
  font-weight: 500;
  font-size: 1rem;
  padding: 0.5rem 0;
  position: relative;
}

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

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

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

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--dark);
  border-radius: 8px;
  transition: all 0.2s ease;
}

.dropdown-item:hover {
  background: var(--bg-light);
  color: var(--primary-teal);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  padding: 0.5rem;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ========================================
   BUTTONS
======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(13, 148, 136, 0.4);
  color: var(--white);
}

.btn-coral {
  background: var(--gradient-coral);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

.btn-coral:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4);
  color: var(--white);
}

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

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

.btn-ghost {
  background: rgba(13, 148, 136, 0.1);
  color: var(--primary-teal);
}

.btn-ghost:hover {
  background: rgba(13, 148, 136, 0.2);
}

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

.btn-sm {
  padding: 0.625rem 1.5rem;
  font-size: 0.875rem;
}

/* ========================================
   CARDS
======================================== */
.card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.card-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  background: var(--gradient-primary);
  color: var(--white);
  font-size: 2rem;
}

.card-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--dark);
}

.card-text {
  color: var(--gray);
  line-height: 1.6;
}

/* ========================================
   HERO SECTION
======================================== */
.hero-section {
  padding: 150px 0 100px;
  background: var(--gradient-dark);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(13, 148, 136, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(255, 107, 107, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(13, 148, 136, 0.1);
  border: 1px solid rgba(13, 148, 136, 0.3);
  border-radius: 50px;
  color: var(--primary-teal-light);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary-teal-light) 0%, var(--coral-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--gray-light);
  margin-bottom: 2rem;
  max-width: 600px;
}

/* ========================================
   SECTIONS
======================================== */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-tag {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

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

.section-subtitle {
  font-size: 1.125rem;
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto;
}

/* ========================================
   GRID SYSTEMS
======================================== */
.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ========================================
   FOOTER
======================================== */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-text {
  color: var(--gray-light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--gray-light);
  transition: color 0.3s ease;
}

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

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: var(--gray-light);
}

/* ========================================
   UTILITIES
======================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }
.p-5 { padding: 3rem; }

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

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

.animate-fadeIn {
  animation: fadeIn 0.6s ease-out;
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */
@media (max-width: 1024px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }

  .hero-title { font-size: 3rem; }
  .section-title { font-size: 2.25rem; }

  .grid-3, .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .navbar-menu {
    display: none;
  }

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

  h1 { font-size: 2rem; }
  .hero-title { font-size: 2.5rem; }
  .section-title { font-size: 1.875rem; }

  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }

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

  .section {
    padding: 60px 0;
  }

  .container {
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .section-title { font-size: 1.5rem; }

  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
  }
}

/* ========================================
   PRINT STYLES
======================================== */
@media print {
  .navbar-area,
  .footer,
  .btn {
    display: none;
  }
}

/* ========================================
   NAVIGATION & FOOTER STYLES
   Add this to the end of your style.css file
======================================== */

/* ========================================
   ENHANCED NAVIGATION
======================================== */
.navbar-area {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar-scrolled {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

.navbar-brand {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    text-decoration: none;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    color: var(--primary-teal);
    transform: scale(1.02);
}

.navbar-menu-wrapper {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--dark);
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 0;
    position: relative;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

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

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu.active {
    display: block;
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    padding: 2rem;
}

.mobile-nav-links {
    list-style: none;
    margin: 0 0 2rem 0;
    padding: 0;
}

.mobile-nav-links li {
    margin-bottom: 1rem;
}

.mobile-nav-link {
    display: block;
    padding: 0.75rem 0;
    color: var(--dark);
    font-size: 1.125rem;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid var(--bg-light);
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    color: var(--primary-teal);
    padding-left: 0.5rem;
}

.mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* ========================================
   ALERT CONTAINER
======================================== */
.alert-container {
    position: fixed;
    top: 100px;
    left: 0;
    right: 0;
    z-index: 1050;
    padding: 0 1rem;
}

.alert {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    animation: slideDown 0.3s ease-out;
}

.alert-success {
    background: rgba(13, 148, 136, 0.1);
    border: 1px solid var(--primary-teal);
    color: var(--primary-teal-dark);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   FOOTER STYLES
======================================== */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col {
    /* Column styles */
}

.footer-brand {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.25rem;
}

.footer-text {
    color: var(--gray-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

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

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

.social-link:hover {
    background: var(--primary-teal);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--gray-light);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary-teal-light);
    padding-left: 0.5rem;
}

/* Newsletter Form */
.newsletter-form {
    margin-top: 1rem;
}

.newsletter-input-group {
    display: flex;
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.newsletter-input-group input {
    flex: 1;
    padding: 0.875rem 1rem;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 0.95rem;
    outline: none;
}

.newsletter-input-group input::placeholder {
    color: var(--gray-light);
}

.newsletter-btn {
    padding: 0 1rem;
    background: var(--gradient-primary);
    border: none;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-btn:hover {
    background: var(--primary-teal-dark);
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: var(--gray-light);
    margin: 0;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: var(--gray-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

/* ========================================
   RESPONSIVE STYLES
======================================== */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .navbar-menu-wrapper {
        display: none;
    }

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

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

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

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

@media (max-width: 480px) {
    .navbar-brand span {
        font-size: 1.25rem;
    }

    .footer {
        padding: 60px 0 20px;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 1rem;
    }
}

/* ========================================
   HOMEPAGE STYLES
   Add this to your style.css file
======================================== */

/* ========================================
   HERO SECTION
======================================== */
.hero-section {
    position: relative;
    padding: 120px 0 100px;
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(13, 148, 136, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 30%, rgba(255, 107, 107, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.hero-content {
    padding-right: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(13, 148, 136, 0.1);
    border: 1px solid rgba(13, 148, 136, 0.3);
    border-radius: 50px;
    color: #5eead4;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.badge-icon {
    font-size: 1.25rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #94a3b8;
    margin-bottom: 2rem;
    max-width: 540px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
}

.stat-card {
    text-align: left;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.875rem;
    color: #94a3b8;
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
}

.hero-main-visual {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    animation: float 6s ease-in-out infinite;
}

.visual-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.3), transparent 70%);
    filter: blur(40px);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

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

.floating-card .card-text {
    display: flex;
    flex-direction: column;
}

.floating-card .card-text strong {
    color: var(--white);
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.floating-card .card-text span {
    color: #94a3b8;
    font-size: 0.75rem;
}

.card-1 {
    top: 10%;
    right: 10%;
    animation: float 5s ease-in-out infinite;
}

.card-2 {
    top: 50%;
    left: -5%;
    animation: float 6s ease-in-out infinite;
    animation-delay: 1s;
}

.card-3 {
    bottom: 15%;
    right: 5%;
    animation: float 7s ease-in-out infinite;
    animation-delay: 2s;
}

/* ========================================
   FEATURES SECTION
======================================== */
.features-section {
    background: var(--white);
}

.feature-card {
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-teal);
}

.feature-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.feature-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.feature-card-text {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.feature-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-teal);
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.feature-link:hover {
    gap: 0.75rem;
    color: var(--primary-teal-dark);
}

/* ========================================
   CTA SECTION
======================================== */
.cta-section {
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.2), transparent 70%);
    border-radius: 50%;
}

.cta-card {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    gap: 3rem;
}

.cta-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 107, 107, 0.2);
    border: 1px solid rgba(255, 107, 107, 0.3);
    border-radius: 50px;
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.cta-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
    max-width: 500px;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.cta-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
}

/* ========================================
   TESTIMONIALS SECTION
======================================== */
.testimonials-section {
    background: var(--bg-light);
}

.testimonial-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.testimonial-rating {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    font-style: italic;
}

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

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

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    color: var(--dark);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.author-info span {
    color: var(--gray);
    font-size: 0.875rem;
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.75rem;
    }

    .hero-grid {
        gap: 3rem;
    }

    .hero-image-wrapper {
        height: 400px;
    }

    .hero-main-visual {
        width: 300px;
        height: 300px;
    }

    .cta-card {
        padding: 3rem;
    }

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

@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0 60px;
    }

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

    .hero-content {
        padding-right: 0;
    }

    .hero-title {
        font-size: 2.25rem;
    }

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

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

    .hero-stats {
        flex-direction: row;
        gap: 1.5rem;
    }

    .hero-image-wrapper {
        height: 350px;
    }

    .floating-card {
        padding: 0.75rem;
    }

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

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

    .cta-card {
        flex-direction: column;
        text-align: center;
        padding: 2.5rem 2rem;
    }

    .cta-actions {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.875rem;
    }

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

    .hero-stats {
        flex-wrap: wrap;
    }

    .cta-title {
        font-size: 1.5rem;
    }

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

/* ========================================
   ABOUT PAGE STYLES
   Add this to your style.css file
======================================== */

/* ========================================
   PAGE HERO
======================================== */
.page-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.2), transparent 70%);
    border-radius: 50%;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.page-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.page-breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.page-breadcrumb a:hover {
    color: var(--white);
}

.page-breadcrumb span {
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 600;
}

.page-breadcrumb svg {
    color: rgba(255, 255, 255, 0.6);
}

.page-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.page-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

/* ========================================
   MISSION & VISION SECTION
======================================== */
.mission-vision-section {
    background: var(--white);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.mission-vision-card {
    background: var(--white);
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.mission-vision-card:hover {
    border-color: var(--primary-teal);
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(13, 148, 136, 0.15);
}

.mv-icon {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
}

.mission-vision-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 1rem;
}

.mission-vision-card p {
    color: var(--gray);
    line-height: 1.7;
    margin: 0;
}

/* ========================================
   STORY SECTION
======================================== */
.story-section {
    background: var(--bg-light);
}

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

.story-content {
    /* Content styles */
}

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

.story-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2.5rem;
}

.story-stat-item {
    display: flex;
    flex-direction: column;
}

.story-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-teal);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.story-stat-label {
    font-size: 0.875rem;
    color: var(--gray);
    font-weight: 500;
}

.story-image {
    position: relative;
}

.story-image-card {
    position: relative;
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.05) 0%, rgba(255, 107, 107, 0.05) 100%);
    border-radius: 24px;
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-img-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.2), transparent 70%);
    filter: blur(40px);
    animation: pulse 4s ease-in-out infinite;
}

.story-image-card svg {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 400px;
    height: auto;
}

/* ========================================
   TEAM SECTION
======================================== */
.team-section {
    background: var(--white);
}

.team-card {
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-teal);
}

.team-avatar {
    margin-bottom: 1.5rem;
}

.team-avatar-initial {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: var(--white);
    font-size: 1.75rem;
    font-weight: 700;
}

.team-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--primary-teal);
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.team-bio {
    color: var(--gray);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.team-social {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
}

.team-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-light);
    color: var(--gray);
    transition: all 0.3s ease;
    text-decoration: none;
}

.team-social-link:hover {
    background: var(--primary-teal);
    color: var(--white);
    transform: translateY(-2px);
}

/* ========================================
   WHY CHOOSE US SECTION
======================================== */
.why-choose-section {
    background: var(--bg-light);
}

.advantage-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.advantage-number {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 4rem;
    font-weight: 700;
    color: rgba(13, 148, 136, 0.1);
    line-height: 1;
}

.advantage-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.advantage-card p {
    color: var(--gray);
    line-height: 1.7;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* ========================================
   CTA SECTION ALT
======================================== */
.cta-section-alt {
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
    position: relative;
    overflow: hidden;
}

.cta-section-alt::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.15), transparent 70%);
    border-radius: 50%;
}

.cta-section-alt::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 70%);
    border-radius: 50%;
}

.cta-content-center {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title-center {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.cta-text-center {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

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

/* ========================================
   RESPONSIVE DESIGN
======================================== */
@media (max-width: 1024px) {
    .page-title {
        font-size: 2.75rem;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .story-grid {
        gap: 3rem;
    }

    .cta-title-center {
        font-size: 2.25rem;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 120px 0 60px;
    }

    .page-title {
        font-size: 2.25rem;
    }

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

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

    .story-stats {
        gap: 2rem;
    }

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

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .advantage-number {
        font-size: 3rem;
        top: 1.5rem;
        right: 1.5rem;
    }

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

    .cta-text-center {
        font-size: 1.125rem;
    }

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

@media (max-width: 480px) {
    .page-title {
        font-size: 1.875rem;
    }

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

    .mission-vision-card {
        padding: 2rem;
    }

    .story-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

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

    .team-avatar-initial {
        width: 64px;
        height: 64px;
        font-size: 1.5rem;
    }

    .cta-title-center {
        font-size: 1.75rem;
    }
}
/* ========================================
   HOW IT WORKS PAGE STYLES
   Add this to your style.css file
======================================== */

/* ========================================
   PROCESS TIMELINE SECTION
======================================== */
.process-section {
    background: var(--white);
}

.process-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.process-step {
    position: relative;
    margin-bottom: 4rem;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-step:last-child .process-connector {
    display: none;
}

.process-step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.process-step-number span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.process-connector {
    position: absolute;
    left: 29px;
    top: 60px;
    width: 2px;
    height: calc(100% + 4rem);
    background: linear-gradient(180deg, var(--primary-teal) 0%, rgba(13, 148, 136, 0.2) 100%);
    z-index: 1;
}

.process-step-content {
    margin-left: 90px;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.process-step-icon {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.process-step-text {
    flex: 1;
}

.process-step-text h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 1rem;
}

.process-step-text > p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.process-step-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.process-step-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--gray);
    font-size: 0.95rem;
}

.process-step-list li:last-child {
    margin-bottom: 0;
}

.process-step-list li svg {
    flex-shrink: 0;
    color: var(--primary-teal);
}

/* ========================================
   FEATURES DETAIL SECTION
======================================== */
.features-detail-section {
    background: var(--bg-light);
}

.feature-detail-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.feature-detail-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-teal);
}

.feature-detail-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(13, 148, 136, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--primary-teal);
}

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

.feature-detail-card p {
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* ========================================
   VIDEO SECTION
======================================== */
.video-section {
    background: var(--white);
}

.video-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.video-content {
    /* Content styles */
}

.video-player {
    position: relative;
}

.video-thumbnail {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-thumbnail:hover {
    transform: scale(1.02);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
}

.video-thumbnail:hover .play-button {
    transform: scale(1.1);
}

.video-thumbnail svg {
    width: 100%;
    height: auto;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-teal);
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.play-button svg {
    width: 32px;
    height: 32px;
    margin-left: 4px;
}

/* ========================================
   QUICK FAQ SECTION
======================================== */
.quick-faq-section {
    background: var(--bg-light);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    border-left: 4px solid var(--primary-teal);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateX(4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

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

.faq-item p {
    color: var(--gray);
    line-height: 1.7;
    margin: 0;
    font-size: 0.95rem;
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */
@media (max-width: 1024px) {
    .process-step-content {
        flex-direction: column;
        gap: 1.5rem;
    }

    .process-step-text h3 {
        font-size: 1.5rem;
    }

    .video-container {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .process-timeline {
        padding-left: 0;
    }

    .process-step {
        margin-bottom: 3rem;
    }

    .process-step-number {
        width: 50px;
        height: 50px;
    }

    .process-step-number span {
        font-size: 1.25rem;
    }

    .process-connector {
        left: 24px;
        height: calc(100% + 3rem);
    }

    .process-step-content {
        margin-left: 70px;
    }

    .process-step-icon {
        width: 64px;
        height: 64px;
    }

    .process-step-text h3 {
        font-size: 1.375rem;
    }

    .video-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

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

@media (max-width: 480px) {
    .process-step-content {
        margin-left: 0;
        padding-left: 0;
    }

    .process-step-number {
        position: relative;
        margin-bottom: 1rem;
    }

    .process-connector {
        display: none;
    }

    .process-step-icon {
        margin: 0 auto;
    }

    .process-step-text {
        text-align: center;
    }

    .process-step-list {
        text-align: left;
    }

    .play-button {
        width: 64px;
        height: 64px;
    }

    .play-button svg {
        width: 24px;
        height: 24px;
    }

    .faq-item {
        padding: 1.5rem;
    }
}
/* ========================================
   FAQ PAGE STYLES
   Add this to your style.css file
======================================== */

/* ========================================
   FAQ HERO SECTION
======================================== */
.faq-hero-section {
    padding: 120px 0 80px;
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}

.faq-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(13, 148, 136, 0.1) 0%, transparent 70%);
}

.faq-hero-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.faq-hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}

.faq-hero-description {
    font-size: 1.125rem;
    color: #94a3b8;
    margin-bottom: 2.5rem;
}

/* FAQ Search Box */
.faq-search-box {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.faq-search-box svg {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
}

.faq-search-box input {
    width: 100%;
    padding: 1rem 1.5rem 1rem 3.5rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    color: var(--white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.faq-search-box input::placeholder {
    color: #94a3b8;
}

.faq-search-box input:focus {
    outline: none;
    border-color: var(--primary-teal);
    background: rgba(255, 255, 255, 0.1);
}

/* ========================================
   FAQ CATEGORIES
======================================== */
.faq-categories-section {
    background: var(--white);
    padding: 3rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.faq-categories-grid {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.faq-category-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--white);
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    color: var(--dark);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-category-btn:hover {
    border-color: var(--primary-teal);
    color: var(--primary-teal);
    transform: translateY(-2px);
}

.faq-category-btn.active {
    background: var(--gradient-primary);
    border-color: var(--primary-teal);
    color: var(--white);
}

.faq-category-btn svg {
    width: 20px;
    height: 20px;
}

/* ========================================
   FAQ CONTENT GRID
======================================== */
.faq-content-section {
    background: var(--bg-light);
}

.faq-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    align-items: start;
}

/* ========================================
   FAQ SIDEBAR
======================================== */
.faq-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-sidebar-card {
    background: var(--white);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.faq-sidebar-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 1rem;
}

.faq-quick-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.faq-quick-links li {
    margin-bottom: 0.75rem;
}

.faq-quick-links li:last-child {
    margin-bottom: 0;
}

.faq-quick-links a {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: block;
    padding: 0.25rem 0;
}

.faq-quick-links a:hover {
    color: var(--primary-teal);
    padding-left: 0.5rem;
}

/* Contact Card */
.faq-contact-card {
    text-align: center;
    background: var(--gradient-primary);
    color: var(--white);
}

.faq-contact-card h3 {
    color: var(--white);
}

.contact-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.faq-contact-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.faq-contact-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.faq-contact-card .btn {
    background: var(--white);
    color: var(--primary-teal);
}

.faq-contact-card .btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

/* ========================================
   FAQ MAIN CONTENT
======================================== */
.faq-main-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.faq-category-section {
    scroll-margin-top: 100px;
}

.faq-section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--primary-teal);
    display: inline-block;
}

/* ========================================
   FAQ ACCORDION
======================================== */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-teal);
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.1);
}

.faq-item.active {
    border-color: var(--primary-teal);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    cursor: pointer;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--dark);
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-teal);
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--primary-teal);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-answer p,
.faq-answer ul,
.faq-answer ol {
    padding: 0 1.5rem 1.5rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.faq-answer p:last-child,
.faq-answer ul:last-child,
.faq-answer ol:last-child {
    margin-bottom: 0;
}

.faq-answer ul,
.faq-answer ol {
    padding-left: 3rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
}

.faq-answer strong {
    color: var(--dark);
    font-weight: 600;
}

/* ========================================
   FAQ CTA SECTION
======================================== */
.faq-cta-section {
    background: var(--white);
}

.faq-cta-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 4rem;
    background: var(--bg-light);
    border-radius: 24px;
    border: 2px solid #e2e8f0;
}

.faq-cta-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.faq-cta-card h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.faq-cta-card p {
    font-size: 1.125rem;
    color: var(--gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.faq-cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */
@media (max-width: 1024px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .faq-sidebar {
        position: static;
        grid-row: 1;
    }

    .faq-sidebar-card {
        display: none;
    }

    .faq-sidebar-card:first-child {
        display: block;
    }
}

@media (max-width: 768px) {
    .faq-hero-section {
        padding: 100px 0 60px;
    }

    .faq-hero-title {
        font-size: 2.25rem;
    }

    .faq-hero-description {
        font-size: 1rem;
    }

    .faq-categories-grid {
        gap: 0.75rem;
    }

    .faq-category-btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.9rem;
    }

    .faq-category-btn svg {
        width: 18px;
        height: 18px;
    }

    .faq-section-title {
        font-size: 1.5rem;
    }

    .faq-question {
        font-size: 1rem;
        padding: 1.25rem;
    }

    .faq-answer p,
    .faq-answer ul,
    .faq-answer ol {
        padding: 0 1.25rem 1.25rem;
        font-size: 0.9rem;
    }

    .faq-cta-card {
        padding: 2.5rem 2rem;
    }

    .faq-cta-card h2 {
        font-size: 1.75rem;
    }

    .faq-cta-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .faq-hero-title {
        font-size: 1.875rem;
    }

    .faq-categories-grid {
        flex-direction: column;
    }

    .faq-category-btn {
        width: 100%;
        justify-content: center;
    }

    .faq-search-box input {
        font-size: 0.9rem;
        padding: 0.875rem 1rem 0.875rem 3rem;
    }

    .faq-question {
        font-size: 0.95rem;
    }
}

/* ========================================
   AUTHENTICATION PAGES (LOGIN/REGISTER)
   Add this to your style.css file
======================================== */

/* ========================================
   AUTH SECTION LAYOUT
======================================== */
.auth-section {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    padding: 3rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.auth-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    max-width: 1100px;
    margin: 0 auto;
}

/* ========================================
   BRANDING SIDE (LEFT)
======================================== */
.auth-branding {
    background: var(--gradient-primary);
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.branding-content {
    position: relative;
    z-index: 2;
}

.branding-badge {
    margin-bottom: 2rem;
    animation: float 3s ease-in-out infinite;
}

.branding-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.branding-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.branding-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
}

.feature-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-item span {
    font-size: 0.95rem;
    font-weight: 500;
}

/* Decorative Elements */
.branding-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -100px;
}

.circle-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -80px;
}

.circle-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: -50px;
}

/* ========================================
   FORM SIDE (RIGHT)
======================================== */
.auth-form-container {
    padding: 4rem 3rem;
    display: flex;
    align-items: center;
}

.auth-form-wrapper {
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
}

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

.form-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.form-subtitle {
    font-size: 0.95rem;
    color: var(--gray);
}

/* ========================================
   FORM ELEMENTS
======================================== */
.auth-form {
    /* Form container */
}

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

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.required {
    color: var(--coral);
}

.input-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
    pointer-events: none;
}

.form-input {
    width: 100%;
    padding: 0.875rem 1rem 0.875rem 3rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 0.95rem;
    color: var(--dark);
    background: var(--white);
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-teal);
    box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.1);
}

.form-input.is-invalid {
    border-color: var(--coral);
}

.form-input::placeholder {
    color: #94a3b8;
}

/* Password Toggle */
.password-toggle {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--gray);
    cursor: pointer;
    padding: 0.25rem;
    transition: color 0.3s ease;
}

.password-toggle:hover {
    color: var(--primary-teal);
}

.form-error {
    display: block;
    font-size: 0.8rem;
    color: var(--coral);
    margin-top: 0.5rem;
}

/* ========================================
   FORM OPTIONS (REMEMBER ME & FORGOT)
======================================== */
.form-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    margin-right: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked ~ .checkbox-custom {
    background: var(--gradient-primary);
    border-color: var(--primary-teal);
}

.checkbox-label input[type="checkbox"]:checked ~ .checkbox-custom::after {
    content: '';
    width: 10px;
    height: 6px;
    border-left: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(-45deg);
}

.checkbox-text {
    font-size: 0.875rem;
    color: var(--gray);
}

.forgot-link {
    font-size: 0.875rem;
    color: var(--primary-teal);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.forgot-link:hover {
    color: var(--primary-teal-dark);
}

/* ========================================
   BUTTONS
======================================== */
.btn-block {
    width: 100%;
    justify-content: center;
}

.btn-primary {
    margin-bottom: 1rem;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

/* ========================================
   DIVIDER
======================================== */
.divider {
    display: flex;
    align-items: center;
    margin: 1.5rem 0;
    color: var(--gray);
    font-size: 0.875rem;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e2e8f0;
}

.divider span {
    padding: 0 1rem;
}

/* ========================================
   SOCIAL LOGIN
======================================== */
.social-login {
    margin-bottom: 1.5rem;
}

/* ========================================
   FORM FOOTER
======================================== */
.form-footer {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

.form-footer p {
    font-size: 0.875rem;
    color: var(--gray);
    margin: 0;
}

.register-link {
    color: var(--primary-teal);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.register-link:hover {
    color: var(--primary-teal-dark);
}

/* ========================================
   ALERTS
======================================== */
.alert {
    display: flex;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    animation: slideDown 0.3s ease-out;
}

.alert-error {
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid var(--coral);
    color: var(--coral-dark);
}

.alert-content {
    flex: 1;
}

.alert-content strong {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 0.875rem;
}

.alert-content ul {
    margin: 0;
    padding-left: 1.25rem;
    font-size: 0.875rem;
}

.alert-content li {
    margin-bottom: 0.25rem;
}

.alert-content li:last-child {
    margin-bottom: 0;
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */
@media (max-width: 1024px) {
    .auth-wrapper {
        max-width: 900px;
    }

    .auth-branding {
        padding: 3rem 2rem;
    }

    .auth-form-container {
        padding: 3rem 2rem;
    }

    .branding-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .auth-section {
        padding: 2rem 0;
    }

    .auth-wrapper {
        grid-template-columns: 1fr;
    }

    .auth-branding {
        padding: 2.5rem 2rem;
        text-align: center;
    }

    .branding-badge {
        display: flex;
        justify-content: center;
    }

    .branding-features {
        align-items: center;
    }

    .feature-item {
        justify-content: center;
    }

    .auth-form-container {
        padding: 2.5rem 2rem;
    }

    .form-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .auth-section {
        padding: 1rem 0;
    }

    .auth-branding {
        padding: 2rem 1.5rem;
    }

    .auth-form-container {
        padding: 2rem 1.5rem;
    }

    .form-options {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .form-input {
        padding: 0.75rem 1rem 0.75rem 2.75rem;
    }

    .branding-title {
        font-size: 1.5rem;
    }

    .branding-text {
        font-size: 0.9rem;
    }
}

/* ========================================
   ANIMATIONS
======================================== */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* ========================================
   REGISTRATION PAGE STYLES
   Add this to your style.css file
======================================== */

/* ========================================
   REGISTER SECTION
======================================== */
.register-section {
    background: var(--bg-light);
    min-height: 100vh;
    padding: 120px 0 80px;
}

.register-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* ========================================
   FORM CONTAINER
======================================== */
.register-form-container {
    background: var(--white);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.form-header {
    margin-bottom: 2rem;
}

.form-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.form-subtitle {
    font-size: 1rem;
    color: var(--gray);
    margin: 0;
}

/* Alert Box */
.alert-box {
    display: flex;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.alert-danger {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #dc2626;
}

.alert-box svg {
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.alert-box p {
    margin: 0;
    font-size: 0.875rem;
    color: inherit;
}

/* ========================================
   FORM SECTIONS
======================================== */
.form-section {
    margin-bottom: 2.5rem;
}

.section-label {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--bg-light);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.form-row.three-cols {
    grid-template-columns: repeat(3, 1fr);
}

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

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

.required {
    color: var(--coral);
}

/* Form Inputs */
.form-input,
.form-select {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    color: var(--dark);
    background: var(--white);
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: var(--primary-teal);
    box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.1);
}

.form-input::placeholder {
    color: var(--gray-light);
}

/* Password Input */
.password-input-wrapper {
    position: relative;
}

.password-input-wrapper .form-input {
    padding-right: 3rem;
}

.toggle-password {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0.25rem;
    transition: all 0.2s ease;
}

.toggle-password:hover {
    transform: translateY(-50%) scale(1.1);
}

/* Date of Birth Inputs */
.dob-inputs {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 0.75rem;
}

/* Form Hints */
.form-hint {
    display: block;
    font-size: 0.75rem;
    color: var(--gray);
    margin-top: 0.5rem;
}

/* Error Text */
.error-text {
    display: block;
    font-size: 0.8125rem;
    color: var(--coral);
    margin-top: 0.5rem;
}

/* ========================================
   CHECKBOX
======================================== */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 0.125rem;
    accent-color: var(--primary-teal);
    cursor: pointer;
}

.checkbox-group label {
    font-size: 0.875rem;
    color: var(--gray);
    cursor: pointer;
}

.checkbox-group label a {
    color: var(--primary-teal);
    font-weight: 600;
    text-decoration: none;
}

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

/* ========================================
   SUBMIT BUTTON
======================================== */
.btn-block {
    width: 100%;
    justify-content: center;
}

.form-footer-text {
    text-align: center;
    font-size: 0.9375rem;
    color: var(--gray);
    margin-top: 1.5rem;
    margin-bottom: 0;
}

.login-link {
    color: var(--primary-teal);
    font-weight: 600;
    text-decoration: none;
}

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

/* ========================================
   BENEFITS SIDEBAR
======================================== */
.register-benefits {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.benefits-card {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    border-radius: 24px;
    padding: 2.5rem;
    margin-bottom: 1.5rem;
}

.benefits-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.benefit-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.benefit-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.benefit-content strong {
    display: block;
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.benefit-content p {
    font-size: 0.875rem;
    color: #94a3b8;
    margin: 0;
    line-height: 1.5;
}

/* Trust Badges */
.trust-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    background: var(--white);
    border-radius: 16px;
    padding: 1.5rem;
}

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

.trust-item strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-teal);
    margin-bottom: 0.25rem;
}

.trust-item span {
    font-size: 0.75rem;
    color: var(--gray);
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */
@media (max-width: 1024px) {
    .register-wrapper {
        grid-template-columns: 1fr;
    }

    .register-benefits {
        position: static;
    }

    .benefits-card {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .benefit-item {
        margin-bottom: 1rem;
        padding-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .register-form-container {
        padding: 2rem;
    }

    .form-title {
        font-size: 1.75rem;
    }

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

    .dob-inputs {
        grid-template-columns: 1fr;
    }

    .trust-badges {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .register-section {
        padding: 100px 0 60px;
    }

    .register-form-container {
        padding: 1.5rem;
        border-radius: 16px;
    }

    .form-title {
        font-size: 1.5rem;
    }

    .benefits-card {
        padding: 2rem;
    }
}
