/* Variables */
:root {
  /* Primary colors - simplified to just orange, black and white */
  --primary-color: #FF7700;
  --secondary-color: #FF7700;
  --accent-color: #FF7700;
  
  /* Background colors */
  --dark-bg: #222222;
  --light-bg: #F8F8F8;
  
  /* Text colors */
  --text-dark: #000000;
  --text-light: #FFFFFF;
  --text-muted: #555555;
  
  /* Utility colors */
  --white: #FFFFFF;
  --success: #FF7700;
  --warning: #FF7700;
  --error: #FF7700;
  
  /* Effects - simplified */
  --shadow-sm: 0 2px 5px rgba(0, 0, 0, 0.1);
  --shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 4px 10px rgba(0, 0, 0, 0.2);
  --border-radius-sm: 4px;
  --border-radius: 6px;
  --border-radius-lg: 8px;
  --border-radius-xl: 10px;
  --border-radius-xxl: 12px;
  --transition: all 0.2s ease;
  --gradient-primary: #FF7700;
  --gradient-secondary: #FF7700;
  --gradient-accent: #FF7700;
}

/* Dark theme - simplified */
[data-theme="dark"] {
  --light-bg: #333333;
  --text-dark: #FFFFFF;
  --text-muted: #BBBBBB;
  --shadow-sm: 0 2px 5px rgba(0, 0, 0, 0.3);
  --shadow: 0 3px 8px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 4px 10px rgba(0, 0, 0, 0.4);
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

html {
  scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.25;
}

/* Theme Toggle */
.theme-toggle {
  position: fixed;
  top: 60px;
  right: 20px;
  z-index: 1000;
}

.theme-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.theme-toggle label {
  cursor: pointer;
  padding: 10px;
  background-color: var(--dark-bg);
  border-radius: 50px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 60px;
  height: 30px;
  box-shadow: var(--shadow);
}

.theme-toggle i {
  font-size: 14px;
  color: var(--white);
  transition: var(--transition);
}

.theme-toggle .fa-moon {
  margin-left: 6px;
}

.theme-toggle .fa-sun {
  margin-right: 6px;
}

.toggle-ball {
  position: absolute;
  top: 2px;
  left: 2px;
  background: var(--white);
  border-radius: 50%;
  width: 26px;
  height: 26px;
  transition: var(--transition);
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.theme-toggle input:checked + label .toggle-ball {
  transform: translateX(30px);
}

/* Container */
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
  z-index: 1;
}

/* Decorative elements */
.circle-decoration {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 119, 0, 0.1);
  z-index: -1;
}

.circle-decoration.lg {
  width: 200px;
  height: 200px;
}

.circle-decoration.md {
  width: 150px;
  height: 150px;
}

.circle-decoration.sm {
  width: 80px;
  height: 80px;
}

.circle-decoration.top-right {
  top: -50px;
  right: -25px;
}

.circle-decoration.bottom-left {
  bottom: -50px;
  left: -25px;
}

.circle-decoration.center-right {
  top: 40%;
  right: -40px;
}

.floating-shape {
  position: absolute;
  z-index: -1;
  opacity: 0.3;
}

.shape-1 {
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  border-radius: 8px;
  top: 20%;
  left: 10%;
  transform: rotate(15deg);
}

.shape-2 {
  width: 60px;
  height: 60px;
  background: var(--secondary-color);
  border-radius: 50%;
  bottom: 15%;
  right: 15%;
}

.shape-3 {
  width: 30px;
  height: 30px;
  background-color: var(--accent-color);
  border-radius: 8px;
  top: 30%;
  right: 10%;
  transform: rotate(45deg);
}

/* Navbar */
.nav-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  max-width: 1320px;
  margin: 0 auto;
  padding: 20px 30px;
  position: relative;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(34, 34, 34, 0.9);
  box-shadow: var(--shadow);
  padding: 15px 30px;
  border-radius: 0 0 var(--border-radius) var(--border-radius);
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
  position: relative;
  z-index: 2;
}

.logo span {
  color: var(--primary-color);
  font-weight: 700;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: var(--transition);
  position: relative;
  padding: 5px 0;
}

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

.nav-links a:hover:after {
  width: 100%;
}

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

.nav-buttons {
  display: flex;
  gap: 15px;
}

