/* ===========================
   PARKEE CUSTOM THEME
   Green Theme: Emerald (#10B981), Teal (#14B8A6), Dark Green (#064E3B)
=========================== */

:root {
  --parkee-primary: #10B981;
  --parkee-secondary: #14B8A6;
  --parkee-dark: #064E3B;
  --parkee-light: #F0FDF4;
  --parkee-success: #22C55E;
  --parkee-warning: #84CC16;
  --parkee-gradient: linear-gradient(135deg, #10B981 0%, #34D399 100%);
  --parkee-gradient-blue: linear-gradient(135deg, #14B8A6 0%, #2DD4BF 100%);
  --parkee-gradient-mixed: linear-gradient(135deg, #10B981 0%, #14B8A6 100%);
}

/* Override primary colors */
.main-btn {
  background: var(--parkee-gradient);
  border: none;
}

.main-btn.border-btn {
  border: 2px solid var(--parkee-primary);
  background: transparent;
  color: var(--parkee-dark);
}

.main-btn.border-btn:hover {
  background: var(--parkee-gradient);
  color: #fff;
  border-color: transparent;
}

a:hover {
  color: var(--parkee-primary);
}

.scroll-top {
  background: var(--parkee-gradient);
}

.scroll-top:hover {
  background: var(--parkee-primary);
  transform: translateY(-3px);
}

/* Parkee Custom Animations */
@keyframes float-car {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

@keyframes pulse-parking {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.7;
  }
}

@keyframes slide-in-right {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slide-in-left {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes bounce-pin {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.floating-animation {
  animation: float-car 3s ease-in-out infinite;
}

.pulse-animation {
  animation: pulse-parking 2s ease-in-out infinite;
}

/* Glassmorphism Effect */
.glass-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

/* Feature Cards with Hover Effects */
.single-feature {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.single-feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--parkee-gradient);
  opacity: 0.05;
  transition: all 0.3s ease;
  z-index: -1;
}

.single-feature:hover::before {
  left: 0;
}

.single-feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Icon Styles with Gradients */
.icon.color-1,
.icon-style.color-1 {
  background: var(--parkee-gradient);
}

.icon.color-2,
.icon-style.color-2 {
  background: var(--parkee-gradient-blue);
}

.icon.color-3,
.icon-style.color-3 {
  background: var(--parkee-gradient-mixed);
}

/* Section Backgrounds */
.hero-section {
  background:
    url('../img/hero/map-bg.svg') center center no-repeat,
    linear-gradient(135deg, #F0FDF4 0%, #ECFDF5 100%);
  background-size: cover, cover;
  position: relative;
  overflow: hidden;
  min-height: 850px;
  /* Increased height */
  display: flex;
  align-items: center;
  padding: 100px 0;
}

.hero-section::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  top: -200px;
  right: -100px;
  animation: pulse-parking 8s ease-in-out infinite;
}

.hero-section::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  bottom: -150px;
  left: -50px;
  animation: pulse-parking 10s ease-in-out infinite 1s;
}

.hero-img {
  position: relative;
  z-index: 2;
  text-align: right;
}

/* Ensure hero image blends well if it has a white background, 
   though ideally it should be transparent. Adding a filter just in case 
   to help blend edges or add a "unique" look */
.hero-img img {
  max-width: 100%;
  height: auto;
  /* Drop shadow to make it pop */
  filter: drop-shadow(0 20px 40px rgba(16, 185, 129, 0.2));
  /* Floating animation is already applied via parkee-animations.js/css classes if prevalent, 
     but let's reinforce the animation class usage in HTML */
  animation: float-car 6s ease-in-out infinite;
  border-radius: 20px;
  /* Soften corners if it's a square image */
}

/* Feature Section */
.feature-section {
  background: #2D3436;
  /* Dark Asphalt Color */
  position: relative;
  overflow: hidden;
  padding: 140px 0;
}

/* Road Texture Effect */
.feature-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 20px 20px;
  background-position: 0 0, 10px 10px;
  opacity: 0.3;
}

/* Road Lines (Dashed White) */
.feature-section::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 8px;
  background: repeating-linear-gradient(90deg,
      #fff,
      #fff 40px,
      transparent 40px,
      transparent 80px);
  opacity: 0.1;
  transform: translateY(-50%);
  pointer-events: none;
}

.parking-lot-grid {
  position: relative;
  z-index: 2;
}

/* Parking Bay Design */
.single-feature.parking-bay {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 4px solid #10B981;
  /* Parking Line Yellow */
  border-right: 4px solid #10B981;
  border-radius: 0;
  padding: 40px 30px;
  margin-bottom: 30px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.single-feature.parking-bay:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.4);
}

/* Smart Sensor LED */
.sensor-status {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ff4757;
  /* Red (Occupied) */
  box-shadow: 0 0 10px #ff4757;
  transition: all 0.3s ease;
}

.single-feature.parking-bay:hover .sensor-status {
  background: #2ed573;
  /* Green (Available) */
  box-shadow: 0 0 15px #2ed573;
}

.single-feature.parking-bay .icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: white;
  margin-bottom: 25px;
  background: var(--parkee-gradient);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.single-feature.parking-bay h3 {
  color: white;
  font-size: 22px;
  margin-bottom: 15px;
}

.single-feature.parking-bay p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
}

