/* Base Styles */
@import '../variables.css';
@import '../responsive.css';

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.5;
  color: var(--gray-800);
  background-color: var(--white);
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul,
ol {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 2rem;
  }
}

@media (min-width: 768px) {
  .container {
    padding: 0 3rem;
  }
}

/* Button Styles */
.btn-primary {
  display: inline-block;
  background-color: var(--primary);
  color: var(--white);
  font-weight: 500;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-align: center;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(224, 94, 26, 0.3);
}

.btn-primary:hover {
  background-color: rgba(224, 94, 26, 0.9);
}

.btn-secondary {
  display: inline-block;
  background-color: transparent;
  color: var(--secondary);
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  border-radius: 1rem;
  border: 2px solid var(--secondary);
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
}

.btn-secondary:hover {
  background-color: var(--secondary);
  color: var(--white);
  border-radius: 1rem;
}

.btn-outline {
  display: inline-block;
  background-color: transparent;
  color: var(--secondary);
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  border: 1px solid var(--secondary);
  transition: all 0.3s ease;
  text-align: center;
}

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

.full-width {
  width: 100%;
}

/* Utility Classes */
.text-dark-blue {
  color: var(--secondary);
}

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

.section-spacer {
  height: 2.5rem;
  background-color: var(--white);
}

@media (min-width: 768px) {
  .section-spacer {
    height: 5rem;
  }
}

/* Animation */
.animate-item {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s ease-out;
}

.animate-item.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  z-index: 50;
  transition: box-shadow 0.3s ease;
  align-items: center;
  text-align: center;
  border-bottom: 1px solid rgba(0,0,0,0.08); /* Thin outline under navbar */
}

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

.navbar nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  max-width: 1500px;
  margin: 0 auto;
  flex-wrap: nowrap;
  gap: 1rem;
}

@media (min-width: 640px) {
  .navbar nav {
    padding: 0.875rem 1.5rem;
  }
}

@media (min-width: 768px) {
  .navbar nav {
    padding: 1.25rem 2rem;
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .navbar nav {
    padding: 1.25rem 3rem;
    gap: 2rem;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
  white-space: nowrap;
}

@media (min-width: 480px) {
  .logo {
    font-size: 1.5rem;
    gap: 0.5rem;
  }
}

@media (min-width: 768px) {
  .logo {
    font-size: 2rem;
  }
}

.car-icon {
  color: var(--secondary);
  font-size: 1.5rem;
}

@media (min-width: 480px) {
  .car-icon {
    font-size: 2rem;
  }
}

@media (min-width: 768px) {
  .car-icon {
    font-size: 2.75rem;
  }
}

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

.desktop-menu,
.desktop-buttons {
  display: none;
}

.desktop-menu a {
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s;
}

.desktop-menu a.active-link {
  color: var(--primary);
}

.desktop-menu a.active-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1.5px;
  width: 100%;
  background-color: var(--primary);
  /* ORANGE underline */
  border-radius: 2px;
}

.dropdown {
  position: relative;
}

.dropdown {
  position: relative;
}

.dropdown::before {
  content: '';
  position: absolute;
  top: 100%;
  left: -5px;
  right: -5px;
  height: 5px;
  background: transparent;
  z-index: 999;
}

.dropdown-toggle {
  all: unset;
  display: inline-block;
  background-color: transparent;
  color: var(--secondary);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.7rem 1.4rem;
  border-radius: 8px;
  border: 2px solid var(--secondary);
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.dropdown-toggle:hover {
  background-color: #2A3B54;
  transform: translateY(-1px);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--white);
  border: 1px solid var(--gray-200);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: none;
  z-index: 1000;
  border-radius: 8px;
  width: 8rem;
  margin-top: 0px;
  overflow: hidden;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

/* Keep Login/Sign Up buttons styled when dropdown is open */
.dropdown:hover .dropdown-toggle {
  background-color: #2A3B54;
  color: var(--white);
  border-radius: 8px;
  transform: translateY(-1px);
}

.dropdown-menu a {
  display: block;
  padding: 0.5rem 1rem;
  color: var(--gray-700);
  text-decoration: none;
  font-weight: 400;
  text-align: left;
  font-size: 0.875rem;
  transition: all 0.15s ease;
}

.dropdown-menu a:last-child {
  margin-top: 0;
}

.dropdown-menu a:hover {
  background-color: var(--gray-100);
  color: var(--secondary);
}


@media (min-width: 1210px) {
  .desktop-menu {
    display: flex;
    gap: 2.25rem;
    font-size: 1.05rem;
  }

  .desktop-menu a {
    font-weight: 500;
    white-space: nowrap;
  }

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

@media (min-width: 1210px) {
  .desktop-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .auth-buttons {
    display: flex;
    gap: 1rem;
  }
}

.mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: right;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--secondary);
  padding: 0.5rem;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
  min-width: 44px;
  min-height: 44px;
  margin-left: auto;
}

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

.mobile-toggle:active {
  transform: scale(0.95);
}

@media (min-width: 1210px) {
  .mobile-toggle {
    display: none;
  }
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  padding: 0;
  background-color: var(--white);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  border-top: 1px solid var(--gray-200);
}

.mobile-menu.active {
  display: flex;
  animation: slideDown 0.3s ease-out;
}

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

.mobile-menu a {
  padding: 1rem 1.5rem;
  color: var(--gray-800);
  font-weight: 500;
  font-size: 1rem;
  border-bottom: 1px solid var(--gray-100);
  transition: all 0.2s ease;
}

.mobile-menu a:hover,
.mobile-menu a:active {
  background-color: var(--gray-50);
  color: var(--primary);
  padding-left: 1.75rem;
}

.mobile-menu .mobile-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
  background-color: var(--gray-50);
  border-top: 2px solid var(--gray-200);
}