.btn-login, .btn-register {
  padding: 8px 16px;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  font-weight: 500;
  transition: var(--transition);
  font-size: 0.95rem;
}

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

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

.btn-login:hover {
  background-color: var(--white);
  color: var(--dark-bg);
}

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

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 100px 0 60px;
  color: var(--white);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dark-bg);
  z-index: -2;
}

.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  position: relative;
}

.hero-text {
  flex: 1;
  max-width: 600px;
  animation: fadeIn 1s ease;
  position: relative;
  z-index: 2;
}

.hero-text h1 {
  font-size: 2.8rem;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--white);
  position: relative;
}

.hero-text h1::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  bottom: -10px;
  left: 0;
  border-radius: 2px;
}

.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  margin-top: 30px;
}

.hero-cta .app-buttons {
  width: 100%;
  margin-top: 20px;
  display: flex;
  gap: 15px;
}

.learn-more {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  padding: 5px 0;
}

.learn-more i {
  transition: var(--transition);
  color: var(--primary-color);
}

.learn-more:hover i {
  transform: translateX(5px);
}

.learn-more:hover {
  color: var(--primary-color);
}

.hero-image {
  position: relative;
  flex: 1;
  max-width: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.qr-code-container {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: var(--border-radius-lg);
  text-align: center;
  box-shadow: var(--shadow);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.qr-code-container img {
  width: 200px;
  height: 200px;
  display: block;
  margin: 0 auto 15px;
}

.qr-code-container p {
  font-size: 1rem;
  color: var(--white);
  opacity: 0.8;
}

.animated-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.2;
  z-index: -1;
}

.circle-1 {
  width: 150px;
  height: 150px;
  background: var(--primary-color);
  top: -10%;
  left: -10%;
}

.circle-2 {
  width: 100px;
  height: 100px;
  background: var(--secondary-color);
  bottom: 0;
  right: 5%;
}

.circle-3 {
  width: 120px;
  height: 120px;
  background: var(--accent-color);
  top: 30%;
  right: -5%;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--white);
}

.mouse {
  width: 26px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding-top: 5px;
  margin-bottom: 10px;
}

.wheel {
  width: 4px;
  height: 8px;
  background-color: var(--primary-color);
  border-radius: 2px;
  animation: scrollWheel 1.5s infinite;
}

.scroll-indicator p {
  font-size: 0.9rem;
  opacity: 0.7;
  font-weight: 500;
}

@keyframes scrollWheel {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(15px);
  }
}

/* Wave Divider */
.wave-divider {
  position: relative;
  margin-top: -80px;
  z-index: 2;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: auto;
}

/* Section Styles */
section {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  position: relative;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-dark);
  position: relative;
  display: inline-block;
}

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

.section-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
}

.section-header.light h2,
.section-header.light p {
  color: var(--white);
}

.section-header.light h2::after {
  background: var(--primary-color);
}

.section-header.light p {
  opacity: 0.9;
}

/* Options Section */
.options-section {
  padding-top: 100px;
  position: relative;
  overflow: visible;
}

.options-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 30px;
}

.option-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  z-index: 1;
  border-bottom: 4px solid var(--primary-color);
}

.option-card.passageiro {
  border-bottom: 4px solid var(--secondary-color);
}

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

.option-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.option-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--border-radius);
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 24px;
}

.option-icon.passageiro {
  background: var(--secondary-color);
}

.option-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: rgba(255, 119, 0, 0.1);
  color: var(--primary-color);
  padding: 5px 10px;
  border-radius: var(--border-radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
}

.option-card.passageiro .option-badge {
  background-color: rgba(255, 153, 68, 0.1);
  color: var(--secondary-color);
}

.option-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.option-description {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 1rem;
}

.option-features {
  list-style: none;
  margin-bottom: 25px;
}

.option-features li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-weight: 500;
}

.option-features i {
  color: var(--success);
  margin-right: 10px;
  font-size: 0.9rem;
}

.option-card .btn {
  width: 100%;
  display: block;
  margin-top: auto;
}

/* How it works section */
.how-it-works {
  background: var(--light-bg);
  position: relative;
  z-index: 1;
}

.steps-container {
  display: flex;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.steps-container::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 30px;
  right: 30px;
  height: 2px;
  background: var(--primary-color);
  z-index: -1;
}

