/* 
  Bilingual Airbnb SEO Landing Page stylesheet
  Clean, premium, responsive layout.
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@400;600;700;800&display=swap');

:root {
  /* Color Palette */
  --bg-primary: #f8fafc;
  --bg-secondary: #ffffff;
  --text-main: #0f172a;
  --text-muted: #475569;
  --text-light: #94a3b8;
  
  --brand-primary: #e11d48; /* Premium warm red/rose Airbnb vibe */
  --brand-primary-hover: #be123c;
  --brand-accent: #c2410c; /* Warm terracotta/clay */
  --brand-green: #0f766e; /* Forest green for trust, reviews */
  --brand-green-light: #ccfbf1;
  
  --border-color: #e2e8f0;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.15), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  
  /* Fonts */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Layout */
  --container-width: 1200px;
  --header-height: 80px;
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--bg-primary);
}

body {
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s ease;
}

/* Base Components */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 0.875rem 1.75rem;
  border-radius: 9999px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  font-size: 1rem;
  box-shadow: var(--shadow-sm);
}

.btn-primary {
  background-color: var(--brand-primary);
  color: white;
}

.btn-primary:hover {
  background-color: var(--brand-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: var(--bg-secondary);
  color: var(--text-main);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background-color: var(--bg-primary);
  border-color: var(--text-muted);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
}

/* Header */
.site-header {
  height: var(--header-height);
  background-color: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--brand-primary);
}

.logo svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.lang-switch {
  display: flex;
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  padding: 0.25rem;
  border-radius: 9999px;
}

.lang-btn {
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  border: none;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  background: transparent;
  color: var(--text-muted);
  transition: all 0.2s ease;
}

.lang-btn.active {
  background-color: var(--bg-secondary);
  color: var(--brand-primary);
  box-shadow: var(--shadow-sm);
}

/* Hero Section */
.hero {
  position: relative;
  padding: 5rem 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.45) 100%);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: var(--border-color);
  max-width: 600px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-badge-container {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
  box-shadow: var(--shadow-xl);
}

.hero-stars {
  color: #fbbf24;
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.hero-badge-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.hero-badge-text {
  color: var(--border-color);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

/* Feature Section */
.section {
  padding: 5rem 0;
}

.section-bg {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem;
}

.section-header h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

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

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-primary);
}

.card-icon {
  width: 48px;
  height: 48px;
  background-color: #ffe4e6;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-primary);
  margin-bottom: 1.5rem;
}

.card-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

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

/* Split Section (Ideal for workers, long term) */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.split-reverse .split-content {
  order: 2;
}

.split-reverse .split-visual {
  order: 1;
}

.split-content h2 {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.split-content p {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.split-features {
  margin-bottom: 2rem;
  list-style: none;
}

.split-features li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.split-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--brand-primary);
  font-weight: 700;
  font-size: 1.1rem;
}

.split-visual {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
}

.split-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-visual-overlay {
  position: absolute;
  top: 1.5rem;
  bottom: auto;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  padding: 1.25rem;
  border-radius: 1rem;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Trust Section (Airbnb Reviews) */
.trust-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.trust-rating-big {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--brand-green);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.review-card {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  padding: 1.5rem;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.review-avatar {
  width: 44px;
  height: 44px;
  background-color: var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--text-muted);
}

.review-meta h4 {
  font-size: 1rem;
  margin-bottom: 0.15rem;
}

.review-stars {
  color: #fbbf24;
  font-size: 0.875rem;
}

.review-content {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-style: italic;
}

/* FAQ Accordion */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-main);
  outline: none;
}

.faq-answer {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-muted);
  display: none;
}

