/* ============================================
   LUCKNOW CITY RIDE - Main Stylesheet
   Modern, Responsive Car Rental Website
   ============================================ */

:root {
  --primary-dark: #001f3f;
  --primary-blue: #003d82;
  --accent-yellow: #ffc107;
  --text-dark: #333333;
  --text-light: #666666;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --border-color: #e0e0e0;
  --success: #28a745;
  --danger: #dc3545;
  --warning: #ffc107;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark);
  background: var(--bg-white);
  line-height: 1.6;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

header {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
  color: white;
  padding: 0.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 40px;
  width: 40px;
  object-fit: contain;
  background: white;
  padding: 2px;
  border-radius: 4px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
  flex-wrap: wrap;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

nav a:hover {
  color: var(--accent-yellow);
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-yellow);
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  padding: 60px 40px;
  color: white;
  background: linear-gradient(135deg, #0f0f2e 0%, #001f3f 50%, #003d82 100%);
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  overflow: hidden;
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.6;
  animation: float 6s ease-in-out infinite;
}

.gradient-orb-1 {
  width: 400px;
  height: 400px;
  background: rgba(255, 193, 7, 0.3);
  top: -100px;
  left: -100px;
  animation-delay: 0s;
}

.gradient-orb-2 {
  width: 300px;
  height: 300px;
  background: rgba(0, 225, 255, 0.2);
  bottom: -50px;
  right: -50px;
  animation-delay: 2s;
}

.gradient-orb-3 {
  width: 250px;
  height: 250px;
  background: rgba(255, 193, 7, 0.15);
  top: 50%;
  right: 10%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0);
  }
  33% {
    transform: translate(30px, -30px);
  }
  66% {
    transform: translate(-20px, 20px);
  }
}

.hero-content {
  z-index: 2;
  max-width: 600px;
  animation: slideInLeft 0.9s ease-out;
  flex: 1;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 193, 7, 0.2);
  border: 1px solid rgba(255, 193, 7, 0.5);
  color: #ffc107;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.hero-title {
  font-size: 56px;
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  animation: slideInUp 0.8s ease-out 0.2s both;
}

.hero-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  font-weight: 500;
  animation: slideInUp 0.8s ease-out 0.4s both;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
  animation: slideInUp 0.8s ease-out 0.6s both;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.stat-number {
  font-size: 28px;
  font-weight: 900;
  color: #ffc107;
}

.stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  animation: slideInUp 0.8s ease-out 0.8s both;
}

.btn-large {
  padding: 16px 36px !important;
  font-size: 16px !important;
  font-weight: 600 !important;
}

.hero-visual {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  animation: slideInRight 0.9s ease-out;
  padding: 20px;
  min-height: 400px;
}

.car-animation {
  width: 100%;
  max-width: 500px;
  height: auto;
  animation: fadeIn 0.9s ease-out;
}

.car-scene {
  width: 100%;
  max-width: 500px;
  height: auto;
  filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.2));
  margin: 0 auto;
}

.car-moving {
  animation: carDrive 4s ease-in-out infinite;
}

.lane-marks {
  animation: laneScroll 2s linear infinite;
}

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

@keyframes carDrive {
  0% {
    transform: translateX(0px) scaleX(1);
  }
  25% {
    transform: translateX(20px) scaleX(1);
  }
  50% {
    transform: translateX(0px) scaleX(1);
  }
  75% {
    transform: translateX(-20px) scaleX(1);
  }
  100% {
    transform: translateX(0px) scaleX(1);
  }
}

@keyframes laneScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(40px);
  }
}

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

@keyframes carBounce {
  0%, 100% {
    transform: translateY(0) rotateZ(0deg);
  }
  50% {
    transform: translateY(-20px) rotateZ(-2deg);
  }
}

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

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