/* Section Title Overrides for Dark Section */
.feature-section .section-title h1 {
  color: white;
}

.feature-section .section-title p {
  color: rgba(255, 255, 255, 0.6);
}

/* Slot Number decoration */
.slot-number {
  position: absolute;
  bottom: 10px;
  right: 15px;
  font-family: 'Sen', sans-serif;
  font-weight: 800;
  font-size: 24px;
  color: rgba(255, 255, 255, 0.05);
  user-select: none;
}

.single-feature.parking-bay:hover .slot-number {
  color: rgba(255, 255, 255, 0.1);
}

/* High-Tech Benefits "Safety Hub" Redesign */
.benefits-section {
  background: #ffffff !important;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

/* Radar Pulse & Orbital Rings */
.benefits-section::before {
  content: '';
  position: absolute;
  top: 55%;
  left: 50%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  z-index: 1;
}

.benefit-hub-container {
  position: relative;
  z-index: 5;
  margin-top: 60px;
}

/* Central Image with Scanner Effect */
.central-hub-image {
  position: relative;
  text-align: center;
  z-index: 10;
  margin: 40px 0;
}

.central-hub-image::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  border: 2px dashed rgba(16, 185, 129, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: rotate-radar 20s linear infinite;
}

.central-hub-image::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 140%;
  height: 140%;
  border: 1px solid rgba(16, 185, 129, 0.05);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.central-hub-image img {
  max-width: 110%;
  height: auto;
  filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.15));
  z-index: 10;
  position: relative;
  animation: float-hub 6s ease-in-out infinite;
  border-radius: 40px;
}

/* Floating Benefit Pods - Refined */
.benefit-pod {
  background: white;
  padding: 30px;
  border-radius: 28px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 25px;
  backdrop-filter: blur(5px);
}

.benefit-pod:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 30px 60px rgba(16, 185, 129, 0.15);
  border-color: var(--parkee-primary);
}

.pod-icon {
  width: 65px;
  height: 65px;
  background: #f0fdf4;
  color: var(--parkee-primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  flex-shrink: 0;
  transition: all 0.3s ease;
  box-shadow: inset 0 0 15px rgba(16, 185, 129, 0.05);
}

.benefit-pod:hover .pod-icon {
  background: var(--parkee-primary);
  color: white;
  transform: rotateY(180deg);
}

.pod-content h5 {
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 800;
  color: #1e272e;
}

.pod-content p {
  font-size: 15px;
  color: #57606f;
  line-height: 1.6;
  margin: 0;
}

/* Section Title Polish */
.benefits-section .section-title h1 {
  background: var(--parkee-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Tags Refinement */
.hub-tag {
  display: inline-block;
  background: rgba(16, 185, 129, 0.08);
  color: var(--parkee-primary);
  padding: 10px 25px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 30px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid rgba(16, 185, 129, 0.15);
}

.owner-pod .pod-icon {
  background: #eff6ff;
  color: var(--parkee-secondary);
}

.owner-pod:hover {
  box-shadow: 0 30px 60px rgba(59, 130, 246, 0.15);
  border-color: var(--parkee-secondary);
}

.owner-pod:hover .pod-icon {
  background: var(--parkee-secondary);
}

/* Alignment Grid */
.benefits-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Animations */
@keyframes rotate-radar {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes float-hub {

  0%,
  100% {
    transform: scale(1.1) translateY(0);
  }

  50% {
    transform: scale(1.1) translateY(-15px);
  }
}

@media (max-width: 1200px) {
  .central-hub-image img {
    transform: scale(1);
  }

  @keyframes float-hub {

    0%,
    100% {
      transform: scale(1) translateY(0);
    }

    50% {
      transform: scale(1) translateY(-10px);
    }
  }
}

@media (max-width: 991px) {
  .benefits-grid {
    flex-direction: column;
  }

  .benefit-column {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }

  .central-hub-image {
    order: -1;
    margin-bottom: 80px;
  }

  .central-hub-image::before,
  .central-hub-image::after {
    display: none;
  }
}

/* Statistics Section */
.stats-section {
  background: var(--parkee-gradient);
  color: white;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="white" fill-opacity="0.05"/></svg>');
  opacity: 0.3;
}

.stats-section h1,
.stats-section h2,
.stats-section h3,
.stats-section h4,
.stats-section p {
  color: white;
}

/* How It Works Section */
.how-it-works {
  position: relative;
  padding: 100px 0;
}

.step-card {
  text-align: center;
  padding: 30px 20px;
  border-radius: 15px;
  background: white;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--parkee-gradient);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  margin: 0 auto 20px;
  box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3);
}

/* Checkmark Icons for Features */
.feature-checkmark {
  color: var(--parkee-success);
  font-size: 24px;
  margin-right: 10px;
}

/* Policy Modal Styles */
.policy-section {
  background: #F8F9FA;
  padding: 80px 0;
}

.policy-card {
  background: white;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.policy-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-5px);
}

.policy-card h3 {
  color: var(--parkee-dark);
  margin-bottom: 15px;
}

.policy-icon {
  width: 80px;
  height: 80px;
  background: var(--parkee-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 36px;
}

/* Responsive Image Enhancements */
.hero-img img,
.tracking-image img,
.download-img img {
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.15));
  animation: float-car 6s ease-in-out infinite;
}

