/* ============================================
   RYDT AIR — Component Styles
   ============================================ */

/* === Hero Section ===
   NOTE: Primary .rydt-hero styles are in sections.css.
   These rules add hero-specific component behaviors only.
*/
.rydt-hero {
  /* padding-top accounts for sticky navbar height */
  padding-top: clamp(100px, 15vh, 160px);
}

.rydt-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.rydt-hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 80% 50%, rgba(245, 197, 24, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(245, 197, 24, 0.04) 0%, transparent 70%),
    var(--bg-primary);
  z-index: 0;
}

.rydt-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245,197,24,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,197,24,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
}

.rydt-hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.rydt-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: var(--yellow-light);
  border: 1px solid rgba(245,197,24,0.25);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--yellow-primary);
  letter-spacing: 0.5px;
  margin-bottom: 28px;
  animation: fadeInDown 0.7s ease 0.1s both;
}

.rydt-hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--yellow-primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

.rydt-hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  animation: fadeInUp 0.7s ease 0.2s both;
}

.rydt-hero h1 .gradient-text {
  background: var(--gradient-yellow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.rydt-hero p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.8;
  animation: fadeInUp 0.7s ease 0.3s both;
}

.rydt-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 60px;
  animation: fadeInUp 0.7s ease 0.4s both;
}

.rydt-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  animation: fadeInUp 0.7s ease 0.5s both;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--yellow-primary);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.hero-divider {
  width: 1px;
  height: 40px;
  background: var(--border-subtle);
  align-self: center;
}

/* === Hero Visual === */
.rydt-hero-visual {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 45%;
  z-index: 1;
  animation: floatUp 1s ease 0.5s both;
}

.hero-plane-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  padding: 32px;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-card), var(--shadow-yellow);
  animation: float 6s ease-in-out infinite;
}

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

.hero-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.hero-card-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-card-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #22C55E;
}

.hero-card-status .dot {
  width: 6px;
  height: 6px;
  background: #22C55E;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-route {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.hero-route-point {
  flex: 1;
}

.hero-route-code {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--text-primary);
}

.hero-route-city {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.hero-route-line {
  flex: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.hero-route-plane {
  color: var(--yellow-primary);
  font-size: 1.5rem;
}

.hero-route-track {
  width: 100%;
  height: 2px;
  background: var(--border-subtle);
  border-radius: 2px;
  position: relative;
}

.hero-route-track::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 65%;
  height: 100%;
  background: var(--gradient-yellow);
  border-radius: 2px;
}

.hero-card-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.hero-info-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 12px;
}

.hero-info-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.hero-info-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* === Floating Mini Cards === */
.floating-card {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  backdrop-filter: blur(20px);
  animation: float 5s ease-in-out infinite;
}

.floating-card-1 {
  top: 20%;
  right: 45%;
  animation-delay: -1.5s;
}

.floating-card-2 {
  bottom: 25%;
  right: 42%;
  animation-delay: -3s;
}

/* === Services Section === */
.rydt-services {
  background: var(--bg-secondary);
  position: relative;
}

.service-card {
  padding: 32px;
  cursor: default;
}

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--yellow-light);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow-primary);
  margin-bottom: 20px;
  transition: all var(--transition-smooth);
}

.service-icon svg { width: 26px; height: 26px; }

.service-card:hover .service-icon {
  background: var(--gradient-yellow);
  border-color: var(--yellow-primary);
  color: #0A0A0F;
  transform: scale(1.05);
}

.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
}

/* === Countries Section === */
.rydt-countries { background: var(--bg-primary); }

.country-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}

.country-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  cursor: default;
  transition: all var(--transition-smooth);
}

.country-item:hover {
  border-color: var(--yellow-primary);
  background: var(--yellow-light);
  transform: translateY(-2px);
}

.country-flag {
  font-size: 1.6rem;
  line-height: 1;
}

.country-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* === How It Works Section === */
.rydt-how-it-works { background: var(--bg-secondary); }

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

.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: var(--border-subtle);
  z-index: 0;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 20px;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 64px;
  height: 64px;
  background: var(--bg-card);
  border: 2px solid var(--border-glass);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--yellow-primary);
  margin-bottom: 20px;
  transition: all var(--transition-smooth);
  position: relative;
}

.step-item:hover .step-number {
  background: var(--gradient-yellow);
  color: #0A0A0F;
  border-color: var(--yellow-primary);
  box-shadow: var(--shadow-yellow);
}

