/* =============================================
   PANNEAU - Stylesheet
   ============================================= */

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

:root {
  --primary: #000000;
  --primary-light: #1a1a1a;
  --primary-dark: #000000;
  --accent: #000000;
  --bg: #ffffff;
  --bg-card: #f5f5f5;
  --bg-card-hover: #ebebeb;
  --text: #000000;
  --text-muted: #666666;
  --border: rgba(0,0,0,0.1);
  --radius: 2px;
  --radius-sm: 2px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-sm {
  max-width: 720px;
}

.hidden { display: none !important; }

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  background: transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  text-decoration: none;
  z-index: 1001;
}

.logo-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #000000;
  letter-spacing: 5px;
  transition: color 0.4s, opacity 0.3s;
}

.logo-link:hover .logo-text { opacity: 0.7; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 2px;
  transition: color 0.3s;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}

.nav-links a:hover {
  color: var(--text);
  border-bottom-color: rgba(0,0,0,0.3);
}

/* Language button */
.lang-btn {
  background: transparent;
  border: 1.5px solid #000;
  color: #000;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 5px 12px;
  cursor: pointer;
  transition: all 0.3s;
  font-family: inherit;
}

.lang-btn:hover {
  background: #000;
  color: #fff;
}

/* Mobile right group */
.mobile-right {
  display: none;
  align-items: center;
  gap: 12px;
}

/* Mobile menu button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: #000000;
  border-radius: 0;
  transition: all 0.3s;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* =============================================
   MOBILE DRAWER - ANIMATED SIDEBAR
   ============================================= */
.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  visibility: hidden;
  pointer-events: none;
}

.mobile-drawer.open {
  visibility: visible;
  pointer-events: auto;
}

.drawer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-drawer.open .drawer-overlay {
  opacity: 1;
}

.drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 300px;
  background: #ffffff;
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  touch-action: pan-y;
  -webkit-overflow-scrolling: touch;
}

.mobile-drawer.open .drawer-panel {
  transform: translateX(0);
}

/* Drawer header */
.drawer-header {
  padding: 16px 24px 8px;
  border-bottom: none;
  text-align: center;
}

.drawer-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 6px;
  color: var(--text);
  display: block;
  margin-bottom: 16px;
}

.drawer-car-svg {
  display: block;
  width: 140px;
  height: 40px;
  margin: 0 auto;
  opacity: 0.15;
}

/* Drawer links */
.drawer-nav {
  flex: 1;
  padding: 60px 0 16px;
  overflow-y: auto;
}

.drawer-link {
  display: block;
  color: var(--text);
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  transition: color 0.3s, background 0.3s, transform 0.4s;
  opacity: 0;
  transform: translateX(30px);
}

.mobile-drawer.open .drawer-link {
  opacity: 1;
  transform: translateX(0);
}

.mobile-drawer.open .drawer-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-drawer.open .drawer-link:nth-child(2) { transition-delay: 0.15s; }
.mobile-drawer.open .drawer-link:nth-child(3) { transition-delay: 0.2s; }
.mobile-drawer.open .drawer-link:nth-child(4) { transition-delay: 0.25s; }
.mobile-drawer.open .drawer-link:nth-child(5) { transition-delay: 0.3s; }

.drawer-link:first-child {
  border-top: none;
}

.drawer-link:hover {
  color: var(--text-muted);
  background: var(--bg-card);
}

/* Drawer footer */
.drawer-footer {
  padding: 20px 24px 32px;
  border-top: 1px solid var(--border);
}

.drawer-social {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  justify-content: center;
}

.drawer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--text);
  text-decoration: none;
  transition: all 0.3s;
}

.drawer-social a:hover {
  background: var(--bg-card);
  border-color: rgba(0,0,0,0.2);
}

.drawer-social a svg {
  width: 16px;
  height: 16px;
}


/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 0;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  font-family: inherit;
}

.btn-primary {
  background: #000;
  color: #fff;
  border: 1.5px solid #000;
}

.btn-primary:hover {
  background: #fff;
  color: #000;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #000;
  border: 1.5px solid #000;
}

.btn-outline:hover {
  background: #000;
  color: #fff;
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
  text-align: center;
  padding: 16px;
  font-size: 0.85rem;
}

/* =============================================
   HERO (white bg with canvas)
   ============================================= */
.hero {
  position: relative;
  height: 70vh;
  padding-top: 56px;
  overflow: hidden;
  background: #ffffff;
}

.hero-animation-wrapper {
  width: 100%;
  height: 100%;
}

#parkingCanvas {
  width: 100%;
  height: 100%;
  display: block;
}

/* =============================================
   MARQUEE
   ============================================= */