/* Badge Styles */
.badge-parkee {
  background: var(--parkee-gradient);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 15px;
}

/* Download Button Enhancements */
.download li a {
  transition: all 0.3s ease;
  border: 2px solid #e8e8e8;
}

.download li a:hover {
  border-color: var(--parkee-primary);
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(20, 184, 166, 0.1) 100%);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Footer Customization */
/* ===========================
   CREATIVE "NIGHT-DRIVE" FOOTER
   =========================== */

.footer {
  background: #0f141a !important;
  /* Deeper Night Asphalt */
  padding-top: 100px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
  border-top: 6px solid var(--parkee-primary);
}

/* Street Surface Texture */
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.05) 1px, transparent 0);
  background-size: 30px 30px;
  pointer-events: none;
  opacity: 0.3;
}

/* Green Glow on Top */
.footer::after {
  content: '';
  position: absolute;
  top: -30px;
  left: 50%;
  width: 80%;
  height: 60px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, transparent 70%);
  transform: translateX(-50%);
  pointer-events: none;
}

/* Logo Link Styling with Animation */
.logo-link {
  display: inline-block;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}

.logo-link:hover {
  transform: scale(1.15) rotateZ(5deg);
}

/* Footer Logo Image Animation */
.footer-logo {
  height: 50px;
  display: block;
  filter: brightness(0) invert(1);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo-link:hover .footer-logo {
  filter: brightness(1) invert(0) drop-shadow(0 0 12px rgba(16, 185, 129, 0.6));
  animation: logo-pop 0.6s ease;
}

@keyframes logo-pop {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

/* Footer Description Paragraph */
.footer-desc {
  line-height: 1.8;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.4s ease;
  padding: 15px;
  border-radius: 8px;
}

.footer-desc:hover {
  background: rgba(16, 185, 129, 0.15);
  color: rgba(255, 255, 255, 0.95);
  border-left: 4px solid var(--parkee-primary);
  padding-left: 20px;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
}

.footer-widget h3 {
  color: white;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Widget "Zone" Indicator */
.footer-widget h3::before {
  content: 'ZONE';
  font-size: 9px;
  background: var(--parkee-primary);
  color: white;
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 0;
  font-weight: 900;
}

/* Social Icons as "Smart Sensors" */
.socials {
  display: flex;
  gap: 15px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.socials li a {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.socials li a:hover {
  background: var(--parkee-primary);
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
  border-color: transparent;
}

/* Link Glow Effect */
.footer-widget .links li a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  padding-left: 0;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.footer-widget .links li a:hover {
  color: var(--parkee-primary);
  padding-left: 10px;
}

.footer-widget .links li a::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--parkee-primary);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px var(--parkee-primary);
}

.footer-widget .links li a:hover::before {
  opacity: 1;
}

.footer-widget .links li {
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

/* Contact Details Alignment */
.footer-widget .links li i {
  color: var(--parkee-primary);
  font-size: 18px;
  flex-shrink: 0;
}

/* Copyright Wrapper - Centered */
.copy-right-wrapper {
  margin-top: 60px;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  font-weight: 500;
}

.footer-link {
  color: var(--parkee-primary);
  font-weight: 700;
  transition: all 0.3s ease;
}

.footer-link:hover {
  text-decoration: underline;
  opacity: 0.8;
}

.copy-right-wrapper p {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
}

.copy-right-wrapper::after {
  content: 'SECURE INFRASTRUCTURE • 24/7 MONITORING';
  font-size: 10px;
  font-weight: 800;
  color: rgba(16, 185, 129, 0.3);
  letter-spacing: 2px;
}

@media (max-width: 991px) {
  .copy-right-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}

/* Navbar Enhancements */
.navbar {
  transition: all 0.3s ease;
}

.navbar-area {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.navbar-nav .nav-item a {
  color: var(--parkee-dark);
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
}

.navbar-nav .nav-item a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--parkee-gradient);
  transition: all 0.3s ease;
}

.navbar-nav .nav-item a:hover::after,
.navbar-nav .nav-item a.active::after {
  width: 100%;
}

/* Preloader Color */
.preloader .loader .ytp-spinner-circle {
  border-color: var(--parkee-primary) var(--parkee-secondary) #ddd;
}

/* Smooth Scroll Enhancement */
html {
  scroll-behavior: smooth;
}

/* Parking Spot Indicator Animation */
@keyframes spot-glow {

  0%,
  100% {
    box-shadow: 0 0 5px rgba(16, 185, 129, 0.5);
  }

  50% {
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.8);
  }
}

/* ===========================
   CREATIVE MODALS - "SMART PASS" STYLE
   =========================== */

.parkee-modal .modal-content {
  background: white;
  border: none;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.15);
  border-top: 10px solid var(--parkee-primary);
  position: relative;
}

/* Ticket Notch Effect - Refined */
.parkee-modal .modal-content::before,
.parkee-modal .modal-content::after {
  content: '';
  position: absolute;
  top: 165px;
  /* Aligned with perforation */
  width: 34px;
  height: 34px;
  background: #f1f2f6;
  /* Dashboard background color */
  border-radius: 50%;
  z-index: 10;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.05);
}