.step {
  flex: 1;
  min-width: 200px;
  background-color: var(--white);
  padding: 25px 20px;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
  transition: var(--transition);
}

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

.step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
}

.step-icon {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.step h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  color: var(--text-dark);
}

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

/* Benefits Section */
.benefits-section {
  position: relative;
  color: var(--white);
  overflow: hidden;
}

.benefits-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://cdn.pixabay.com/photo/2017/08/02/19/27/car-2573038_1280.jpg') center/cover no-repeat;
  z-index: -1;
}

.benefits-bg:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dark-bg);
  opacity: 0.9;
}

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

.benefit-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  padding: 25px 20px;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.benefit-card:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.15);
}

.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.benefit-card h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.benefit-card p {
  opacity: 0.8;
  font-size: 0.95rem;
}

/* Features Section */
.features-section {
  padding: 60px 0;
  background: var(--light-bg);
  position: relative;
  overflow: hidden;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  position: relative;
  z-index: 1;
}

.feature-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 25px 20px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-left: 4px solid var(--primary-color);
}

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

.feature-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 22px;
  margin-bottom: 20px;
  background: var(--primary-color);
}

.feature-card:nth-child(2) .feature-icon {
  background: var(--secondary-color);
}

.feature-card:nth-child(3) .feature-icon {
  background: var(--accent-color);
}

.feature-card:nth-child(4) .feature-icon {
  background: var(--primary-color);
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.feature-card p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 1rem;
}

.feature-list {
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.feature-list li i {
  color: var(--primary-color);
  margin-right: 10px;
  font-size: 0.9rem;
  margin-top: 3px;
}

.feature-list li strong {
  margin-right: 5px;
}

.feature-card:nth-child(2) .feature-list li i {
  color: var(--secondary-color);
}

.feature-card:nth-child(3) .feature-list li i {
  color: var(--accent-color);
}

.feature-card:nth-child(4) .feature-list li i {
  color: var(--primary-color);
}

/* QR Code Section */
.qr-code-section {
  padding: 80px 0;
  background: var(--dark-bg);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.qr-content {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-top: 40px;
}

.qr-info {
  flex: 1;
}

.qr-info h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--white);
}

.qr-info p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.8;
}

.app-buttons {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.app-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary-color);
  color: var(--white);
  text-decoration: none;
  padding: 10px 20px;
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: var(--transition);
  font-size: 0.95rem;
}

.app-button:hover {
  background: var(--secondary-color);
  transform: translateY(-3px);
}

.app-button i {
  font-size: 1.2rem;
}

.qr-image {
  flex: 0 0 300px;
  text-align: center;
}

.qr-image img {
  max-width: 250px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}

/* CTA Section */
.cta-section {
  padding: 60px 0;
  background: var(--dark-bg);
  position: relative;
  overflow: hidden;
  color: var(--white);
}

.cta-section .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cta-content {
  flex: 1;
}

.cta-content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: var(--white);
  line-height: 1.2;
}

.cta-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

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

.animated-btn {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.animated-btn:hover {
  transform: translateY(-3px);
}

.animated-btn:active {
  transform: scale(0.95);
}

.animated-btn.active {
  background: var(--success);
  transform: scale(1.05);
}

.cta-image {
  flex: 0 0 200px;
  text-align: center;
}

.cta-image img {
  width: 180px;
  padding: 15px;
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

/* Footer */
footer {
  background-color: var(--dark-bg);
  color: var(--white);
  padding: 60px 0 30px;
  position: relative;
  overflow: hidden;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.footer-logo {
  margin-bottom: 30px;
}

.footer-logo .logo {
  margin-bottom: 15px;
}

.footer-logo p {
  margin-top: 10px;
  opacity: 0.7;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
}

.footer-column h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  font-weight: 600;
}

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

.footer-column li {
  margin-bottom: 12px;
}

.footer-column a {
  color: var(--white);
  opacity: 0.7;
  text-decoration: none;
  transition: var(--transition);
}

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

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.footer-bottom p {
  opacity: 0.7;
}

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

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

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 6px;
  border: none;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  text-align: center;
}

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

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

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

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

.pulse-btn {
  position: relative;
}

.pulse-btn:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: inherit;
  border-radius: inherit;
  animation: pulse-animation 1.5s infinite;
  z-index: -1;
}