.step-icon {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 24px;
  height: 24px;
  background: var(--yellow-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0A0A0F;
}

.step-icon svg { width: 12px; height: 12px; }

.step-item h4 { margin-bottom: 8px; font-size: 1rem; }
.step-item p { font-size: 0.85rem; }

/* === Why Choose Us === */
.rydt-why { background: var(--bg-primary); }

.why-card {
  padding: 28px;
  display: flex;
  gap: 20px;
}

.why-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--yellow-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow-primary);
}

.why-icon svg { width: 22px; height: 22px; }

/* === Tracking Preview === */
.tracking-box {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  padding: 40px;
  max-width: 560px;
  margin: 0 auto;
}

.tracking-input-group {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.rydt-input {
  width: 100%;
  padding: 10px 14px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: var(--font-primary);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
  outline: none;
}

.rydt-input::placeholder { color: var(--text-muted); }

.rydt-input:focus {
  border-color: var(--yellow-primary);
  box-shadow: 0 0 0 3px var(--yellow-glow);
  background: var(--bg-card);
}

.rydt-select {
  width: 100%;
  padding: 10px 14px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: var(--font-primary);
  font-size: 0.95rem;
  cursor: pointer;
  outline: none;
  transition: all var(--transition-fast);
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B6B80' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
}

.rydt-select:focus {
  border-color: var(--yellow-primary);
  box-shadow: 0 0 0 3px var(--yellow-glow);
}

.rydt-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 5px;
  letter-spacing: 0.3px;
}

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

/* === Testimonials / CTA Section === */
.rydt-cta {
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.rydt-cta-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

/* === Footer === */
.rydt-footer {
  background: #070709;
  border-top: 1px solid var(--border-subtle);
  padding: 80px 0 32px;
  position: relative;
  overflow: hidden;
  z-index: 2;
}

/* Footer content should never depend on AOS state to be readable. */
.rydt-footer [data-aos] {
  opacity: 1 !important;
  transform: none !important;
}

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

.footer-brand p {
  font-size: 0.9rem;
  margin: 16px 0 24px;
  max-width: 320px;
  color: rgba(255,255,255,0.7);
}

.footer-heading {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 24px;
}

.footer-links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition-fast);
}

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

.footer-contact-links li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}
.footer-contact-links svg {
  color: var(--yellow-primary);
  flex-shrink: 0;
  margin-top: 2px;
  width: 18px !important;
  height: 18px !important;
  min-width: 18px;
  max-width: 18px !important;
  flex: 0 0 18px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.social-btn {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition-fast);
}

.social-btn:hover {
  border-color: var(--yellow-primary);
  background: var(--yellow-light);
  color: var(--yellow-primary);
  transform: translateY(-2px);
}

.social-btn svg {
  width: 18px !important;
  height: 18px !important;
  max-width: 18px !important;
  flex: 0 0 18px;
}

/* Newsletter Form */
.newsletter-form {
  display: flex;
  position: relative;
}
.newsletter-form input {
  width: 100%;
  padding: 14px 48px 14px 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  color: #FFFFFF;
  outline: none;
  font-size: 0.9rem;
  transition: all 0.25s ease;
}
.newsletter-form input:focus {
  border-color: var(--yellow-primary);
  background: var(--bg-card);
}
.newsletter-form button {
  position: absolute;
  right: 6px;
  top: 6px;
  bottom: 6px;
  width: 36px;
  background: var(--gradient-yellow);
  border: none;
  border-radius: var(--radius-sm);
  color: #0A0A0F;
  font-weight: 900;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}
.newsletter-form button:hover { transform: scale(1.05); }

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

.footer-legal-links {
  display: flex;
  gap: 24px;
}
.footer-legal-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
}
.footer-legal-links a:hover { color: var(--yellow-primary); }

#rydt-back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px; /* Default desktop position */
  z-index: 9989;
  width: 48px;
  height: 48px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 50%;
  color: var(--yellow-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
#rydt-back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
#rydt-back-to-top:hover {
  background: var(--yellow-light);
  border-color: var(--yellow-primary);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(245,197,24,0.25);
}

/* === WhatsApp Float === */
.rydt-whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9990;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}
.rydt-whatsapp-float.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.rydt-whatsapp-float:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
}

@media (max-width: 768px) {
  /* Back-to-top stays above the mobile sticky CTA bar (72px height) */
  #rydt-back-to-top { right: 20px; bottom: 100px; width: 44px; height: 44px; }
  /* WhatsApp float hidden on mobile via navbar.css */
}

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  /* Hero layout stacks on tablet */
  .rydt-hero-visual { display: none; }
  .rydt-hero-content { max-width: 100%; }
}
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-brand { grid-column: 1; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 12px; }
  /* At 640px, back-to-top must avoid the sticky mobile CTA */
  #rydt-back-to-top { bottom: 100px; right: 20px; }
}