.parkee-modal .modal-content::before {
  left: -17px;
}

.parkee-modal .modal-content::after {
  right: -17px;
}

/* Modal Header - High Tech Bar */
.parkee-modal .modal-header {
  background: #ffffff;
  border-bottom: none;
  padding: 40px 45px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.parkee-modal .modal-title {
  font-weight: 900;
  color: #1e272e;
  font-size: 26px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.parkee-modal .modal-title i {
  color: var(--parkee-primary);
  font-size: 32px;
}

/* Perforation Line */
.modal-perforation {
  height: 2px;
  background-image: linear-gradient(to right, #ddd 50%, transparent 50%);
  background-size: 15px 1px;
  background-repeat: repeat-x;
  width: 100%;
  margin: 10px 0;
  position: relative;
  z-index: 5;
}

/* Digital Sub-Header */
.parkee-modal .modal-sub-header {
  background: #f8fbff;
  padding: 20px 45px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Sen', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: #7f8c8d;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.zone-badge {
  background: var(--parkee-primary);
  color: white;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 11px;
}

/* Modal Body - Neat & Clean */
.parkee-modal .modal-body {
  padding: 45px;
  color: #2f3640;
  line-height: 1.8;
  max-height: 65vh;
}

.policy-header {
  background: #f0fdf4;
  padding: 25px;
  border-radius: 18px;
  margin-bottom: 35px;
  border: 1px dashed rgba(16, 185, 129, 0.3);
}

.policy-header .lead {
  font-size: 16px;
  font-weight: 600;
  color: #2d3436;
  margin: 0;
}

.parkee-modal h5 {
  font-size: 18px;
  font-weight: 800;
  color: #1e272e;
  margin-top: 30px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.parkee-modal h5::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--parkee-primary);
  border-radius: 50%;
}

.parkee-modal .modal-body ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.parkee-modal .modal-body li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 15px;
}

.parkee-modal .modal-body li::after {
  content: '\eb7a';
  font-family: 'LineIcons';
  position: absolute;
  left: 0;
  color: var(--parkee-primary);
  font-weight: 900;
}

/* Security Stamp - Subtle & Premium */
.modal-stamp {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-15deg);
  font-size: 120px;
  font-weight: 950;
  color: rgba(16, 185, 129, 0.03);
  text-transform: uppercase;
  pointer-events: none;
  z-index: 0;
  user-select: none;
  white-space: nowrap;
}