.hero h1 {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero .tagline {
  font-size: 20px;
  margin-bottom: 30px;
  color: #e0e0e0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.btn-primary {
  background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
  color: var(--primary-dark);
  padding: 14px 40px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.3s ease;
  z-index: -1;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ffb300 0%, #ff9800 100%);
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(255, 193, 7, 0.5);
  letter-spacing: 0.5px;
}

.btn-secondary {
  background: transparent;
  color: white;
  padding: 12px 30px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 50px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  font-weight: 600;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

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

/* ============================================
   QUICK BOOKING FORM
   ============================================ */

.quick-booking {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  margin: -50px auto 50px;
  max-width: 900px;
  position: relative;
  z-index: 10;
}

.quick-booking h3 {
  margin-bottom: 30px;
  font-size: 24px;
  color: var(--primary-dark);
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

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

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

.form-group input,
.form-group select {
  padding: 12px;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent-yellow);
}

.booking-form-submit {
  grid-column: 1 / -1;
  margin-top: 10px;
}

/* ============================================
   SECTIONS & CONTAINERS
   ============================================ */

section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

section.bg-light {
  background: var(--bg-light);
}

section h2 {
  font-size: 36px;
  margin-bottom: 40px;
  color: var(--primary-dark);
  text-align: center;
  position: relative;
  padding-bottom: 20px;
}

section h2::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 4px;
  background: var(--accent-yellow);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

/* ============================================
   HIGHLIGHTS / FEATURES
   ============================================ */

.highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.highlight-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-top: 4px solid transparent;
}

.highlight-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-top-color: var(--accent-yellow);
}

.highlight-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.highlight-card h3 {
  margin-bottom: 15px;
  color: var(--primary-dark);
  font-size: 20px;
}

.highlight-card p {
  color: var(--text-light);
  line-height: 1.8;
}

/* ============================================
   CAR CARDS
   ============================================ */

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

.car-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.car-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.car-image {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 100px;
  color: rgba(255, 193, 7, 0.3);
  overflow: hidden;
  border-radius: 8px 8px 0 0;
}

.car-details {
  padding: 25px;
}

.car-details h3 {
  color: var(--primary-dark);
  margin-bottom: 15px;
  font-size: 22px;
}

.car-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 14px;
  color: var(--text-light);
}

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

.car-spec::before {
  content: "✓";
  color: var(--success);
  font-weight: bold;
}

/* ============================================
   PRICING TABLE
   ============================================ */

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  overflow: hidden;
}

.pricing-table th {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
  color: white;
  padding: 20px;
  text-align: left;
  font-weight: 600;
}

.pricing-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--border-color);
}

.pricing-table tr:last-child td {
  border-bottom: none;
}

.pricing-table tr:nth-child(even) {
  background: var(--bg-light);
}

.pricing-table tr:hover {
  background: rgba(255, 193, 7, 0.05);
}

/* ============================================
   TESTIMONIALS
   ============================================ */

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

.testimonial {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border-left: 4px solid var(--accent-yellow);
}

.testimonial p {
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.8;
}

.testimonial-author {
  font-weight: bold;
  color: var(--primary-dark);
}

.stars {
  color: var(--accent-yellow);
  margin-bottom: 10px;
  font-size: 18px;
}

/* ============================================
   FORMS
   ============================================ */

form {
  max-width: 600px;
  margin: 0 auto;
}

form .form-group {
  margin-bottom: 20px;
}

form textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-family: inherit;
  font-size: 14px;
  resize: vertical;
  min-height: 120px;
  transition: border-color 0.3s ease;
}

form textarea:focus {
  outline: none;
  border-color: var(--accent-yellow);
}

/* ============================================
   MESSAGES
   ============================================ */

.alert {
  padding: 15px 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  animation: slideInDown 0.4s ease-out;
}

.alert-success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.alert-error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.alert-info {
  background: #d1ecf1;
  color: #0c5460;
  border: 1px solid #bee5eb;
}

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

/* ============================================
   FOOTER
   ============================================ */

footer {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
  color: white;
  padding: 50px 20px 20px;
  margin-top: 60px;
}

footer .footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 30px;
}

footer h3 {
  margin-bottom: 20px;
  color: var(--accent-yellow);
  font-size: 18px;
}

footer ul {
  list-style: none;
}

footer ul li {
  margin-bottom: 12px;
}

footer a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--accent-yellow);
}

.contact-info {
  line-height: 2;
}

.contact-info p {
  margin: 8px 0;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 193, 7, 0.2);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: var(--accent-yellow);
  color: var(--primary-dark);
}

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 30px 0;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #b0b0b0;
  font-size: 14px;
}