.faq-item.active {
  border-color: var(--brand-primary);
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-icon {
  font-size: 1.25rem;
  transition: transform 0.2s ease;
  font-weight: bold;
}

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

/* Final CTA Section */
.final-cta {
  background: linear-gradient(135deg, var(--text-main) 0%, #1e293b 100%);
  color: white;
  text-align: center;
  padding: 6rem 0;
  border-radius: 2rem;
  margin-bottom: 5rem;
  position: relative;
  overflow: hidden;
}

.final-cta-content {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.final-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.final-cta p {
  font-size: 1.15rem;
  color: var(--border-color);
  margin-bottom: 2rem;
}

/* Footer */
.site-footer {
  background-color: var(--text-main);
  color: var(--bg-primary);
  padding: 4rem 0 7rem; /* Space at bottom for sticky mobile CTA */
  border-top: 1px solid #1e293b;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-brand h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: white;
}

.footer-brand p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.footer-links h4 {
  font-size: 1.1rem;
  color: white;
  margin-bottom: 1.25rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--text-light);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: white;
  padding-left: 4px;
}

.footer-disclaimer {
  grid-column: 1 / -1;
  border-top: 1px solid #1e293b;
  padding-top: 2rem;
  font-size: 0.8rem;
  color: var(--text-light);
  text-align: center;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.5rem;
}

/* Sticky Mobile CTA */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border-color);
  padding: 0.85rem 1rem;
  z-index: 99;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.05);
}

.sticky-mobile-cta .btn {
  width: 100%;
}

/* Chatbot Floating Widget */
.chatbot-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  font-family: var(--font-body);
}