/* Barcode */
.modal-barcode {
  width: 150px;
  height: 50px;
  background: repeating-linear-gradient(90deg,
      #1e272e, #1e272e 2px,
      white 2px, white 5px,
      #1e272e 5px, #1e272e 6px,
      white 6px, white 8px);
  opacity: 0.15;
  margin: 40px auto 0;
}

/* Modal Footer */
.parkee-modal .modal-footer {
  background: #ffffff;
  padding: 30px 45px;
  border-top: 1px solid #f1f2f6;
  justify-content: flex-end;
}

.parkee-modal .btn-close {
  background-color: #f1f2f6;
  border-radius: 12px;
  padding: 12px;
  transition: all 0.3s ease;
}

/* Entrance Animation */
.parkee-modal.fade .modal-dialog {
  transform: scale(0.9) translateY(30px);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.parkee-modal.show .modal-dialog {
  transform: scale(1) translateY(0);
}

@media (max-width: 768px) {

  .parkee-modal .modal-content::before,
  .parkee-modal .modal-content::after {
    display: none;
  }

  .parkee-modal .modal-header,
  .parkee-modal .modal-body,
  .parkee-modal .modal-footer {
    padding: 25px;
  }
}

.parking-indicator {
  position: relative;
  display: inline-block;
}

.parking-indicator::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--parkee-primary);
  border-radius: 50%;
  animation: pulse-parking 2s ease-in-out infinite;
  opacity: 0.3;
}

/* Responsive Adjustments */
@media (max-width: 768px) {

  .hero-section::before,
  .hero-section::after {
    width: 300px;
    height: 300px;
  }

  .step-card {
    margin-bottom: 30px;
  }

  .policy-card {
    padding: 25px;
  }
}

/* Micro-interactions */
.interactive-element {
  transition: all 0.2s ease;
}

.interactive-element:hover {
  transform: scale(1.05);
}

/* Gradient Text */
.gradient-text {
  background: var(--parkee-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Success Checkmark Animation */
@keyframes check-scale {
  0% {
    transform: scale(0);
  }

  50% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}

.check-animation {
  animation: check-scale 0.3s ease;
}

/* ===========================
   PARKEE "TWO-WAY STREET" DUAL TIMELINE
   Creative How It Works Design
   =========================== */

.how-it-works {
  background: #f1f2f6 !important;
  /* Slightly darker road base */
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}

.how-it-works::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle at 2px 2px, rgba(0, 0, 0, 0.02) 1px, transparent 0);
  background-size: 40px 40px;
  opacity: 0.5;
}

.dual-street-container {
  position: relative;
  max-width: 1100px;
  margin: 80px auto 0;
  padding: 60px 0;
}

/* Central Road Divider - Double Yellow with Dashes */
.dual-street-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 14px;
  height: 100%;
  background: #2d3436;
  /* Asphalt center */
  border-left: 2px solid #fbc531;
  border-right: 2px solid #fbc531;
  transform: translateX(-50%);
  z-index: 1;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.dual-street-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background: repeating-linear-gradient(to bottom,
      white,
      white 20px,
      transparent 20px,
      transparent 40px);
  transform: translateX(-50%);
  z-index: 2;
  opacity: 0.3;
}

.street-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 3;
}

.street-row:last-child {
  margin-bottom: 0;
}

/* Lanes */
.user-lane,
.owner-lane {
  width: 45%;
  position: relative;
}

/* Lane Content Cards */
.lane-card {
  width: 100%;
  padding: 35px;
  background: white;
  border-radius: 24px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
}

/* Decorative Parking Line inside card */
.lane-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  height: 4px;
  width: 40px;
  transition: all 0.3s ease;
}

.user-lane .lane-card::before {
  right: 0;
  background: var(--parkee-primary);
}

.owner-lane .lane-card::before {
  left: 0;
  background: var(--parkee-secondary);
}

.lane-card:hover::before {
  width: 100%;
}

.user-lane .lane-card {
  text-align: right;
  padding-right: 45px;
}

.owner-lane .lane-card {
  text-align: left;
  padding-left: 45px;
}

.lane-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

/* Step Tokens - Aligned Perfectly on the Double Line */
.lane-token {
  width: 54px;
  height: 54px;
  background: var(--parkee-gradient);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 900;
  position: absolute;
  top: 50%;
  z-index: 10;
  box-shadow:
    0 0 0 6px #2d3436,
    0 0 0 10px white,
    0 10px 20px rgba(0, 0, 0, 0.2);
  border: 2px solid white;
}