/* ============================================
   FLOATING ACTION BUTTONS
   ============================================ */

.floating-actions {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
}

.fab {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  font-size: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.fab-call {
  background: var(--danger);
}

.fab-whatsapp {
  background: #25d366;
}

.fab:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* ============================================
   ADMIN DASHBOARD
   ============================================ */

.admin-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px;
}

.admin-header {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
  color: white;
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.admin-header h1 {
  margin: 0;
}

.logout-btn {
  background: var(--danger);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
}

.logout-btn:hover {
  background: #c82333;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.stat-card {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border-top: 4px solid var(--accent-yellow);
}

.stat-card h3 {
  color: var(--text-light);
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.stat-card .stat-number {
  font-size: 32px;
  font-weight: bold;
  color: var(--primary-dark);
}

.table-container {
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin-bottom: 40px;
}

.table-header {
  background: var(--bg-light);
  padding: 20px;
  border-bottom: 2px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.table-header h2 {
  margin: 0;
  font-size: 20px;
  color: var(--primary-dark);
}

.table-actions {
  display: flex;
  gap: 10px;
}

.btn-small {
  padding: 8px 16px;
  font-size: 12px;
  border-radius: 6px;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

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

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

.btn-info {
  background: #17a2b8;
  color: white;
}

.btn-small:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

table {
  width: 100%;
  border-collapse: collapse;
}

table th {
  background: var(--bg-light);
  padding: 15px;
  text-align: left;
  font-weight: 600;
  color: var(--text-dark);
  border-bottom: 2px solid var(--border-color);
}

table td {
  padding: 15px;
  border-bottom: 1px solid var(--border-color);
}

table tr:hover {
  background: var(--bg-light);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
  .hero {
    min-height: 600px;
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }

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

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

  .hero-stats {
    justify-content: center;
    gap: 30px;
  }

  .hero-visual {
    margin-top: 30px;
    min-height: 300px;
  }

  .car-animation {
    max-width: 350px;
  }

  .car-scene {
    max-width: 350px;
  }

  .hero-buttons {
    justify-content: center;
  }

  nav ul {
    gap: 15px;
    font-size: 14px;
  }

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

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

  section h2 {
    font-size: 28px;
  }

  .quick-booking {
    margin: -30px 20px 40px;
    padding: 25px;
  }

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

  .admin-header {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }

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

  .table-header {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }

  .floating-actions {
    bottom: 20px;
    right: 20px;
  }

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

  table {
    font-size: 12px;
  }

  table th, table td {
    padding: 10px;
  }

  section {
    padding: 40px 15px;
  }
}

@media (max-width: 480px) {
  .navbar-container {
    flex-direction: column;
    gap: 10px;
  }

  nav ul {
    flex-direction: column;
    gap: 10px;
  }

  .hero {
    min-height: 500px;
    padding: 30px 15px;
  }

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

  .hero-subtitle {
    font-size: 14px;
    margin-bottom: 25px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 25px;
  }

  .stat-number {
    font-size: 24px;
  }

  .car-animation {
    max-width: 280px;
  }

  .car-scene {
    max-width: 280px;
  }

  .hero-visual {
    min-height: 250px;
  }

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

  .btn-primary, .btn-secondary {
    width: 100%;
    padding: 12px 20px !important;
  }
}

  .hero h1 {
    font-size: 24px;
  }

  .hero .tagline {
    font-size: 14px;
  }

  .btn-primary, .btn-secondary {
    width: 100%;
  }

  .quick-booking {
    margin: -20px 15px 30px;
    padding: 15px;
  }

  .booking-form {
    gap: 12px;
  }

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

  section h2 {
    font-size: 22px;
  }

  .pricing-table {
    font-size: 12px;
  }

  .pricing-table th, .pricing-table td {
    padding: 10px;
  }
}

/* ============================================
   LOADING & ANIMATIONS
   ============================================ */

.spinner {
  border: 4px solid var(--border-color);
  border-top: 4px solid var(--accent-yellow);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
}

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

.fade-out {
  animation: fadeOut 0.3s ease-out;
}

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