@keyframes pulse-animation {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.05);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

/* Loading Overlay */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dark-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.loading-spinner {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  position: relative;
}

.loading-spinner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 4px solid transparent;
  border-top-color: var(--primary-color);
  animation: spin 1s linear infinite;
}

.loading-overlay p {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 500;
}

.loading-overlay.hidden {
  opacity: 0;
  visibility: hidden;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  overflow-y: auto;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}

.modal-content {
  background-color: var(--white);
  border-radius: var(--border-radius);
  width: 90%;
  max-width: 800px;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modal.active .modal-content {
  transform: translateY(0);
}

.modal-header {
  padding: 25px 30px 15px;
  text-align: center;
  border-bottom: 1px solid #eee;
}

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

.modal-header p {
  color: var(--text-muted);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.5rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.modal-close:hover {
  color: var(--primary-color);
}

/* Register Tabs Styles */
.register-tabs {
  display: flex;
  border-bottom: 1px solid #eee;
}

.register-tab {
  padding: 15px 30px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  border-bottom: 3px solid transparent;
  flex: 1;
  text-align: center;
}

.register-tab:hover {
  color: var(--primary-color);
}

.register-tab.active {
  color: var(--primary-color);
  border-color: var(--primary-color);
  background-color: rgba(255, 119, 0, 0.05);
}

/* Register Content */
.register-tab-content {
  display: none;
  padding: 30px;
}

.register-tab-content.active {
  display: block;
}

/* Register Steps */
.register-steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  position: relative;
}

.register-steps::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 10%;
  width: 80%;
  height: 2px;
  background-color: #eee;
  z-index: 1;
}

.register-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

.register-step .step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 10px;
  transition: var(--transition);
  color: var(--text-muted);
}

.register-step span {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

.register-step.active .step-number {
  background-color: var(--primary-color);
  color: var(--white);
}

.register-step.active span {
  color: var(--text-dark);
  font-weight: 600;
}

.register-step.completed .step-number {
  background-color: var(--success);
  color: var(--white);
}

/* Form Steps */
.register-form-step {
  display: none;
}

.register-form-step.active {
  display: block;
}

/* Form Elements */
.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: flex;
  gap: 15px;
}

.form-row .form-group {
  flex: 1;
}

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

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  font-size: 1rem;
  transition: var(--transition);
}

input:focus,
textarea:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 119, 0, 0.1);
}

.form-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

.form-buttons button:only-child {
  margin-left: auto;
}

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

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

/* Document Upload */
.document-upload-section h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
  color: var(--text-dark);
}

.document-upload-section p {
  margin-bottom: 20px;
  color: var(--text-muted);
}

.document-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.document-card {
  background-color: #f8f9fa;
  border-radius: var(--border-radius);
  padding: 20px;
  text-align: center;
  transition: var(--transition);
  border: 1px dashed #ddd;
}

.document-card:hover {
  border-color: var(--primary-color);
}

.document-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--border-radius-sm);
  background: var(--primary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin: 0 auto 15px;
}

.document-card h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: var(--text-dark);
}

.document-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 15px;
}