.user-lane .lane-token {
  right: -5.5%;
  /* Calculated for 1100px container to hit center */
  transform: translateY(-50%) translateX(50%);
}

.owner-lane .lane-token {
  left: -5.5%;
  transform: translateY(-50%) translateX(-50%);
  background: var(--parkee-gradient-blue);
}

/* Adjust token alignment for larger screens */
@media (min-width: 1200px) {
  .user-lane .lane-token {
    right: -60px;
  }

  .owner-lane .lane-token {
    left: -60px;
  }
}

.lane-icon {
  width: 60px;
  height: 60px;
  background: #f0fdf4;
  color: var(--parkee-primary);
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
  border: 1px solid rgba(16, 185, 129, 0.1);
  transition: all 0.3s ease;
}

.owner-lane .lane-icon {
  background: #eff6ff;
  color: var(--parkee-secondary);
  border-color: rgba(59, 130, 246, 0.1);
}

.lane-card:hover .lane-icon {
  transform: scale(1.1) rotate(5deg);
  background: var(--parkee-primary);
  color: white;
}

.owner-lane .lane-card:hover .lane-icon {
  background: var(--parkee-secondary);
}

.lane-card h4 {
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 700;
  color: #1e272e;
}

.lane-card p {
  font-size: 16px;
  color: #57606f;
  line-height: 1.7;
  margin: 0;
}

/* Street Labels Refinement */
.street-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
  position: relative;
  z-index: 5;
}

.lane-title {
  width: 45%;
  background: white;
  padding: 18px 30px;
  border-radius: 50px;
  font-weight: 800;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  font-size: 1.3rem;
  letter-spacing: 0.5px;
  border: 4px solid transparent;
}

.user-title {
  color: var(--parkee-primary);
  border-color: var(--parkee-primary);
  background: linear-gradient(white, white) padding-box, var(--parkee-gradient) border-box;
}

.owner-title {
  color: var(--parkee-secondary);
  border-color: var(--parkee-secondary);
  background: linear-gradient(white, white) padding-box, var(--parkee-gradient-blue) border-box;
}

/* Mobile Alignment */
@media (max-width: 991px) {
  .dual-street-container::before {
    left: 40px;
    width: 6px;
  }

  .dual-street-container::after {
    left: 40px;
  }

  .user-lane,
  .owner-lane {
    width: 100%;
    padding-left: 80px;
    margin-bottom: 50px;
  }

  .user-lane .lane-card,
  .owner-lane .lane-card {
    text-align: left !important;
    padding: 30px;
  }

  .user-lane .lane-token,
  .owner-lane .lane-token {
    left: 40px;
    right: auto;
    width: 48px;
    height: 48px;
    font-size: 18px;
    box-shadow: 0 0 0 4px #2d3436, 0 0 0 8px white;
  }
}

/* ===========================
   DOWNLOAD SECTION - "SMART CONTROL HUB"
   =========================== */

.download-section {
  background: #f8fbff;
  position: relative;
  overflow: hidden;
  padding: 30px 0;
}

/* Silicon Circuitry Background */
.download-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(16, 185, 129, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 185, 129, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* Animated Scanning Beam */
.download-section::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(to bottom, transparent, rgba(16, 185, 129, 0.05), transparent);
  animation: scan-vertical 8s linear infinite;
  pointer-events: none;
}

@keyframes scan-vertical {
  0% {
    top: -20%;
  }

  100% {
    top: 120%;
  }
}

.download-hub-wrapper {
  position: relative;
  z-index: 5;
}

.download-content h1 {
  font-size: 48px;
  font-weight: 950;
  color: #1e272e;
  line-height: 1.1;
  margin-bottom: 25px;
}

