/* ==========================================================================
   Pawkers Standalone Launching Soon Stylesheet
   Neo-Brutalist Theme matching Pawkers Design Language
   ========================================================================== */

:root {
  --bg-main: #fbf8f1;
  --text-main: #000000;
  --color-primary: #FF90E8;   /* Gumroad Pink */
  --color-secondary: #FFC900; /* Vibrant Yellow */
  --color-accent: #23A094;    /* Vivid Teal */
  --color-purple: #a855f7;    /* Vibrant Purple */
  --color-dark: #111111;
  --color-white: #ffffff;
  --color-gray-bg: #f8fafc;
  --color-border: #000000;
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;
  
  --shadow-main: 4px 4px 0px 0px #000000;
  --shadow-sm: 2px 2px 0px 0px #000000;
  --shadow-lg: 6px 6px 0px 0px #000000;
  --radius-card: 24px;
  --radius-btn: 14px;
  --radius-pill: 9999px;
}

/* Base resets & typography */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-main);
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  line-height: 1.5;
  overflow-x: hidden;
  max-width: 100vw;
  -webkit-font-smoothing: antialiased;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 900;
  color: var(--text-main);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Common Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 3px solid var(--color-border);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
}

.badge-yellow { background-color: var(--color-secondary); color: #000; }
.badge-pink { background-color: var(--color-primary); color: #000; }
.badge-teal { background-color: var(--color-accent); color: #fff; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  border: 3px solid var(--color-border);
  border-radius: var(--radius-btn);
  transition: all 0.15s ease;
  user-select: none;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--text-main);
}

.btn-secondary {
  background-color: var(--color-secondary);
  color: var(--text-main);
}

.btn-accent {
  background-color: var(--color-accent);
  color: #fff;
}

.btn-black {
  background-color: var(--color-dark);
  color: #fff;
}

.btn-shadow {
  box-shadow: var(--shadow-main);
}

.btn-shadow:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-lg);
}

.btn-shadow:active, .btn:active {
  transform: translate(2px, 2px);
  box-shadow: 0px 0px 0px 0px #000;
}

.btn-sm {
  padding: 8px 14px;
  font-size: 0.85rem;
  border-width: 2px;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.15rem;
  border-width: 4px;
}

.full-width {
  width: 100%;
}

.btn-outline {
  background-color: var(--color-white);
  color: var(--text-main);
  box-shadow: var(--shadow-sm);
}

/* Announcement Bar */
.announcement-bar {
  background-color: var(--color-secondary);
  border-bottom: 4px solid var(--color-border);
  padding: 10px 20px;
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.9rem;
}

.announcement-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.announcement-btn {
  background: #000;
  color: #fff;
  border: 2px solid #000;
  border-radius: var(--radius-pill);
  padding: 4px 12px;
  font-size: 0.8rem;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.1s ease;
}

.announcement-btn:hover {
  transform: scale(1.05);
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(251, 248, 241, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 4px solid var(--color-border);
  padding: 14px 0;
}

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

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-main);
}

.brand-emblem-img {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease;
}

.brand-logo:hover .brand-emblem-img {
  transform: scale(1.08) rotate(-4deg);
}

.logo-text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.brand-wordmark-img {
  height: 30px;
  width: auto;
  display: block;
}

.footer-wordmark {
  filter: brightness(0) invert(1);
}

.brand-tag {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  background-color: var(--color-secondary);
  padding: 2px 6px;
  border: 2px solid #000;
  border-radius: 4px;
  display: inline-block;
}

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

.nav-links a {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--text-main);
  text-decoration: none;
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--color-primary);
  transition: width 0.2s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-toggle {
  display: none;
  background: white;
  border: 3px solid #000;
  border-radius: 10px;
  padding: 6px;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 60px 20px 80px 20px;
  overflow: hidden;
}

.floating-shape {
  position: absolute;
  border: 4px solid #000;
  box-shadow: var(--shadow-main);
  z-index: 1;
  pointer-events: none;
}

.shape-1 {
  top: 40px;
  left: 3%;
  width: 70px;
  height: 70px;
  background-color: var(--color-primary);
  border-radius: 20px;
  transform: rotate(15deg);
}

.shape-2 {
  top: 120px;
  right: 4%;
  width: 60px;
  height: 60px;
  background-color: var(--color-secondary);
  border-radius: 50%;
}

.shape-3 {
  bottom: 60px;
  left: 5%;
  width: 50px;
  height: 50px;
  background-color: var(--color-accent);
  border-radius: 14px;
  transform: rotate(-10deg);
}

.hero-container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.hero-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--color-secondary);
  border: 4px solid #000;
  box-shadow: var(--shadow-main);
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 0.9rem;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.animate-bounce {
  animation: bounce 2s infinite;
}

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

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.highlight-pink {
  position: relative;
  display: inline-block;
}
.highlight-pink::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 18px;
  background-color: var(--color-primary);
  z-index: -1;
  transform: rotate(-1deg);
}