.chatbot-trigger {
  width: 60px;
  height: 60px;
  background-color: var(--brand-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  outline: none;
}

.chatbot-trigger:hover {
  transform: scale(1.1) rotate(5deg);
  background-color: var(--brand-primary-hover);
}

.chatbot-trigger svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.chatbot-window {
  display: none;
  flex-direction: column;
  width: 380px;
  height: 500px;
  background-color: var(--bg-secondary);
  border-radius: 1.25rem;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-color);
  overflow: hidden;
  position: absolute;
  bottom: 0;
  right: 0;
  transform-origin: bottom right;
  animation: chatbot-open-anim 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes chatbot-open-anim {
  from {
    opacity: 0;
    transform: scale(0.85);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.chatbot-header {
  background-color: var(--text-main);
  color: white;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chatbot-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.chatbot-avatar {
  width: 36px;
  height: 36px;
  background-color: var(--brand-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.chatbot-title h4 {
  font-size: 0.95rem;
  font-weight: 600;
}

.chatbot-status {
  font-size: 0.75rem;
  color: #10b981;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.chatbot-status::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: #10b981;
  border-radius: 50%;
}

.chatbot-close {
  background: none;
  border: none;
  color: var(--border-color);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
}

.chatbot-close:hover {
  color: white;
}

.chatbot-messages {
  flex: 1;
  padding: 1.25rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background-color: #f1f5f9;
}

.chat-bubble {
  max-width: 85%;
  padding: 0.75rem 1rem;
  border-radius: 1rem;
  font-size: 0.875rem;
  line-height: 1.4;
  word-wrap: break-word;
}

.chat-bubble-assistant {
  background-color: white;
  color: var(--text-main);
  align-self: flex-start;
  border-bottom-left-radius: 0.25rem;
  box-shadow: var(--shadow-sm);
}

.chat-bubble-user {
  background-color: var(--brand-primary);
  color: white;
  align-self: flex-end;
  border-bottom-right-radius: 0.25rem;
}

.chatbot-quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
}

.quick-reply-btn {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  font-size: 0.75rem;
  padding: 0.4rem 0.8rem;
  border-radius: 9999px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.2s ease;
}

.quick-reply-btn:hover {
  background-color: var(--brand-primary-hover);
  color: white;
  border-color: var(--brand-primary-hover);
}

.chatbot-input-container {
  display: flex;
  border-top: 1px solid var(--border-color);
  padding: 0.75rem 1.25rem;
  background-color: var(--bg-secondary);
  align-items: center;
}

.chatbot-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 0.875rem;
  font-family: inherit;
  resize: none;
  padding: 0.25rem 0;
}

.chatbot-send {
  background: none;
  border: none;
  color: var(--brand-primary);
  cursor: pointer;
  padding: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.chatbot-send:hover {
  transform: scale(1.1);
  color: var(--brand-primary-hover);
}

.chatbot-send svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Chatbot link styles */
.chatbot-cta-btn {
  display: inline-block;
  margin-top: 0.5rem;
  background-color: var(--brand-primary);
  color: white !important;
  font-weight: 600;
  padding: 0.4rem 0.8rem;
  border-radius: 9999px;
  text-align: center;
  font-size: 0.8rem;
}

/* SEO content styles for auxiliary landing pages */
.seo-content-section {
  padding: 4rem 0 6rem;
  background-color: var(--bg-secondary);
}

.seo-content-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.seo-content-wrapper h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--text-main);
  text-align: center;
}

.seo-rich-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.seo-rich-content p {
  margin-bottom: 1.5rem;
}

.seo-rich-content h2 {
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
  color: var(--text-main);
}

.seo-cta-box {
  margin-top: 3rem;
  padding: 2.5rem;
  background-color: var(--bg-primary);
  border-radius: 1.25rem;
  border: 1px solid var(--border-color);
  text-align: center;
}

.seo-cta-box h3 {
  margin-bottom: 1rem;
  font-size: 1.35rem;
}

.seo-cta-box p {
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .grid-3, .review-grid {
    grid-template-columns: 1fr 1fr;
  }
  .split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .split-reverse .split-content {
    order: 1;
  }
  .split-reverse .split-visual {
    order: 2;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 767px) {
  :root {
    --header-height: 70px;
  }
  .nav-cta-btn {
    display: none !important; /* Hide header CTA on mobile */
  }
  .hero-content h1 {
    font-size: 2.25rem;
  }
  .grid-3, .review-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .sticky-mobile-cta {
    display: block; /* Show bottom sticky CTA on mobile */
  }
  .chatbot-window {
    width: calc(100vw - 48px);
    height: 420px;
  }
  .section {
    padding: 3.5rem 0;
  }
  .final-cta {
    padding: 4rem 1rem;
    border-radius: 1rem;
  }
  .final-cta h2 {
    font-size: 2rem;
  }
}

/* Location & Distances Section */
.location-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: stretch;
  margin-top: 2rem;
}

.location-map {
  width: 100%;
  height: 100%;
  min-height: 400px;
  background-color: var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.location-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

.location-note {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.distance-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.distance-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.distance-icon {
  font-size: 1.5rem;
  background-color: var(--bg-primary);
  padding: 0.5rem;
  border-radius: 8px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.distance-details {
  display: flex;
  flex-direction: column;
}

.distance-details strong {
  font-size: 1.05rem;
  color: var(--text-main);
  font-weight: 600;
}

.distance-details span {
  font-size: 0.9rem;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .location-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .location-map {
    min-height: 300px;
  }
}

/* Nearby Cards Carousel Container */
.nearby-grid {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 1.5rem;
  padding: 1rem 0.5rem 2rem;
  margin-top: 2rem;
  scrollbar-width: thin; /* Firefox */
  -webkit-overflow-scrolling: touch; /* Smooth inertia on iOS */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.nearby-grid::-webkit-scrollbar {
  height: 8px;
}

.nearby-grid::-webkit-scrollbar-track {
  background: var(--bg-primary);
  border-radius: 99px;
}

.nearby-grid::-webkit-scrollbar-thumb {
  background: var(--text-light);
  border-radius: 99px;
}

.nearby-card {
  flex: 0 0 calc(33.333% - 1rem); /* 3 cards visible on desktop */
  scroll-snap-align: start;
  background-color: var(--bg-secondary);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--border-color);
}

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

.nearby-card img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 992px) {
  .nearby-card {
    flex: 0 0 calc(50% - 0.75rem); /* 2 cards on tablet */
  }
}

@media (max-width: 600px) {
  .nearby-card {
    flex: 0 0 calc(85% - 0.75rem); /* 1.2 cards on mobile (iOS/Android swipe) */
  }
  .nearby-grid::-webkit-scrollbar {
    display: none; /* Hide scrollbars on mobile for a clean native touch scroll look */
  }
  .nearby-grid {
    scrollbar-width: none; /* Firefox hide */
  }
}