.mobile-menu .mobile-buttons .btn-outline {
  padding: 0.875rem 1.5rem;
  text-align: center;
  font-size: 0.95rem;
  border-radius: 0.5rem;
  border: 2px solid var(--secondary);
  background-color: var(--white);
  color: var(--secondary);
  font-weight: 600;
  transition: all 0.3s ease;
}

.mobile-menu .mobile-buttons .btn-outline:hover {
  background-color: var(--secondary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(41, 69, 110, 0.2);
}

.mobile-menu .btn-primary {
  padding: 1rem 1.5rem;
  margin-top: 0;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 0.5rem;
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(224, 94, 26, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu .btn-primary:hover {
  background: rgba(224, 94, 26, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(224, 94, 26, 0.4);
}

/* Hero Section */
.hero-section {
  padding: 6rem 0 2rem;
  background: var(--white);
  color: var(--gray-800);
  position: relative;
  overflow: hidden;
}

@media (min-width: 640px) {
  .hero-section {
    padding: 7rem 0 3rem;
  }
}

@media (min-width: 768px) {
  .hero-section {
    padding: 8rem 0 4rem;
  }
}

@media (min-width: 1024px) {
  .hero-section {
    padding: 10rem 0 5rem;
  }
}

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

@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
}

.hero-text h1 {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--secondary);
  line-height: 1.2;
}

@media (min-width: 480px) {
  .hero-text h1 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
  }
}

@media (min-width: 640px) {
  .hero-text h1 {
    font-size: 2.25rem;
  }
}

@media (min-width: 768px) {
  .hero-text h1 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-text h1 {
    font-size: 3.25rem;
  }
}

.hero-text p {
  font-size: 1.25rem;
  color: var(--gray-600);
  margin-bottom: 2rem;
  line-height: 1.7;
}

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

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

.hero-stats .stat {
  text-align: center;
  padding: 1.5rem;
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--gray-200);
}

.hero-stats .stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), #ff6b35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-stats .stat-label {
  font-size: 0.9rem;
  color: var(--gray-600);
  font-weight: 500;
  margin-top: 0.5rem;
}

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

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
}

.hero-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border: 3px solid rgba(255, 255, 255, 0.2);
}

/* How It Works Section */
.how-it-works {
  padding: 2.5rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

@media (min-width: 768px) {
  .how-it-works {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .how-it-works {
    padding: 5rem 0;
  }
}

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

@media (min-width: 640px) {
  .section-header {
    margin-bottom: 3rem;
  }
}

@media (min-width: 1024px) {
  .section-header {
    margin-bottom: 4rem;
  }
}

.section-header h2 {
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--secondary), #4a5568);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.75rem;
}

@media (min-width: 480px) {
  .section-header h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }
}

@media (min-width: 640px) {
  .section-header h2 {
    font-size: 2rem;
  }
}

@media (min-width: 768px) {
  .section-header h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .section-header h2 {
    font-size: 2.75rem;
  }
}

.section-header p {
  font-size: 1.25rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
}

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

.step-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--gray-100);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  text-align: center;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), #ff6b35);
}

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

.step-number {
  position: absolute;
  top: -15px;
  right: 20px;
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, var(--primary), #ff6b35);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(224, 94, 26, 0.3);
}

.step-icon {
  width: 5rem;
  height: 5rem;
  background: linear-gradient(135deg, #e2e8f0, #f1f5f9);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  color: var(--secondary);
  font-size: 1.75rem;
}

.step-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.step-card p {
  color: var(--gray-600);
  line-height: 1.6;
}

/* Benefits Section */
.benefits {
  padding: 2.5rem 0;
  background: var(--white);
}

@media (min-width: 768px) {
  .benefits {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .benefits {
    padding: 5rem 0;
  }
}

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

.benefit-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--gray-100);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), #ff6b35);
}

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

.benefit-icon {
  width: 5rem;
  height: 5rem;
  background: linear-gradient(135deg, var(--primary), #ff6b35);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  box-shadow: 0 8px 20px rgba(224, 94, 26, 0.2);
}

.benefit-icon i {
  font-size: 1.75rem;
  color: var(--white);
}

.benefit-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--gray-800);
}