/* === Page Hero (Inner Pages) === */
.page-hero {
  padding: 140px 0 80px;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
  text-align: left;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 50% 0%, rgba(245,197,24,0.06) 0%, transparent 70%);
}

@media (max-width: 768px) {
  .page-hero { padding: 100px 0 60px; }
  .page-hero h1 { font-size: 2.4rem; }
}

/* === Booking Page — No-Hero Compact Layout === */
.booking-page-section {
  padding: 40px 0 48px;
}
.booking-page-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* === Booking Form Styles === */
.booking-wrapper {
  max-width: 960px;
  margin: 0 auto;
  padding: 0;
}

.booking-progress {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 24px;
}

.booking-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  position: relative;
}

.booking-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 16px;
  left: 50%;
  right: -50%;
  height: 2px;
  background: var(--border-subtle);
  z-index: 0;
}

.booking-step.completed:not(:last-child)::after {
  background: var(--gradient-yellow);
}

.step-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--text-muted);
  z-index: 1;
  transition: all var(--transition-smooth);
}

.booking-step.active .step-dot {
  background: var(--gradient-yellow);
  border-color: var(--yellow-primary);
  color: #0A0A0F;
  box-shadow: 0 0 16px rgba(245,197,24,0.35);
}

.booking-step.completed .step-dot {
  background: var(--gradient-yellow);
  border-color: var(--yellow-primary);
  color: #0A0A0F;
}

.step-label {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 6px;
  text-align: center;
  white-space: nowrap;
}

.booking-step.active .step-label { color: var(--text-primary); }

.booking-form-panel {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  padding: 28px 32px;
}

.form-panel-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.form-panel-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
}

/* === File Upload === */
.file-upload-zone {
  border: 2px dashed var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-smooth);
}

.file-upload-zone:hover {
  border-color: var(--yellow-primary);
  background: var(--yellow-light);
}

.file-upload-icon {
  width: 40px;
  height: 40px;
  background: var(--yellow-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow-primary);
  margin: 0 auto 10px;
}

/* === Tracking Status Timeline === */
.tracking-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 24px;
}

.timeline-item {
  display: flex;
  gap: 20px;
  position: relative;
  padding-bottom: 28px;
}

.timeline-item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 40px;
  width: 2px;
  bottom: 0;
  background: var(--border-subtle);
}

.timeline-item.completed::before {
  background: var(--gradient-yellow);
}

.timeline-dot {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.timeline-item.completed .timeline-dot {
  background: var(--gradient-yellow);
  border-color: var(--yellow-primary);
  color: #0A0A0F;
}

.timeline-item.current .timeline-dot {
  background: var(--bg-card);
  border-color: var(--yellow-primary);
  box-shadow: 0 0 16px rgba(245,197,24,0.3);
}

.timeline-content { flex: 1; padding-top: 8px; }
.timeline-title { font-weight: 600; font-size: 0.95rem; }
.timeline-date { font-size: 0.78rem; color: var(--text-muted); margin-top: 4px; }

/* === Admin Dashboard === */
.rydt-admin-wrap {
  font-family: var(--font-primary);
  background: #0A0A0F;
  min-height: 100vh;
  color: var(--text-primary);
}

/* === Animations === */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes floatUp {
  from { opacity: 0; transform: translateY(-50%) translateX(20px); }
  to { opacity: 1; transform: translateY(-50%) translateX(0); }
}

@keyframes shimmer {
  from { background-position: -200% 0; }
  to { background-position: 200% 0; }
}

/* === Responsive Components === */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .rydt-hero-visual { display: none; }
  .rydt-hero-content { max-width: 100%; }
}

@media (max-width: 768px) {
  .rydt-hero h1 { font-size: 2.2rem; }
  .booking-form-panel { padding: 18px; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .booking-progress { gap: 0; }
  .step-label { display: none; }
  .steps-grid::before { display: none; }
  .form-actions { flex-direction: column; gap: 10px; }
  .form-actions .btn { width: 100%; justify-content: center; }
  .booking-page-section { padding: 24px 0 32px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .rydt-stats-band { padding: 40px 0; }
  .stat-item { padding: 16px; }
  .stat-number { font-size: 2rem; }
}

/* === Scroll Progress Bar === */
#rydt-scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  z-index: 99999;
  background: var(--gradient-yellow);
  transition: width 0.1s linear;
  pointer-events: none;
}
