/* =============================================
   ABOUT SECTION
   ============================================= */

.about-section {
  background: #0f172a;
  color: #f1f5f9;
  padding: 80px 0 60px;
  position: relative;
  z-index: 10;
}

/* Hide scroll hint when parking modal or list panel is open */
/* (consolidated into the .scroll-hint block below) */
.scroll-hint {
  position: absolute;
  bottom: 16px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: fit-content;
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 10px 22px;
  background: rgba(15, 23, 42, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 99px;
  cursor: pointer;
  animation: bounceHint 2s infinite;
  transition: opacity 0.4s, background 0.2s;
  white-space: nowrap;
}

/* Hide when modal or list is active */
.map-section:has(.parking-modal-custom.active) .scroll-hint,
.map-section:has(#parkingList[style*="display: flex"]) .scroll-hint,
.map-section:has(#parkingList[style*="display:flex"]) .scroll-hint,
.map-section:has(#parkingList[style*="display: block"]) .scroll-hint,
.map-section.hint-hidden .scroll-hint,
.map-section.modal-open .scroll-hint {
  display: none !important;
}

.scroll-hint:hover {
  background: rgba(59, 130, 246, 0.85);
}

.scroll-hint span {
  font-size: 0.72rem;
  color: #e2e8f0;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}

.scroll-hint i {
  font-size: 1.1rem;
  color: #60a5fa;
}

@keyframes bounceHint {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

/* Hero intro */
.about-hero {
  text-align: center;
  padding: 0 1.5rem 60px;
  max-width: 700px;
  margin: 0 auto;
}

.about-hero .about-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59,130,246,0.15);
  border: 1px solid rgba(59,130,246,0.35);
  color: #60a5fa;
  border-radius: 99px;
  padding: 6px 18px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.about-hero h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: #f8fafc;
  margin-bottom: 20px;
}

.about-hero h2 span {
  color: #3b82f6;
}

.about-hero p {
  font-size: 1.05rem;
  color: #94a3b8;
  line-height: 1.7;
  margin: 0;
}

/* Feature cards row */
.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto 70px;
  padding: 0 1.5rem;
}

.feature-card {
  background: #1e293b;
  border: 1px solid #334155;
  border-radius: 20px;
  padding: 32px 28px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
  border-color: #3b82f6;
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(59,130,246,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon i {
  font-size: 1.6rem;
  color: #3b82f6;
}

.feature-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.9rem;
  color: #94a3b8;
  line-height: 1.65;
  margin: 0;
}

/* How it works */
.about-how {
  max-width: 1100px;
  margin: 0 auto 70px;
  padding: 0 1.5rem;
}

.about-how h3 {
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #f8fafc;
  margin-bottom: 48px;
}

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

.step-item {
  text-align: center;
  position: relative;
}

.step-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #3b82f6;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 0 0 6px rgba(59,130,246,0.18);
}

.step-item h5 {
  font-size: 1rem;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 8px;
}

.step-item p {
  font-size: 0.875rem;
  color: #94a3b8;
  line-height: 1.6;
  margin: 0;
}

/* Visual showcase strip */
.about-visual {
  max-width: 1100px;
  margin: 0 auto 70px;
  padding: 0 1.5rem;
}

.about-visual h3 {
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #f8fafc;
  margin-bottom: 36px;
}

.visual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}

.visual-card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background: #1e293b;
  border: 1px solid #334155;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  padding: 28px 20px;
}

.visual-card.large {
  grid-row: span 2;
  min-height: 380px;
}

.visual-card i {
  font-size: 3rem;
  color: #3b82f6;
  opacity: 0.8;
}

.visual-card-label {
  font-size: 0.85rem;
  color: #64748b;
  font-weight: 500;
  text-align: center;
}

.visual-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: #e2e8f0;
  text-align: center;
}

/* Replace visual-card content with real images once you have them */
.visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  border-radius: 20px;
}

/* Location highlight */
.about-location {
  max-width: 700px;
  margin: 0 auto 60px;
  padding: 0 1.5rem;
  text-align: center;
}

.location-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.3);
  color: #22c55e;
  border-radius: 99px;
  padding: 10px 24px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.about-location h3 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: #f8fafc;
  margin-bottom: 14px;
}

.about-location p {
  color: #94a3b8;
  font-size: 0.975rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

.about-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #3b82f6;
  color: #fff;
  border: none;
  border-radius: 99px;
  padding: 14px 36px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 24px rgba(59,130,246,0.35);
}

.about-cta-btn:hover {
  background: #60a5fa;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(59,130,246,0.45);
  color: #fff;
}

/* Divider */
.about-divider {
  width: 60px;
  height: 3px;
  background: #3b82f6;
  border-radius: 99px;
  margin: 0 auto 48px;
}

/* Mobile responsiveness */
@media (max-width: 640px) {
  .about-section { padding: 60px 0 40px; }
  .about-features { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .visual-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .visual-card.large {
    grid-row: span 1;
    min-height: 200px;
  }
}

@media (max-width: 380px) {
  .steps-grid { grid-template-columns: 1fr; }
}

/* =============================================
   FOR PARKING OWNERS CTA SECTION
   ============================================= */

.owners-cta-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-top: 1px solid #1e293b;
  padding: 80px 1.5rem;
  text-align: center;
}

.owners-cta-inner {
  max-width: 680px;
  margin: 0 auto;
}

.owners-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(251,191,36,0.12);
  border: 1px solid rgba(251,191,36,0.35);
  color: #fbbf24;
  border-radius: 99px;
  padding: 6px 18px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.owners-cta-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: #f8fafc;
  line-height: 1.2;
  margin-bottom: 18px;
}

.owners-cta-section h2 span {
  color: #fbbf24;
}

.owners-cta-section p {
  font-size: 1rem;
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 32px;
}

.owners-cta-perks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 24px;
  margin-bottom: 36px;
}

.owners-perk {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #e2e8f0;
}

.owners-perk i {
  color: #22c55e;
  font-size: 1rem;
}

.owners-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fbbf24;
  color: #0f172a;
  border-radius: 99px;
  padding: 14px 36px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 24px rgba(251,191,36,0.3);
}

.owners-cta-btn:hover {
  background: #fcd34d;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(251,191,36,0.4);
  color: #0f172a;
}

@media (max-width: 640px) {
  .owners-cta-section { padding: 60px 1.5rem; }
  .owners-cta-perks { gap: 10px 16px; }
}