.benefit-card p {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.benefit-features {
  list-style: none;
}

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

.benefit-features i {
  color: #10b981;
  font-size: 1rem;
}

/* Earnings Calculator */
.earnings-calculator {
  padding: 2.5rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

@media (min-width: 768px) {
  .earnings-calculator {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .earnings-calculator {
    padding: 5rem 0;
  }
}

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

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

.calculator-info h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--gray-800);
}

@media (min-width: 480px) {
  .calculator-info h2 {
    font-size: 1.75rem;
  }
}

@media (min-width: 640px) {
  .calculator-info h2 {
    font-size: 2rem;
  }
}

@media (min-width: 768px) {
  .calculator-info h2 {
    font-size: 2.25rem;
  }
}

.calculator-form {
  background: var(--white);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem;
}

.input-group {
  margin-bottom: 2rem;
}

.input-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--gray-700);
  font-size: 1.1rem;
}

.input-group input[type="range"] {
  width: 100%;
  height: 8px;
  border-radius: 5px;
  background: var(--gray-200);
  outline: none;
  -webkit-appearance: none;
}

.input-group input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #ff6b35);
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(224, 94, 26, 0.3);
}

.range-value {
  display: block;
  margin-top: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  font-size: 1.1rem;
}

.input-group select {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--gray-200);
  border-radius: 10px;
  background: var(--white);
  color: var(--gray-700);
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.input-group select:focus {
  border-color: var(--primary);
  outline: none;
}

.earnings-result {
  background: linear-gradient(135deg, var(--secondary), #4a5568);
  color: var(--white);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(26, 41, 66, 0.2);
}

.earnings-breakdown {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 480px) {
  .earnings-breakdown {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.earnings-item {
  text-align: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

.earnings-item.highlight {
  background: rgba(224, 94, 26, 0.2);
  border: 2px solid var(--primary);
}

.earnings-label {
  display: block;
  font-size: 0.95rem;
  opacity: 0.8;
  margin-bottom: 0.5rem;
}

.earnings-amount {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
}

.earnings-note {
  font-size: 0.9rem;
  opacity: 0.8;
  text-align: center;
  margin-top: 1rem;
}

.calculator-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.earnings-chart {
  text-align: center;
}

.chart-container {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #ff6b35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 15px 40px rgba(224, 94, 26, 0.3);
}

.profit-indicator {
  color: var(--white);
  text-align: center;
}

.profit-indicator i {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.profit-indicator span {
  font-size: 1.2rem;
  font-weight: 700;
}

/* Requirements Section */
.requirements {
  padding: 2.5rem 0;
  background: var(--white);
}

@media (min-width: 768px) {
  .requirements {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .requirements {
    padding: 5rem 0;
  }
}

.requirements-tabs {
  max-width: 900px;
  margin: 0 auto;
}

.tab-buttons {
  display: flex;
  border-bottom: 2px solid var(--gray-200);
  margin-bottom: 3rem;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}

@media (max-width: 768px) {
  .tab-buttons {
    flex-direction: column;
  }
}

.tab-btn {
  flex: 1;
  padding: 1.5rem 1rem;
  background: var(--gray-100);
  border: none;
  font-weight: 600;
  color: var(--gray-600);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

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

.tab-btn:hover:not(.active) {
  background: var(--gray-200);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.requirements-grid {
  display: grid;
  gap: 1.5rem;
}

.requirement-item {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--gray-100);
  transition: transform 0.3s ease;
}

.requirement-item:hover {
  transform: translateY(-3px);
}

.requirement-icon {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, var(--primary), #ff6b35);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(224, 94, 26, 0.2);
}

.requirement-icon i {
  color: var(--white);
  font-size: 1.5rem;
}

.requirement-details h3 {
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--gray-800);
  font-size: 1.2rem;
}

.requirement-details p {
  color: var(--gray-600);
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--secondary), #2d3748);
  color: var(--white);
  text-align: center;
}

.cta-content h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--white), #e2e8f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-content p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
}

@media (max-width: 480px) {
  .cta-actions {
    flex-direction: column;
  }
}

.cta-note {
  font-size: 0.95rem;
  opacity: 0.7;
  margin-top: 1rem;
}

/* Footer */
.footer {
  background-color: var(--primary);
  color: var(--white);
  padding-top: 4rem;
  padding-bottom: 2rem;
}

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

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-logo-icon {
  width: 3rem;
  height: 3rem;
  background-color: var(--primary);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: -0.25rem;
}

.footer-logo-icon i {
  color: var(--secondary);
  font-size: 2rem;
}

.footer-column p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
  max-width: 20rem;
}

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

.social-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s;
}

.social-links a:hover {
  color: var(--white);
}

.footer-column h4 {
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--secondary);
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s;
}

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

.contactinfo li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.75rem;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1.5rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.copyright {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .copyright {
    margin-bottom: 0;
  }
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  transition: color 0.3s;
}

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