.upload-area {
  border: 1px dashed #ddd;
  border-radius: var(--border-radius);
  padding: 15px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.upload-area i {
  font-size: 24px;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.upload-area span {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.upload-preview {
  margin-top: 15px;
  min-height: 40px;
}

.upload-preview img {
  max-width: 100%;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

/* Facial Verification */
.facial-verification-container {
  background-color: #f8f9fa;
  border-radius: var(--border-radius);
  padding: 20px;
  margin: 20px 0 30px;
  box-shadow: var(--shadow);
}

.facial-preview {
  position: relative;
  margin-bottom: 20px;
  text-align: center;
}

.facial-frame {
  width: 320px;
  height: 240px;
  margin: 0 auto;
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  background-color: #000;
  box-shadow: var(--shadow);
}

.facial-outline {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 2px dashed rgba(255, 255, 255, 0.8);
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.facial-outline i {
  font-size: 40px;
  color: rgba(255, 255, 255, 0.3);
}

.scan-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
  animation: scanAnimation 2s linear infinite;
  z-index: 6;
}

@keyframes scanAnimation {
  0% {
    top: 0;
  }
  50% {
    top: 100%;
  }
  100% {
    top: 0;
  }
}

.facial-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.verification-instructions {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 15px;
  margin-top: 15px;
  box-shadow: var(--shadow);
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
  display: none;
  border-left: 3px solid var(--primary-color);
}

.verification-instructions.active {
  display: block;
}

.verification-instructions h4 {
  margin-bottom: 5px;
  color: var(--primary-color);
  font-size: 1.1rem;
}

.verification-instructions p {
  margin-bottom: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.facial-controls {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

.verification-status {
  margin-top: 15px;
}

.verification-progress {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.progress-bar {
  width: 100%;
  height: 6px;
  background-color: #eee;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 10px;
}

.progress-fill {
  height: 100%;
  width: 0;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.verification-message {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px;
  border-radius: var(--border-radius);
  margin-top: 20px;
  font-weight: 500;
}

.verification-message.success {
  background-color: rgba(119, 204, 102, 0.1);
  color: var(--success);
  border-left: 3px solid var(--success);
}

.verification-message.error {
  background-color: rgba(255, 85, 68, 0.1);
  color: var(--error);
  border-left: 3px solid var(--error);
}

.verification-message i {
  font-size: 1.2rem;
}

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

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .hero-text h1 {
    font-size: 2.5rem;
  }
  
  .hero-image {
    max-width: 450px;
  }
  
  .cta-content h2 {
    font-size: 2rem;
  }
  
  .section-header h2 {
    font-size: 1.8rem;
  }
  
  .qr-content {
    gap: 30px;
  }
}

@media (max-width: 1024px) {
  .hero-text h1 {
    font-size: 2.2rem;
  }
  
  .cta-section .container {
    flex-direction: column;
    text-align: center;
  }
  
  .cta-buttons {
    justify-content: center;
  }
  
  .cta-image {
    text-align: center;
    margin-top: 30px;
  }
  
  .document-cards {
    grid-template-columns: 1fr;
  }
  
  .qr-content {
    flex-direction: column;
    text-align: center;
  }
  
  .qr-info {
    order: 2;
  }
  
  .qr-image {
    order: 1;
    margin-bottom: 30px;
  }
  
  .app-buttons {
    justify-content: center;
  }
}

@media (max-width: 900px) {
  .hero-content {
    flex-direction: column;
    padding-top: 80px;
    text-align: center;
  }
  
  .hero-text {
    max-width: 100%;
  }
  
  .hero-text h1::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .hero-cta {
    justify-content: center;
  }
  
  .hero-image {
    max-width: 100%;
    margin-top: 40px;
  }
  
  .options-container {
    grid-template-columns: 1fr;
  }
  
  .steps-container {
    flex-direction: column;
  }
  
  .steps-container::before {
    display: none;
  }
  
  .step {
    margin-bottom: 30px;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .footer-top {
    flex-direction: column;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 30px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .social-links {
    margin-top: 15px;
  }
  
  .form-row {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 20px;
  }
  
  .nav-links, .nav-buttons {
    display: none;
  }
  
  .logo {
    font-size: 1.6rem;
  }
  
  .section-header h2 {
    font-size: 1.6rem;
  }
  
  .hero-text h1 {
    font-size: 2rem;
  }
  
  .facial-frame {
    width: 100%;
    max-width: 320px;
  }
  
  .verification-instructions {
    max-width: 100%;
  }
  
  .app-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 15px;
  }
  
  .logo {
    font-size: 1.4rem;
  }
  
  .hero-text h1 {
    font-size: 1.7rem;
  }
  
  .hero-text p {
    font-size: 1rem;
  }
  
  .hero-cta {
    flex-direction: column;
    gap: 15px;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  .learn-more {
    margin-top: 10px;
  }
  
  .section-header h2 {
    font-size: 1.5rem;
  }
  
  .option-card, .step, .benefit-card, .feature-card {
    padding: 20px 15px;
  }
  
  .option-title, .feature-card h3, .benefit-card h3 {
    font-size: 1.3rem;
  }
  
  .cta-content h2 {
    font-size: 1.7rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
  
  .qr-info h3 {
    font-size: 1.7rem;
  }
}