/* Diagnostic Marker Tags */
.hub-diagnostic {
  display: flex;
  gap: 12px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.diag-tag {
  font-size: 10px;
  font-weight: 700;
  color: #10B981;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.12) 0%, rgba(16, 185, 129, 0.05) 100%);
  padding: 6px 14px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-left: 3px solid #10B981;
  transition: all 0.3s ease;
}

.diag-tag:hover {
  background: rgba(16, 185, 129, 0.15);
  transform: translateX(2px);
}

.download li a {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #1e272e;
  color: white;
  padding: 15px 30px;
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-width: 240px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.download li a:hover {
  transform: translateY(-10px) rotate(-1deg);
  background: white;
  color: #1e272e;
  border-color: var(--parkee-primary);
  box-shadow: 0 20px 40px rgba(16, 185, 129, 0.2);
}

.download li a .icon {
  font-size: 36px;
  color: var(--parkee-primary);
}

/* Download Perspective Image */
.download-img-grid {
  position: relative;
  perspective: 1000px;
}

.floating-hub-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.hub-element {
  position: absolute;
  background: linear-gradient(135deg, #fff 0%, #f8f9ff 100%);
  padding: 14px;
  border-radius: 14px;
  box-shadow: 0 12px 35px rgba(78, 110, 241, 0.12);
  font-size: 22px;
  color: #4E6EF1;
  animation: float-soft 4s infinite ease-in-out;
  border: 1px solid rgba(78, 110, 241, 0.1);
  transition: all 0.3s ease;
}

.hub-element-1 {
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}

.hub-element-2 {
  bottom: 20%;
  left: 0%;
  animation-delay: 1s;
}

.hub-element-3 {
  top: 50%;
  right: -5%;
  animation-delay: 2s;
}

@keyframes float-soft {

  0%,
  100% {
    transform: translateY(0) rotate(0);
  }

  50% {
    transform: translateY(-15px) rotate(5deg);
  }
}

.download-img img {
  max-width: 100%;
  filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.15));
  transform: rotateY(-10deg) rotateX(5deg);
  transition: all 0.5s ease;
}

.download-img:hover img {
  transform: rotateY(0) rotateX(0) scale(1.05);
}

/* Sub-heading for sections */
.timeline-title {
  display: inline-block;
  background: var(--parkee-light);
  color: var(--parkee-primary);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 40px;
}

/* ===========================
   ENHANCED RESPONSIVE DESIGN
   Mobile-first responsive fixes for download & how-it-works
=========================== */

/* ========== EXTRA SMALL (320px - 479px) ========== */
@media (max-width: 479px) {
  /* How It Works Section */
  .how-it-works {
    padding-top: 80px !important;
    padding-bottom: 60px;
  }

  .street-label {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
  }

  .lane-title {
    width: 100% !important;
    font-size: 1rem;
    padding: 14px 20px;
  }

  .dual-street-container {
    margin: 50px auto 0;
    padding: 40px 0;
  }

  .dual-street-container::before {
    left: 30px !important;
    width: 4px !important;
    height: 100%;
  }

  .dual-street-container::after {
    left: 30px !important;
  }

  .street-row {
    margin-bottom: 60px;
    flex-direction: column;
  }

  .user-lane,
  .owner-lane {
    width: 100% !important;
    padding-left: 70px !important;
    margin-bottom: 0;
  }

  .user-lane .lane-card,
  .owner-lane .lane-card {
    padding: 24px 18px !important;
    border-radius: 16px;
  }

  .lane-icon {
    width: 50px;
    height: 50px;
    font-size: 24px;
    margin-bottom: 15px;
  }

  .lane-card h4 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .lane-card p {
    font-size: 14px;
    line-height: 1.5;
  }

  .user-lane .lane-token,
  .owner-lane .lane-token {
    left: 30px !important;
    width: 42px;
    height: 42px;
    font-size: 16px;
    box-shadow: 0 0 0 3px #2d3436, 0 0 0 7px white !important;
  }

  /* Download Section */
  .download-hub-wrapper {
    flex-direction: column;
  }

  .download-section {
    padding: 50px 0 !important;
  }

  .download-content h1 {
    font-size: 32px;
    line-height: 1.1;
    margin-bottom: 20px;
  }

  .hub-diagnostic {
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
  }

  .diag-tag {
    font-size: 10px;
    padding: 3px 10px;
  }

  .download {
    flex-direction: column;
    gap: 12px;
  }

  .download li a {
    min-width: 100%;
    padding: 12px 18px;
    font-size: 0.85rem;
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .download li a .icon {
    font-size: 28px;
  }

  .download li a .text {
    font-size: 0.8rem;
  }

  .download-img-grid {
    margin-top: 30px;
  }

  .download-img {
    max-width: 100%;
  }

  .download-img img {
    max-width: 100% !important;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
    transform: none !important;
  }

  .floating-hub-elements {
    display: none;
  }
}

/* ========== SMALL (480px - 575px) ========== */
@media (min-width: 480px) and (max-width: 575px) {
  .street-label {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 45px;
  }

  .lane-title {
    width: 100% !important;
    font-size: 1.1rem;
    padding: 16px 25px;
  }

  .user-lane,
  .owner-lane {
    width: 100% !important;
    padding-left: 75px !important;
  }

  .user-lane .lane-card,
  .owner-lane .lane-card {
    padding: 28px 20px !important;
  }

  .lane-card h4 {
    font-size: 17px;
  }

  .lane-card p {
    font-size: 14px;
  }

  .download-content h1 {
    font-size: 36px;
    margin-bottom: 22px;
  }

  .download li a {
    min-width: 100%;
    flex-direction: column;
  }

  .download li a .text {
    font-size: 0.85rem;
  }
}

/* ========== MEDIUM TABLETS (576px - 767px) ========== */
@media (min-width: 576px) and (max-width: 767px) {
  .street-label {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 50px;
  }

  .lane-title {
    width: 100% !important;
    font-size: 1.2rem;
    padding: 18px 28px;
  }

  .dual-street-container {
    margin: 60px auto 0;
    padding: 50px 0;
  }

  .dual-street-container::before {
    left: 40px;
    width: 5px;
  }

  .street-row {
    margin-bottom: 70px;
  }

  .user-lane,
  .owner-lane {
    width: 100% !important;
    padding-left: 80px !important;
    margin-bottom: 0;
  }

  .user-lane .lane-card,
  .owner-lane .lane-card {
    padding: 30px 22px !important;
  }

  .lane-icon {
    width: 55px;
    height: 55px;
    font-size: 26px;
  }

  .lane-card h4 {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .lane-card p {
    font-size: 15px;
  }

  .user-lane .lane-token,
  .owner-lane .lane-token {
    left: 40px;
    width: 50px;
    height: 50px;
    font-size: 18px;
  }

  .download-content h1 {
    font-size: 40px;
  }

  .download li a {
    min-width: auto;
    flex-direction: row;
    justify-content: flex-start;
  }

  .download-img-grid {
    text-align: center;
  }
}

/* ========== TABLETS (768px - 991px) ========== */
@media (min-width: 768px) and (max-width: 991px) {
  .street-label {
    flex-direction: row;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 55px;
  }

  .lane-title {
    width: calc(50% - 10px) !important;
    font-size: 1.15rem;
    padding: 16px 24px;
  }

  .dual-street-container {
    margin: 60px auto 0;
    padding: 50px 20px;
    max-width: 95%;
  }

  .dual-street-container::before {
    left: 50%;
    width: 6px;
  }

  .street-row {
    margin-bottom: 75px;
  }

  .user-lane,
  .owner-lane {
    width: 45% !important;
    padding-left: 0 !important;
    margin-bottom: 0;
  }

  .user-lane .lane-card,
  .owner-lane .lane-card {
    padding: 32px 24px !important;
  }

  .lane-icon {
    width: 58px;
    height: 58px;
    font-size: 27px;
  }

  .lane-card h4 {
    font-size: 19px;
  }

  .lane-card p {
    font-size: 15px;
  }

  .user-lane .lane-token {
    right: -55px;
    left: auto;
  }

  .owner-lane .lane-token {
    left: -55px;
    right: auto;
  }

  /* Download Section Tablet */
  .download-hub-wrapper {
    display: flex;
    flex-direction: row;
  }

  .download-content {
    flex: 1;
    padding-right: 30px;
  }

  .download-img-grid {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .download-content h1 {
    font-size: 42px;
  }

  .download li a {
    min-width: 220px;
    flex-direction: row;
  }

  .download li a .text {
    text-align: left;
  }
}

/* ========== SMALL DESKTOP (992px - 1199px) ========== */
@media (min-width: 992px) and (max-width: 1199px) {
  .street-label {
    margin-bottom: 55px;
  }

  .lane-title {
    font-size: 1.2rem;
    padding: 16px 26px;
  }

  .dual-street-container {
    max-width: 1000px;
    margin: 70px auto 0;
    padding: 60px 20px;
  }

  .street-row {
    margin-bottom: 80px;
  }

  .user-lane .lane-card,
  .owner-lane .lane-card {
    padding: 32px 26px !important;
  }

  .lane-card h4 {
    font-size: 19px;
  }

  .download-content h1 {
    font-size: 44px;
  }

  .download li a {
    min-width: 235px;
  }
}

/* ========== LARGE DESKTOP (1200px+) ========== */
@media (min-width: 1200px) {
  .dual-street-container {
    max-width: 1100px;
    margin: 80px auto 0;
    padding: 60px 0;
  }

  .street-row {
    margin-bottom: 80px;
  }

  .lane-title {
    font-size: 1.3rem;
  }

  .download-hub-wrapper {
    display: flex;
    flex-direction: row;
  }

  .download-content {
    flex: 1;
  }

  .download-img-grid {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .download-content h1 {
    font-size: 48px;
  }

  .download li a {
    min-width: 240px;
  }
}