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

html, body {
  overflow-x: hidden;
  width: 100%;
  height: 100%;
  overflow-y: auto;
}

/* Custom Scrollbar Styles */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 6px;
}

::-webkit-scrollbar-thumb {
  background: #ff0000;
  border-radius: 6px;
  border: 3px solid #f1f1f1;
}

::-webkit-scrollbar-thumb:hover {
  background: #cc0000;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
  position: relative;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  box-sizing: border-box;
}

/* Large screens */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }

  .hero-title {
    font-size: 56px;
  }

  .hero-description {
    font-size: 22px;
    max-width: 600px;
  }
}

/* Tablet and smaller devices */
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
    max-width: 100%;
  }

  .header {
    margin: 8px;
    width: calc(100% - 16px);
    max-width: calc(100% - 16px);
  }

  .header.scrolling {
    margin: 4px;
    width: calc(100% - 8px);
    max-width: calc(100% - 8px);
  }

  .header .container {
    padding: 0 12px;
  }

  .header.scrolling .container {
    padding: 0 8px;
  }

  .nav-brand {
    font-size: 24px;
  }

  .nav-brand i {
    font-size: 28px;
  }

  .btn {
    padding: 8px 12px;
    font-size: 14px;
  }
}

/* Mobile devices */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .header {
    margin: 4px;
    width: calc(100% - 8px);
    max-width: calc(100% - 8px);
  }

  .header.scrolling {
    margin: 2px;
    width: calc(100% - 4px);
    max-width: calc(100% - 4px);
  }

  .nav-brand {
    font-size: 20px;
  }

  .nav-brand i {
    font-size: 24px;
  }

  .btn {
    padding: 6px 10px;
    font-size: 13px;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-description {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .booking-form-card, .booking-steps-card {
    padding: 20px;
  }

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

/* Header Enhancements */
.header {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: fixed;
  top: 16px;
  left: 16px;
  right: 16px;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.3s ease;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header.scrolling {
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.99);
  transform: scale(0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .header {
    top: 12px;
    left: 12px;
    right: 12px;
    width: calc(100% - 24px);
    padding: 12px 0;
  }

  .header.scrolling {
    top: 8px;
    left: 8px;
    right: 8px;
    width: calc(100% - 16px);
    padding: 8px 0;
  }
}

@media (max-width: 480px) {
  .header {
    top: 4px;
    left: 4px;
    right: 4px;
    width: calc(100% - 8px);
  }

  .header.scrolling {
    top: 2px;
    left: 2px;
    right: 2px;
    width: calc(100% - 4px);
  }
}

.header:hover {
  box-shadow: 0 8px 12px -1px rgba(0, 0, 0, 0.15);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 28px;
  font-weight: 800;
  color: #ff0000;
  transition: transform 0.4s ease;
  text-decoration: none;
}

.nav-brand:hover {
  transform: scale(1.05);
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.brand-link:hover {
  color: inherit;
  text-decoration: none;
}



.nav-menu {
  display: flex;
  gap: 32px;
}

.nav-link {
  text-decoration: none;
  color: #374151;
  font-weight: 500;
  position: relative;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #ff0000;
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: #ff0000;
  background: rgba(255, 0, 0, 0.05);
}

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

.nav-link.active {
  color: #ff0000;
  background: rgba(255, 0, 0, 0.1);
  font-weight: 600;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn {
  padding: 8px 16px;
  border: none;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  transform: translateY(0);
}

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

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: rotate(90deg);
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 20px;
    flex-direction: column;
    gap: 16px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.3s ease-out;
    z-index: 999;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-link {
    padding: 12px 16px;
    border-radius: 8px;
    text-align: center;
    font-size: 16px;
  }

  .mobile-menu-toggle {
    display: block;
    padding: 8px;
  }
}

@media (max-width: 480px) {
  .nav-menu {
    left: 8px;
    right: 8px;
    top: 60px;
    padding: 16px;
  }

  .nav-link {
    padding: 10px 14px;
    font-size: 15px;
  }
}

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

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 16px;
  max-width: 1200px;
  margin: 0 auto;
  transition: all 0.3s ease;
}

.header.scrolling .container {
  padding: 0 12px;
}

@media (max-width: 768px) {
  .header {
    margin: 8px;
    width: calc(100% - 16px);
  }

  .header.scrolling {
    margin: 4px;
    width: calc(100% - 8px);
  }

  .header .container {
    padding: 0 12px;
  }

  .header.scrolling .container {
    padding: 0 8px;
  }
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 28px;
  font-weight: 800;
  color: #ff0000;
}

.nav-brand i {
  font-size: 36px;
}

.nav-menu {
  display: flex;
  gap: 32px;
}

.nav-link {
  text-decoration: none;
  color: #374151;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-link:hover {
  color: #ff0000;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
}

/* Buttons */
.btn {
  padding: 8px 16px;
  border: none;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-primary {
  background: #ff0000;
  color: white;
}

.btn-primary:hover {
  background: #cc0000;
}

.btn-secondary {
  background: white;
  color: #ff0000;
}

.btn-secondary:hover {
  background: #f8fafc;
}

.btn-ghost {
  background: transparent;
  color: #374151;
}

.btn-ghost:hover {
  background: #f3f4f6;
}

.btn-outline {
  background: transparent;
  color: #ff0000;
  border: 1px solid #ff0000;
}

.btn-outline:hover {
  background: #ff0000;
  color: white;
}

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

.btn-outline-white:hover {
  background: white;
  color: #ff0000;
}

.btn-large {
  padding: 12px 32px;
  font-size: 18px;
}

.btn-full {
  width: 100%;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #dbeafe 0%, #e0e7ff 100%);
  padding: 80px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  position: relative;
  z-index: 1;
  margin-top: 0;
  border-radius: 0 0 32px 32px;
}

@media (max-width: 768px) {
  .hero {
    min-height: 100vh;
    padding-top: 100px;
    padding-bottom: 60px;
    border-radius: 0 0 24px 24px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding-top: 90px;
    padding-bottom: 40px;
    border-radius: 0 0 16px 16px;
  }
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  
  .booking-steps-card {
    max-width: 500px;
    margin: 0 auto;
  }
}

.hero-text {
  space-y: 32px;
}

.badge {
  display: inline-block;
  background: #f1f5f9;
  color: #475569;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 16px;
}

.hero-title {
  font-size: 48px;
  font-weight: bold;
  line-height: 1.1;
  margin-bottom: 16px;
}

.text-primary {
  color: #ff0000;
}

.hero-description {
  font-size: 20px;
  color: #6b7280;
  margin-bottom: 32px;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Booking Section */
.booking-section {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  min-height: 100vh;
}

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

@media (max-width: 480px) {
  .booking-section {
    padding: 80px 0 40px;
  }
}

/* Booking Form */
.booking-form-card, .booking-steps-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.booking-form-card::before, .booking-steps-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff0000, #ff4444);
}

/* Compact Booking Steps */
.booking-card-title {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
  color: #1f2937;
}

.booking-card-subtitle {
  text-align: center;
  color: #6b7280;
  font-size: 14px;
  margin-bottom: 24px;
}

.booking-steps-compact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
  padding: 20px;
  background: linear-gradient(135deg, #fff5f5, #ffffff);
  border-radius: 16px;
  border: 1px solid #fee2e2;
}

.step-compact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 12px;
  border-radius: 12px;
}

.step-compact:hover {
  transform: translateY(-2px);
  background: rgba(255, 0, 0, 0.05);
}

.step-icon-small {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #ff0000, #dc2626);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  transition: all 0.3s ease;
}

.step-compact:hover .step-icon-small {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(255, 0, 0, 0.3);
}

.step-compact span {
  font-size: 12px;
  font-weight: 600;
  color: #374151;
  text-align: center;
}

.step-arrow {
  color: #ff0000;
  font-size: 18px;
  font-weight: bold;
  opacity: 0.7;
}

@media (max-width: 768px) {
  .booking-steps-compact {
    flex-direction: column;
    gap: 12px;
    padding: 16px;
  }
  
  .step-compact {
    flex-direction: row;
    gap: 12px;
    width: 100%;
    justify-content: flex-start;
    padding: 8px;
  }
  
  .step-icon-small {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
  
  .step-compact span {
    font-size: 14px;
  }
  
  .step-arrow {
    display: none;
  }
  
  .booking-card-title {
    font-size: 20px;
  }
}

.form-title {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
  color: #1f2937;
  background: linear-gradient(135deg, #1f2937, #374151);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.form-description {
  text-align: center;
  color: #6b7280;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 32px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Vehicle Type Selection */
.vehicle-types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

@media (max-width: 1024px) {
  .vehicle-types-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .vehicle-types-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.vehicle-type-card {
  position: relative;
}

.vehicle-type-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.vehicle-type-label {
  display: block;
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.vehicle-type-label::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 0, 0, 0.1), transparent);
  transition: left 0.5s ease;
}

.vehicle-type-label:hover::before {
  left: 100%;
}

.vehicle-type-label:hover {
  border-color: #ff0000;
  transform: translateY(-4px);
  box-shadow: 0 10px 25px -5px rgba(255, 0, 0, 0.2);
}

.vehicle-type-card input[type="radio"]:checked + .vehicle-type-label {
  border-color: #ff0000;
  background: linear-gradient(135deg, #fff5f5, #ffffff);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px -5px rgba(255, 0, 0, 0.25);
}

.vehicle-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #fee2e2, #fecaca);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 24px;
  color: #dc2626;
  transition: all 0.3s ease;
}

.vehicle-image {
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(135deg, #fee2e2, #fecaca);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.vehicle-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.vehicle-type-card input[type="radio"]:checked + .vehicle-type-label .vehicle-image {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.vehicle-type-label:hover .vehicle-image {
  transform: scale(1.02);
}

.vehicle-type-card input[type="radio"]:checked + .vehicle-type-label .vehicle-icon {
  background: linear-gradient(135deg, #ff0000, #dc2626);
  color: white;
  transform: scale(1.1);
}

.vehicle-title {
  font-size: 18px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 8px;
}

.vehicle-description {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 12px;
  line-height: 1.4;
}

.vehicle-price {
  font-size: 16px;
  font-weight: 700;
  color: #ff0000;
  background: linear-gradient(135deg, #fee2e2, #fecaca);
  padding: 8px 16px;
  border-radius: 20px;
  display: inline-block;
}

.vehicle-type-card input[type="radio"]:checked + .vehicle-type-label .vehicle-price {
  background: linear-gradient(135deg, #ff0000, #dc2626);
  color: white;
}

/* Form Elements */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group label {
  font-weight: 600;
  color: #374151;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-input,
.form-select {
  padding: 16px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 16px;
  transition: all 0.3s ease;
  background: #f9fafb;
  width: 100%;
  max-width: 100%;
}

@media (max-width: 480px) {
  .form-input,
  .form-select {
    padding: 12px;
    font-size: 14px;
  }
}

.form-input:focus,
.form-select:focus {
  outline: none;
  border-color: #ff0000;
  background: white;
  box-shadow: 0 0 0 4px rgba(255, 0, 0, 0.1);
  transform: translateY(-1px);
}

/* Booking Summary */
.booking-summary {
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 32px;
  border: 1px solid #e5e7eb;
}

@media (max-width: 768px) {
  .booking-summary {
    padding: 20px;
  }

  .summary-title {
    font-size: 16px;
  }

  .summary-details p {
    font-size: 13px;
  }

  .total-price strong {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .booking-summary {
    padding: 16px;
    margin-bottom: 24px;
  }
}

.summary-title {
  font-size: 18px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.summary-title::before {
  content: '📋';
  font-size: 16px;
}

.summary-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.summary-details p {
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 14px;
}

.summary-details p:last-child {
  border-bottom: none;
}

.summary-details strong {
  color: #374151;
  font-weight: 600;
}

.total-price {
  background: linear-gradient(135deg, #fee2e2, #fecaca);
  border-radius: 12px;
  padding: 16px;
  margin-top: 16px;
  border: 2px solid #ff0000;
}

.total-price strong {
  color: #dc2626;
  font-size: 18px;
}

/* Form Buttons */
.form-buttons {
  display: flex;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
}

@media (max-width: 768px) {
  .form-buttons {
    gap: 12px;
    margin-top: 24px;
  }
}

@media (max-width: 480px) {
  .form-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .form-buttons .btn {
    width: 100%;
  }
}

.btn-full {
  width: 100%;
}

.btn-large {
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 56px;
}

.btn-large:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px -5px rgba(0, 0, 0, 0.2);
}

/* Time Slots */
.time-slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}

@media (max-width: 480px) {
  .time-slots-grid {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 8px;
  }

  .time-slot-label {
    padding: 8px 12px;
    font-size: 13px;
  }
}

.time-slot {
  position: relative;
}

.time-slot input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.time-slot-label {
  display: block;
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 12px 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 14px;
}

.time-slot-label:hover {
  border-color: #ff0000;
  background: #fff5f5;
}

.time-slot input[type="radio"]:checked + .time-slot-label {
  border-color: #ff0000;
  background: linear-gradient(135deg, #ff0000, #dc2626);
  color: white;
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(255, 0, 0, 0.2);
}

.time-slot-label.disabled {
  background: #f3f4f6;
  color: #9ca3af;
  cursor: not-allowed;
  border-color: #d1d5db;
}

.time-slot-label.disabled:hover {
  background: #f3f4f6;
  border-color: #d1d5db;
}

/* Alert Styles */
.alert {
  padding: 16px;
  border-radius: 12px;
  margin-bottom: 24px;
  border: 1px solid;
  position: relative;
  overflow: hidden;
}

.alert::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
  animation: shimmer 2s infinite;
}

.alert-danger {
  background: linear-gradient(135deg, #fef2f2, #fee2e2);
  border-color: #fca5a5;
  color: #dc2626;
}

.alert-success {
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  border-color: #86efac;
  color: #16a34a;
}

.alert-info {
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  border-color: #93c5fd;
  color: #2563eb;
}

.alert ul {
  margin: 0;
  padding-left: 20px;
}

.alert li {
  margin-bottom: 4px;
}

/* Loading States */
.loading {
  position: relative;
  pointer-events: none;
  opacity: 0.7;
}

.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid #ff0000;
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.btn-loading {
  position: relative;
  color: transparent !important;
}

.btn-loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  margin: -8px 0 0 -8px;
  border: 2px solid currentColor;
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Animations */
@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

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

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

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

.pulse {
  animation: pulse 2s infinite;
}

/* Progress Indicator */
.progress-steps {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 32px;
  gap: 16px;
}

.progress-step {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #9ca3af;
  font-weight: 500;
}

.progress-step.active {
  color: #ff0000;
}

.progress-step.completed {
  color: #16a34a;
}

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

.progress-step.active .step-number {
  background: #ff0000;
  color: white;
}

.progress-step.completed .step-number {
  background: #16a34a;
  color: white;
}

.step-connector {
  width: 40px;
  height: 2px;
  background: #e5e7eb;
  transition: all 0.3s ease;
}

.step-connector.completed {
  background: #16a34a;
}

/* Booking Confirmation Styles */
.success-icon {
  display: inline-block;
  animation: pulse 2s infinite;
}

.detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #f3f4f6;
  transition: all 0.3s ease;
}

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

.detail-item:hover {
  background: rgba(255, 0, 0, 0.02);
  border-radius: 8px;
  padding-left: 12px;
  padding-right: 12px;
}

.detail-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #fee2e2, #fecaca);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #dc2626;
  font-size: 16px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.detail-item:hover .detail-icon {
  background: linear-gradient(135deg, #ff0000, #dc2626);
  color: white;
  transform: scale(1.1);
}

.detail-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.detail-label {
  font-size: 12px;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.detail-value {
  font-size: 16px;
  font-weight: 500;
  color: #1f2937;
  line-height: 1.4;
}

.price-item .detail-icon {
  background: linear-gradient(135deg, #dcfce7, #bbf7d0);
  color: #16a34a;
}

.price-item:hover .detail-icon {
  background: linear-gradient(135deg, #16a34a, #15803d);
  color: white;
}

.price-value {
  font-size: 20px !important;
  font-weight: 700 !important;
  color: #16a34a !important;
}

.mb-6 {
  margin-bottom: 24px;
}

.me-2 {
  margin-right: 8px;
}

/* Utility Classes */
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.max-w-xl {
  max-width: 36rem;
}

.max-w-7xl {
  max-width: 80rem;
}

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

.sm\:px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.lg\:px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

@media (min-width: 640px) {
  .sm\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .lg\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* Sections */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 16px;
}

.section-description {
  font-size: 20px;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
}

/* Features */
.features {
  padding: 100px 0;
  background: linear-gradient(to bottom, white, #f9fafb);
}

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

.feature-card {
  text-align: center;
  padding: 40px 32px;
  border-radius: 24px;
  background: white;
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(255, 0, 0, 0.1), rgba(255, 0, 0, 0.2));
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: #ff0000;
  font-size: 36px;
  transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, rgba(255, 0, 0, 0.2), rgba(255, 0, 0, 0.3));
}

.feature-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #1f2937;
}

.feature-card p {
  color: #6b7280;
  line-height: 1.7;
}

/* Cars */
.cars {
  padding: 100px 0;
  background: linear-gradient(to bottom, #f9fafb, white);
}

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

.car-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px -5px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  max-width: 350px;
  margin: 0 auto;
}

.car-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.15);
  border-color: rgba(255, 0, 0, 0.1);
}

.car-image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  position: relative;
}

.car-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.1));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.car-card:hover .car-image::after {
  opacity: 1;
}

.car-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.car-details {
  padding: 24px;
}

.car-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}

.car-info h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1f2937;
}

.car-info p {
  color: #6b7280;
  font-size: 16px;
}

.car-price .price {
  font-size: 28px;
  font-weight: 800;
  color: #ff0000;
  line-height: 1;
}

.car-price .price-unit {
  font-size: 16px;
  color: #6b7280;
  margin-left: 4px;
}

.car-features {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
  font-size: 16px;
  color: #6b7280;
}

.car-features span {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* How It Works */
.how-it-works {
  padding: 100px 0;
  background: linear-gradient(to bottom, white, #f9fafb);
}

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

.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ff0000, transparent);
  opacity: 0.2;
  z-index: 0;
}

.step {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 40px 32px;
  background: white;
  border-radius: 24px;
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.step:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.15);
  border-color: rgba(255, 0, 0, 0.1);
}

.step-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ff0000, #ff3333);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 800;
  margin: 0 auto 24px;
  box-shadow: 0 10px 30px -5px rgba(255, 0, 0, 0.3);
  transition: all 0.4s ease;
}

.step:hover .step-number {
  transform: scale(1.1);
  box-shadow: 0 15px 40px -5px rgba(255, 0, 0, 0.4);
}

.step h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #1f2937;
}

.step p {
  color: #6b7280;
  line-height: 1.7;
}

/* Testimonials */
.testimonials {
  padding: 100px 0;
  background: linear-gradient(to bottom, #f9fafb, white);
}

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

.testimonial-card {
  background: white;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.15);
  border-color: rgba(255, 0, 0, 0.1);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 30px;
  font-size: 80px;
  color: rgba(255, 0, 0, 0.1);
  font-family: serif;
  line-height: 1;
}

.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 24px;
  color: #fbbf24;
  font-size: 18px;
}

.testimonial-card p {
  font-size: 18px;
  line-height: 1.7;
  color: #374151;
  margin-bottom: 32px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ff0000, #ff3333);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
}

.author-name {
  font-size: 18px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 4px;
}

.author-title {
  font-size: 14px;
  color: #6b7280;
}

/* CTA Section */
.cta {
  padding: 100px 0;
  background: linear-gradient(135deg, #ff0000, #ff3333);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before,
.cta::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.cta::before {
  top: -100px;
  left: -100px;
  animation-delay: -3s;
}

.cta::after {
  bottom: -100px;
  right: -100px;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.cta h2 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.2;
}

.cta p {
  font-size: 20px;
  margin-bottom: 40px;
  opacity: 0.9;
  line-height: 1.6;
}

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

.cta-buttons .btn {
  padding: 16px 32px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.cta-buttons .btn-primary {
  background: white;
  color: #ff0000;
  border: 2px solid white;
}

.cta-buttons .btn-primary:hover {
  background: transparent;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

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

.cta-buttons .btn-outline:hover {
  background: white;
  color: #ff0000;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

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

/* Footer */
.footer {
  background: #111827;
  color: white;
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 64px;
  margin-bottom: 64px;
}

.footer-brand {
  margin-bottom: 32px;
}

.footer-brand .brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 24px;
  color: white;
  text-decoration: none;
  transition: transform 0.4s ease;
}

.footer-brand .brand-logo:hover {
  transform: scale(1.05);
}

.footer-brand .brand-logo i {
  color: #ff0000;
  font-size: 36px;
}

.footer-brand .brand-description {
  color: #9ca3af;
  line-height: 1.7;
  margin: 0;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-col-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
}

.footer-link {
  color: #9ca3af;
  text-decoration: none;
  margin-bottom: 12px;
  transition: all 0.4s ease;
  display: inline-block;
}

.footer-link:hover {
  color: white;
  transform: translateX(4px);
}

.footer-section p {
  color: #9ca3af;
  margin-bottom: 24px;
  line-height: 1.7;
}

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

.social-links a {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.4s ease;
  font-size: 20px;
}

.social-links a:hover {
  background: #ff0000;
  transform: translateY(-4px);
}

.footer-section h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
  color: white;
}

.footer-section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-section ul li a {
  color: #9ca3af;
  text-decoration: none;
  transition: all 0.4s ease;
  display: inline-block;
}

.footer-section ul li a:hover {
  color: white;
  transform: translateX(4px);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #9ca3af;
  transition: all 0.4s ease;
}

.contact-item:hover {
  color: white;
  transform: translateX(4px);
}

.contact-item i {
  width: 20px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 32px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #9ca3af;
}

.footer-bottom p {
  margin: 0;
}

.social-icons {
  display: flex;
  gap: 16px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.4s ease;
  font-size: 16px;
}

.social-icons a:hover {
  background: #ff0000;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

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

  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-title {
    font-size: 36px;
  }

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

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

  .btn-large {
    width: 100%;
  }

  .section-title {
    font-size: 32px;
  }

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

  .cars-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .car-card {
    max-width: 100%;
  }

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

  .step-number {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }

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

  .testimonial-card {
    padding: 24px;
  }

  .testimonial-card::before {
    font-size: 60px;
    top: -5px;
    left: 20px;
  }

  .cta {
    padding: 60px 0;
  }

  .cta h2 {
    font-size: 36px;
  }

  .cta p {
    font-size: 20px;
  }

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

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

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

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

  .vehicle-types-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .form-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .form-buttons .btn-large {
    width: 100%;
  }

  .time-slots-grid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 8px;
  }

  .booking-summary {
    padding: 20px;
  }

  .summary-details p {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero {
    padding: 120px 0 60px;
  }

  .booking-section {
    padding: 80px 0 40px;
  }

  .booking-form-card {
    padding: 24px;
    border-radius: 16px;
  }

  .form-title {
    font-size: 24px;
  }

  .vehicle-type-label {
    padding: 20px 16px;
  }

  .vehicle-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .vehicle-title {
    font-size: 16px;
  }

  .vehicle-description {
    font-size: 13px;
  }

  .vehicle-price {
    font-size: 14px;
    padding: 6px 12px;
  }

  .time-slots-grid {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  }

  .time-slot-label {
    padding: 10px 12px;
    font-size: 13px;
  }

  .features,
  .cars,
  .how-it-works,
  .testimonials,
  .cta {
    padding: 60px 0;
  }

  .section-title {
    font-size: 28px;
  }

  .cta h2 {
    font-size: 32px;
  }

  .cta p {
    font-size: 18px;
  }
}

/* Contact Section */
.contact {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.contact-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #ff0000, #cc0000);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  flex-shrink: 0;
}

.contact-details h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #1f2937;
}

.contact-details p {
  color: #6b7280;
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
}

.contact-form-wrapper {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form label {
  font-weight: 600;
  color: #374151;
  font-size: 14px;
}

.contact-form input,
.contact-form textarea {
  padding: 16px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 16px;
  transition: all 0.3s ease;
  background: #f9fafb;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #ff0000;
  background: white;
  box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.1);
}

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

.contact-form .btn {
  align-self: flex-start;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
}

.alert {
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}

.alert-success {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.error-message {
  color: #dc2626;
  font-size: 14px;
  margin-top: 4px;
}

/* Contact Section Responsive */
@media (max-width: 1024px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .contact-form-wrapper {
    padding: 32px;
  }
}

@media (max-width: 768px) {
  .contact {
    padding: 80px 0;
  }
  
  .contact-form .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .contact-form-wrapper {
    padding: 24px;
  }
  
  .contact-item {
    padding: 20px;
  }
  
  .contact-icon {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .contact {
    padding: 60px 0;
  }
  
  .contact-info {
    gap: 24px;
  }
  
  .contact-item {
    padding: 16px;
    gap: 16px;
  }
  
  .contact-details h4 {
    font-size: 16px;
  }
  
  .contact-details p {
    font-size: 14px;
  }
}

/* Modern Time Slot Grid Styles */
.time-slots-grid-modern {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.time-slot-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 20px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  background: white;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 60px;
}

.time-slot-card.available {
  border-color: #10b981;
  background: #f0fdf4;
  cursor: pointer;
}

.time-slot-card.available:hover {
  border-color: #f73928;
  background: #fcdcdc;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(185, 16, 16, 0.2);
  scale: 1.02;
}

.time-slot-card.available:active {
  transform: translateY(0);
  scale: 0.98;
}

.time-slot-card.unavailable {
  border-color: #ef4444;
  background: #fef2f2;
  cursor: not-allowed;
  opacity: 0.7;
  position: relative;
}

.time-slot-card.unavailable::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 10%;
  right: 10%;
  height: 3px;
  background: #ef4444;
  transform: translateY(-50%) rotate(-15deg);
  z-index: 1;
  border-radius: 2px;
}

.time-slot-card.selected {
  border-color: #f73928;
  background: #fcdedc;
  box-shadow: 0 0 0 3px rgba(185, 16, 16, 0.3);
  transform: scale(1.02);
}

.time-slot-card.selected .time-display {
  color: #f73928;
  font-weight: 700;
}

.time-display {
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
  text-align: center;
  width: 100%;
}

.time-slot-card.unavailable .time-display {
  color: #9ca3af;
}



@media (max-width: 768px) {
  .time-slots-grid-modern {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .time-slot-card {
    padding: 14px 16px;
    min-height: 50px;
  }
  
  .time-display {
    font-size: 15px;
  }
  
  .status-indicator {
    font-size: 13px;
  }
}

/* Legal Pages Styles */
.legal-page {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  min-height: 100vh;
}

.legal-header {
  text-align: center;
  margin-bottom: 60px;
  padding-bottom: 40px;
  border-bottom: 2px solid #e2e8f0;
}

.legal-title {
  font-size: 48px;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #1f2937, #ff0000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.legal-subtitle {
  font-size: 18px;
  color: #6b7280;
  font-weight: 500;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  border-radius: 20px;
  padding: 60px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.legal-section {
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid #f3f4f6;
}

.legal-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.legal-section h2 {
  font-size: 28px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 3px solid #ff0000;
  display: inline-block;
}

.legal-section h3 {
  font-size: 20px;
  font-weight: 600;
  color: #374151;
  margin: 24px 0 12px 0;
}

.legal-section p {
  font-size: 16px;
  line-height: 1.7;
  color: #4b5563;
  margin-bottom: 16px;
}

.legal-section ul {
  margin: 16px 0;
  padding-left: 24px;
}

.legal-section li {
  font-size: 16px;
  line-height: 1.6;
  color: #4b5563;
  margin-bottom: 8px;
  position: relative;
}

.legal-section li::marker {
  color: #ff0000;
}

.legal-section strong {
  color: #1f2937;
  font-weight: 600;
}

/* Legal Pages Responsive */
@media (max-width: 1024px) {
  .legal-content {
    padding: 40px;
    margin: 0 20px;
  }
  
  .legal-title {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .legal-page {
    padding: 100px 0 60px;
  }
  
  .legal-content {
    padding: 32px 24px;
    margin: 0 16px;
  }
  
  .legal-title {
    font-size: 32px;
  }
  
  .legal-subtitle {
    font-size: 16px;
  }
  
  .legal-section h2 {
    font-size: 24px;
  }
  
  .legal-section h3 {
    font-size: 18px;
  }
  
  .legal-section p,
  .legal-section li {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .legal-page {
    padding: 80px 0 40px;
  }
  
  .legal-content {
    padding: 24px 20px;
    margin: 0 12px;
  }
  
  .legal-title {
    font-size: 28px;
  }
  
  .legal-section h2 {
    font-size: 22px;
  }
  
  .legal-section ul {
    padding-left: 20px;
  }
}