.highlight-yellow {
  position: relative;
  display: inline-block;
}
.highlight-yellow::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 18px;
  background-color: var(--color-secondary);
  z-index: -1;
  transform: rotate(1deg);
}

.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 30px;
  line-height: 1.6;
}

.trust-metrics {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.metric-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: white;
  border: 3px solid #000;
  box-shadow: var(--shadow-sm);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.9rem;
}

.pill-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}
.pill-icon.yellow { background-color: var(--color-secondary); }
.pill-icon.pink { background-color: var(--color-primary); }
.pill-icon.teal { background-color: var(--color-accent); color: #fff; }

/* Interactive Map Playground Card */
.map-playground-card {
  background: white;
  border: 4px solid #000;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  margin-top: 20px;
}

.playground-header {
  background-color: #fff;
  border-bottom: 4px solid #000;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.demo-remark {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  color: #666;
  margin-top: 2px;
}

.live-dot {
  width: 12px;
  height: 12px;
  background-color: #22c55e;
  border: 2px solid #000;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.3);
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.playground-header h3 {
  font-size: 1.3rem;
}

/* Filter Bar */
.filter-bar {
  background-color: #fbf8f1;
  border-bottom: 4px solid #000;
  padding: 16px 24px;
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr 1.2fr;
  gap: 16px;
  align-items: flex-end;
}

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

.filter-group label {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 0.8rem;
  text-transform: uppercase;
  color: #444;
  display: flex;
  align-items: center;
  gap: 6px;
}

.input-with-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.input-with-icon input, select {
  width: 100%;
  padding: 10px 14px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  background-color: white;
  border: 3px solid #000;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  outline: none;
}

.input-with-icon input:focus, select:focus {
  border-color: var(--color-primary);
}

.icon-btn {
  position: absolute;
  right: 8px;
  background: var(--color-secondary);
  border: 2px solid #000;
  border-radius: 8px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.radius-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.radius-badge {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 0.85rem;
  background: var(--color-primary);
  border: 2px solid #000;
  padding: 2px 8px;
  border-radius: 6px;
}

input[type="range"] {
  accent-color: #000;
  height: 8px;
  border-radius: 4px;
  cursor: pointer;
}

/* Map & Sidebar Grid */
.map-grid-wrapper {
  display: grid;
  grid-template-columns: 360px 1fr;
  height: 540px;
}

/* Sidebar */
.sitter-sidebar {
  border-right: 4px solid #000;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.sidebar-header {
  padding: 14px 18px;
  background-color: var(--color-gray-bg);
  border-bottom: 3px solid #000;
}

.sidebar-header h4 {
  font-size: 1.1rem;
}

.sub-text {
  font-size: 0.75rem;
  font-weight: 700;
  color: #666;
}

.sitter-list {
  flex: 1;
  overflow-y: auto;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Sitter Card Item */
.sitter-card-item {
  background-color: white;
  border: 3px solid #000;
  border-radius: 16px;
  padding: 14px;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}

.sitter-card-item:hover, .sitter-card-item.active {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-main);
  border-color: #000;
  background-color: #fffdf5;
}

.sitter-card-item.active {
  border-width: 4px;
  background-color: #fff5fb;
}

.sitter-top {
  display: flex;
  gap: 12px;
  align-items: center;
}

.sitter-avatar {
  width: 48px;
  height: 48px;
  border: 3px solid #000;
  border-radius: 12px;
  background-color: var(--color-secondary);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sitter-meta h5 {
  font-size: 1.05rem;
  line-height: 1.2;
}

.sitter-tagline {
  font-size: 0.75rem;
  font-weight: 700;
  color: #555;
}

.sitter-badges {
  display: flex;
  gap: 6px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.mini-badge {
  font-size: 0.7rem;
  font-weight: 900;
  padding: 2px 6px;
  border: 2px solid #000;
  border-radius: 6px;
  background-color: var(--color-gray-bg);
}

.mini-badge.rate { background-color: var(--color-primary); }
.mini-badge.dist { background-color: var(--color-secondary); }

/* Leaflet Map */
.map-container {
  position: relative;
  width: 100%;
  height: 100%;
}

#leafletMap {
  width: 100%;
  height: 100%;
  z-index: 10;
}

.map-overlay-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 500;
  background: white;
  border: 3px solid #000;
  border-radius: 8px;
  padding: 4px 10px;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 0.75rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Custom Leaflet Map Pins */
.custom-paw-pin {
  background-color: var(--color-secondary);
  border: 3px solid #000;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.custom-paw-pin:hover {
  transform: scale(1.2);
}

.custom-paw-pin.vet-pin {
  background-color: var(--color-accent);
  color: white;
}

/* Leaflet Popup Styling */
.leaflet-popup-content-wrapper {
  background: white !important;
  border: 4px solid #000 !important;
  border-radius: 18px !important;
  box-shadow: var(--shadow-main) !important;
  padding: 0 !important;
  font-family: var(--font-body) !important;
}

.leaflet-popup-tip {
  background: #000 !important;
}

.map-popup-card {
  padding: 14px;
  max-width: 240px;
}

.map-popup-card h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.map-popup-card p {
  font-size: 0.8rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 8px;
}

.map-popup-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  padding-top: 8px;
  border-top: 2px solid #000;
}

.map-popup-price {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 0.9rem;
  background-color: var(--color-secondary);
  padding: 2px 6px;
  border: 2px solid #000;
  border-radius: 6px;
}

/* Marquee Section */
.marquee-section {
  background-color: var(--color-secondary);
  border-y: 4px solid #000;
  border-top: 4px solid #000;
  border-bottom: 4px solid #000;
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: flex;
  width: 200%;
  animation: scrollMarquee 25s linear infinite;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-right: 24px;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.1rem;
  text-transform: uppercase;
}

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

/* Features Section */
.features-section {
  padding: 90px 0;
  background-color: var(--bg-main);
}

.section-title {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px auto;
}

.section-title h2 {
  font-size: 2.8rem;
  margin: 16px 0;
}

.section-title p {
  font-size: 1.15rem;
  font-weight: 700;
  color: #444;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}

.feature-card {
  background: white;
  border: 4px solid #000;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-main);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border: 3px solid #000;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.feature-pink .feature-icon { background-color: var(--color-primary); }
.feature-yellow .feature-icon { background-color: var(--color-secondary); }
.feature-teal .feature-icon { background-color: var(--color-accent); color: #fff; }
.feature-purple .feature-icon { background-color: var(--color-purple); color: #fff; }
.feature-white .feature-icon { background-color: var(--bg-main); }

.feature-tag {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 0.75rem;
  color: #666;
  letter-spacing: 0.08em;
}

.feature-card h3 {
  font-size: 1.6rem;
}

.feature-card p {
  font-weight: 700;
  color: #333;
  line-height: 1.6;
}

.feature-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 2px dashed #ccc;
}

.feature-checklist li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.9rem;
}

.feature-checklist li i {
  color: #16a34a;
  width: 18px;
  height: 18px;
}

/* About Us Section */
.about-section {
  padding: 90px 0;
  background-color: rgba(255, 144, 232, 0.1);
  border-y: 4px solid #000;
  border-top: 4px solid #000;
  border-bottom: 4px solid #000;
}

.about-card-wrapper {
  background: white;
  border: 4px solid #000;
  border-radius: 32px;
  box-shadow: var(--shadow-lg);
  padding: 50px;
}

.about-header {
  margin-bottom: 40px;
}

.about-header h2 {
  font-size: 3rem;
  margin: 14px 0;
}

.about-lead {
  font-size: 1.3rem;
  font-weight: 800;
  color: #111;
  line-height: 1.5;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: start;
}

.about-content p {
  font-size: 1.05rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 18px;
  line-height: 1.7;
}

.pillars-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 30px;
}

.pillar-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background-color: var(--bg-main);
  border: 3px solid #000;
  border-radius: 18px;
  padding: 16px;
  box-shadow: var(--shadow-sm);
}

.pillar-icon {
  font-size: 1.8rem;
}

.pillar-item h4 {
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.pillar-item p {
  font-size: 0.9rem !important;
  margin-bottom: 0 !important;
  color: #444;
}

.about-sidebar-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.stats-box {
  background-color: var(--color-secondary);
  border: 4px solid #000;
  border-radius: 24px;
  box-shadow: var(--shadow-main);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 2.8rem;
  line-height: 1;
}

.stat-label {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;

}

.stat-divider {
  height: 3px;
  background-color: #000;
  width: 60%;
  margin: 0 auto;
}

.quote-box {
  background-color: var(--color-primary);
  border: 4px solid #000;
  border-radius: 24px;
  box-shadow: var(--shadow-main);
  padding: 28px;
  transform: rotate(-1deg);
  position: relative;
}

.quote-mark {
  font-family: var(--font-heading);
  font-size: 4rem;
  line-height: 0.5;
  color: #000;
}

.quote-text {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.4rem;
  line-height: 1.3;
  margin: 12px 0;
}

.quote-author {
  font-weight: 900;
  font-size: 0.9rem;
  text-transform: uppercase;
}

/* Waitlist Section */
.waitlist-section {
  padding: 90px 0;
  background-color: var(--bg-main);
}

.waitlist-card {
  background-color: var(--color-primary);
  border: 4px solid #000;
  border-radius: 36px;
  box-shadow: var(--shadow-lg);
  padding: 60px 40px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.waitlist-badge {
  display: inline-block;
  background: var(--color-secondary);
  border: 3px solid #000;
  border-radius: var(--radius-pill);
  padding: 6px 18px;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 0.85rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
}

.waitlist-card h2 {
  font-size: 3rem;
  margin-bottom: 16px;
}

.waitlist-card p {
  font-size: 1.2rem;
  font-weight: 700;
  max-width: 650px;
  margin: 0 auto 36px auto;
}

.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 750px;
  margin: 0 auto;
}

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

.form-group input, .form-group select {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  background: white;
  border: 3px solid #000;
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  outline: none;
}

.waitlist-privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  margin-top: 24px;
}

/* FAQ Section */
.faq-section {
  padding: 90px 0;
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: white;
  border: 4px solid #000;
  border-radius: 20px;
  box-shadow: var(--shadow-main);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.2rem;
  text-align: left;
  cursor: pointer;
}

.faq-icon {
  transition: transform 0.2s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
  background-color: var(--bg-main);
  border-top: 0px solid #000;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 20px 24px;
  border-top: 3px solid #000;
}

.faq-answer p {
  font-weight: 700;
  color: #333;
  line-height: 1.6;
}

/* Footer */
.footer {
  background-color: var(--color-dark);
  color: white;
  padding: 60px 0 30px 0;
  border-top: 4px solid #000;
}

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

.footer-brand .brand-name { color: white; }
.footer-brand p {
  font-weight: 700;
  color: #ccc;
  margin-top: 16px;
  max-width: 360px;
}

.footer-links h4 {
  color: var(--color-secondary);
  font-size: 1.2rem;
  margin-bottom: 18px;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: #ddd;
  text-decoration: none;
  font-weight: 700;
  transition: color 0.15s ease;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #333;
  font-weight: 700;
  font-size: 0.85rem;
  color: #888;
}

/* Modal */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: white;
  border: 4px solid #000;
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
  padding: 36px;
  width: 100%;
  max-width: 460px;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--bg-main);
  border: 2px solid #000;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.modal-header {
  text-align: center;
  margin-bottom: 24px;
}

.modal-icon {
  font-size: 2.5rem;
  margin-bottom: 8px;
}

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

.modal-form label {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 0.85rem;
  margin-bottom: 4px;
  display: block;
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background: white;
  border: 4px solid #000;
  border-radius: 16px;
  padding: 14px 20px;
  box-shadow: var(--shadow-main);
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-weight: 900;
  animation: slideIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast.success { background-color: #dcfce7; }

@keyframes slideIn {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .hero-title { font-size: 2.8rem; }
  .filter-bar { grid-template-columns: 1fr 1fr; }
  .map-grid-wrapper {
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 600px;
  }
  .sitter-sidebar {
    height: 240px;
    max-height: 240px;
    border-right: none;
    border-bottom: 4px solid #000;
    flex-shrink: 0;
  }
  .map-container {
    height: 380px;
    min-height: 380px;
    position: relative;
    width: 100%;
    flex-shrink: 0;
  }
  #leafletMap {
    width: 100%;
    height: 100%;
    min-height: 380px;
  }
  .about-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-container {
    padding: 0 10px;
  }
  .nav-actions {
    gap: 6px;
  }
  .nav-actions .btn {
    padding: 8px 12px;
    font-size: 0.8rem;
    border-width: 2px;
    box-shadow: 2px 2px 0px 0px #000;
  }
  .brand-logo {
    gap: 6px;
  }
  .brand-emblem-img {
    width: 38px;
    height: 38px;
  }
  .brand-wordmark-img {
    height: 24px;
  }
  .brand-tag {
    font-size: 0.55rem;
    padding: 1px 4px;
    border-width: 1.5px;
  }
  .nav-links { display: none; }
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    border-bottom: 4px solid #000;
    padding: 20px;
    box-shadow: var(--shadow-main);
  }
  .mobile-toggle { display: block; padding: 4px 6px; }
  .hero-title { font-size: 2.2rem; }
  .filter-bar { grid-template-columns: 1fr; }
  .about-card-wrapper { padding: 24px; }
  .waitlist-card { padding: 30px 20px; }
  .map-grid-wrapper {
    height: auto;
    min-height: 560px;
  }
  .sitter-sidebar {
    height: 210px;
    max-height: 210px;
  }
  .map-container {
    height: 350px;
    min-height: 350px;
  }
  #leafletMap {
    height: 350px;
    min-height: 350px;
  }
}

@media (max-width: 480px) {
  .nav-actions .btn {
    padding: 6px 8px;
    font-size: 0.75rem;
    letter-spacing: -0.02em;
  }
}