.marquee-section {
  overflow: hidden;
  background: #000;
  padding: 20px 0;
  border-bottom: none;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 0;
  animation: marqueeScroll 30s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.marquee-item {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 6px;
  padding: 0;
}

.marquee-car {
  display: inline-block;
  width: clamp(60px, 8vw, 100px);
  height: clamp(20px, 3vw, 35px);
  opacity: 0.12;
  vertical-align: middle;
  padding: 0 10px;
  flex-shrink: 0;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =============================================
   HERO TEXT SECTION
   ============================================= */
.hero-text-section {
  padding: 64px 0 48px;
  background: var(--bg);
}

.hero-text-content {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.hero-tag {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 20px;
  padding: 8px 20px;
  border: 1.5px solid #000;
  border-radius: 0;
  background: transparent;
}

.hero-sub {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =============================================
   ENTRY ANIMATIONS
   ============================================= */
.anim-fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.anim-delay-1 { animation-delay: 0.15s; }
.anim-delay-2 { animation-delay: 0.3s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =============================================
   SCROLL REVEAL
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* =============================================
   SECTIONS
   ============================================= */
.section {
  padding: 80px 0;
}

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

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 600;
  text-align: center;
  margin-bottom: 12px;
  color: var(--text);
  letter-spacing: 1px;
}

.section-sub {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 40px;
  font-size: 1rem;
}

/* =============================================
   STEPS
   ============================================= */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(0,0,0,0.12);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.step-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text);
  opacity: 0.12;
  margin-bottom: 16px;
}

.step-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text);
}

.step-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* =============================================
   AD FORMATS
   ============================================= */
.formats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.format-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.format-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(0,0,0,0.15);
  transform: translateY(-4px);
}

.format-icon {
  font-size: 2rem;
  color: var(--text);
  opacity: 0.4;
  margin-bottom: 14px;
}

.format-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}

.format-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* =============================================
   LOCATIONS
   ============================================= */
.location-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
  margin-top: 32px;
}

.location-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #000;
}

.location-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  border-radius: 50px;
  border: 1px solid rgba(34, 197, 94, 0.25);
  margin-bottom: 16px;
  animation: pulseBadge 2s ease-in-out infinite;
}

.location-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #16a34a;
  border-radius: 50%;
  animation: pulseDot 1.5s ease-in-out infinite;
}

@keyframes pulseBadge {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.2); }
  50% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
}

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

.location-info h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.location-info > p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.location-stats {
  display: flex;
  gap: 40px;
}

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

.stat-value {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
}

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

.expanding-note {
  text-align: center;
  margin-top: 24px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.expanding-note a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
}

.expanding-note a:hover {
  text-decoration: underline;
}

/* =============================================
   FORMS
   ============================================= */
.forms-wrapper {
  background: var(--bg);
}

.form-section {
  padding: 60px 0;
}

.form-section + .form-section {
  border-top: 1px solid var(--border);
}

.form-header {
  text-align: center;
  margin-bottom: 36px;
}

.form-header h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.form-header p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.form-badge {
  display: inline-block;
  padding: 5px 14px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
  border: none;
  background: #000;
  color: #fff;
}

.owner-badge,
.advertiser-badge {
  background: #000;
  color: #fff;
  border: none;
}

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

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

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

.form-group label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: var(--text);
  font-size: 0.9rem;
  font-family: inherit;
  transition: all 0.3s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #000;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.06);
  background: #fff;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(0,0,0,0.25);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-group select option {
  background: #fff;
  color: var(--text);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem !important;
  color: var(--text) !important;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.checkbox-label:hover {
  background: var(--bg-card);
  border-color: rgba(0,0,0,0.15);
}

.checkbox-label input[type="checkbox"] {
  accent-color: #000;
  width: 16px;
  height: 16px;
}

.success-msg {
  text-align: center;
  padding: 48px 24px;
  color: #000;
  font-size: 1.1rem;
  font-weight: 500;
  animation: fadeUp 0.5s ease forwards;
  background: var(--bg-card);
  border: 1.5px solid #000;
  border-radius: 0;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 32px;
}

.footer-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 4px;
  color: var(--text);
}

.footer-tagline {
  color: var(--text-muted);
  font-size: 0.82rem;
  margin-top: 4px;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s;
}

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

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

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.3s;
}

.footer-social a:hover {
  color: var(--text);
  border-color: rgba(0,0,0,0.2);
  background: var(--bg);
}

.footer-social a svg {
  width: 15px;
  height: 15px;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-bottom a {
  color: var(--text);
  text-decoration: none;
}

/* =============================================
   RESPONSIVE - TABLET
   ============================================= */
@media (max-width: 900px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .formats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    flex-direction: column;
    gap: 20px;
  }

  .footer-right {
    align-items: flex-start;
  }

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

/* =============================================
   RESPONSIVE - MOBILE
   ============================================= */
@media (max-width: 640px) {
  .mobile-menu-btn {
    display: flex;
  }

  .mobile-right {
    display: flex;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 70svh;
    padding-top: 60px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .hero-cta .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .section {
    padding: 56px 0;
  }

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

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

  .location-card {
    padding: 24px 20px;
  }

  .location-stats {
    flex-direction: column;
    gap: 16px;
  }

  .footer-links {
    flex-direction: column;
    gap: 12px;
  }

  .checkbox-group {
    flex-direction: column;
  }

  .marquee-item {
    font-size: 1rem;
    letter-spacing: 4px;
    padding: 0 12px;
  }

  .marquee-car {
    width: 50px;
    height: 18px;
  }
}

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

  .step-card, .format-card {
    padding: 24px 18px;
  }
}
