:root {
  --brand-ink: #0b1320;
  --brand-accent: #fb7185;
  --brand-accent-2: #14b8a6;
  --brand-accent-3: #f59e0b;
  --brand-surface: #fff8f1;
}

body {
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  background:
    radial-gradient(1200px 700px at 95% -10%, rgba(251, 113, 133, 0.18), transparent 58%),
    radial-gradient(1000px 600px at -15% 20%, rgba(20, 184, 166, 0.16), transparent 56%),
    radial-gradient(800px 500px at 40% -15%, rgba(245, 158, 11, 0.12), transparent 52%),
    #f8fafc;
  overflow-x: hidden !important;
  /* Prevent horizontal wiggle/shift */
  width: 100% !important;
  position: relative !important;
}

*,
::before,
::after {
  box-sizing: border-box !important;
}

h1,
h2,
h3,
h4 {
  font-family: 'Fraunces', Georgia, serif;
  letter-spacing: -0.02em;
}

main {
  animation: fadeInPage 0.45s ease-out;
}

.vibrant-card {
  background: linear-gradient(180deg, #ffffff, #fff8f1);
  border: 1px solid #fde7d8;
  box-shadow: 0 12px 28px -18px rgba(14, 23, 38, 0.5);
}

.vibrant-chip {
  background: linear-gradient(135deg, rgba(251, 113, 133, 0.16), rgba(20, 184, 166, 0.16));
  border: 1px solid rgba(251, 113, 133, 0.26);
}

.hero-vivid {
  background: linear-gradient(135deg, #1e293b 0%, #4c0519 48%, #7c2d12 100%);
  position: relative;
}

.hero-vivid::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.05;
  pointer-events: none;
}

.hero-city-chip {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.26);
}

.hero-cta-btn {
  background: linear-gradient(90deg, #5eead4 0%, #34d399 100%);
  color: #0b1320;
}

.hero-cta-btn:hover {
  background: linear-gradient(90deg, #99f6e4 0%, #6ee7b7 100%);
}

.nav-postad-btn {
  background: linear-gradient(135deg, #f43f5e 0%, #fb923c 100%);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(244, 63, 94, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-postad-btn:hover {
  background: linear-gradient(135deg, #e11d48 0%, #f97316 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(244, 63, 94, 0.3);
}

/* Premium Navbar Styling */
.glass-navbar {
  background: #ffffff !important;
  border-bottom: 1px solid #e2e8f0 !important;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.nav-link-premium {
  position: relative;
  transition: color 0.3s ease;
}

.nav-link-premium::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #fb7185, #14b8a6);
  transition: width 0.3s ease;
}

.nav-link-premium:hover::after {
  width: 100%;
}

.nav-link-premium:hover {
  color: #fb7185;
}

/* Dropdown Styles */
.dropdown-content {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Desktop Hover */
@media (min-width: 768px) {
  .group:hover .dropdown-content {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0);
  }
}

/* Open state for JS/Click */
.dropdown-content.is-open {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translateY(0);
}

.dropdown-item {
  transition: all 0.2s ease;
}

.dropdown-item:hover {
  background: rgba(251, 113, 133, 0.08);
  padding-left: 1.25rem;
  color: #fb7185;
}

.mobile-menu-enter {
  animation: mobileMenuSlide 0.3s ease-out forwards;
}

@keyframes mobileMenuSlide {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

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

.section-cities-bg {
  background: linear-gradient(180deg, #ffffff 0%, #fff7ed 100%);
}

.section-categories-bg {
  background: linear-gradient(180deg, #fff1f2 0%, #ffedd5 100%);
}

.section-latest-bg {
  background: linear-gradient(180deg, #ecfeff 0%, #eff6ff 100%);
}

.section-cta-bg {
  background: linear-gradient(90deg, #0f766e 0%, #0369a1 100%);
}

.btn-call {
  background: linear-gradient(90deg, #f43f5e 0%, #fb923c 100%);
  color: #fff;
}

.btn-wa {
  background: linear-gradient(90deg, #0d9488 0%, #06b6d4 100%);
  color: #fff;
}

.btn-tg {
  background: linear-gradient(90deg, #7c3aed 0%, #d946ef 100%);
  color: #fff;
}

@keyframes fadeInPage {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

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

/* Line clamp utilities not in Tailwind v3 */
.line-clamp-2,
.line-clamp-3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-2 {
  -webkit-line-clamp: 2;
}

.line-clamp-3 {
  -webkit-line-clamp: 3;
}

/* Premium card hover elevation */
.group:hover .premium-btn {
  transform: translateY(-1px);
}

.tag-pill {
  display: inline-flex;
  align-items: center;
  font-size: 0.6875rem;
  font-weight: 500;
  color: #6b7280;
  background: #f3f4f6;
  padding: 0.125rem 0.5rem;
  border-radius: 9999px;
  line-height: 1.25;
}

@keyframes heartBeat {
  0% {
    transform: scale(1);
  }

  25% {
    transform: scale(1.15);
  }

  50% {
    transform: scale(1);
  }

  75% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

.heart-beat {
  animation: heartBeat 0.4s ease-in-out;
}

/* ── Category Cards ──────────────────────────────────────────────────────── */
.category-card {
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 24px -10px rgba(14, 23, 38, 0.18);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  text-decoration: none !important;
}

.category-card:hover {
  box-shadow: 0 14px 36px -10px rgba(14, 23, 38, 0.28);
  transform: translateY(-3px);
}

/* Rotating gradient palette for icon-only categories */
.cat-gradient-bg {
  background: linear-gradient(135deg, #f43f5e 0%, #f97316 60%, #fbbf24 100%);
}

.category-card:nth-child(2) .cat-gradient-bg {
  background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
}

.category-card:nth-child(3) .cat-gradient-bg {
  background: linear-gradient(135deg, #0d9488 0%, #0284c7 100%);
}

.category-card:nth-child(4) .cat-gradient-bg {
  background: linear-gradient(135deg, #d97706 0%, #ca8a04 100%);
}

.category-card:nth-child(5) .cat-gradient-bg {
  background: linear-gradient(135deg, #1d4ed8 0%, #7c3aed 100%);
}

.category-card:nth-child(6) .cat-gradient-bg {
  background: linear-gradient(135deg, #059669 0%, #0891b2 100%);
}

.sub-city-chip {
  display: inline-flex;
  align-items: center;
  font-size: 0.75rem;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  background: #fffbeb;
  color: #b45309;
  transition: all 0.2s ease;
}

.sub-city-chip:hover {
  background: #fef3c7;
  color: #92400e;
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

.skeleton-loading {
  background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

/* Helloscort Style Card - SUPER TIGHT */
.helloscort-style {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 0.75rem !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04) !important;
  width: 100% !important;
  display: flex !important;
  flex-direction: row !important;
  overflow: hidden !important;
  margin-bottom: 0.75rem !important;
  transition: all 0.3s ease !important;
  position: relative;
}

.helloscort-style:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06) !important;
  border-color: #fb7185 !important;
}

.helloscort-style .card-photo {
  position: relative !important;
  width: 110px !important;
  min-width: 110px !important;
  flex: none !important;
  background: #f8fafc;
}

@media (min-width: 768px) {
  .helloscort-style .card-photo {
    width: 220px !important;
    min-width: 220px !important;
    aspect-ratio: 1/1 !important;
  }
}

.helloscort-style .card-photo-inner,
.helloscort-style .card-photo-inner img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block;
}

/* Photo Badges (Bottom Right of Photo) */
.photo-badges {
  position: absolute;
  bottom: 4px;
  right: 4px;
  display: flex;
  gap: 3px;
  flex-wrap: wrap;
  z-index: 10;
}

.badge-trusted,
.badge-verified {
  font-size: 0.55rem;
  font-weight: 700;
  padding: 1px 4px;
  border-radius: 3px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  line-height: 1.2;
}

.badge-trusted {
  background: rgba(16, 185, 129, 0.9);
}

.badge-verified {
  background: rgba(59, 130, 246, 0.9);
}

.card-rating-inline {
  display: inline-flex;
  align-items: center;
  gap: 1px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  padding: 1px 4px;
  border-radius: 3px;
}

/* Photo Count Badge (Top Right) */
.photo-count-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 0.55rem;
  font-weight: 600;
  padding: 1px 5px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  gap: 2px;
  z-index: 10;
}

/* Online Badge */
.online-badge {
  position: absolute;
  top: 4px;
  left: 4px;
  background: #10b981;
  color: #fff;
  font-size: 0.5rem;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  gap: 3px;
  z-index: 10;
  animation: pulse-online 2s infinite;
}

.online-dot {
  width: 5px;
  height: 5px;
  background: #fff;
  border-radius: 50%;
  display: inline-block;
}

@keyframes pulse-online {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* Ribbons & Overlays */
.ribbon-pro {
  position: absolute;
  top: 0;
  left: 0;
  background: #0d9488 !important;
  color: #fff !important;
  font-size: 0.6rem;
  font-weight: 800;
  padding: 2px 20px;
  transform: rotate(-45deg) translate(-15px, -6px);
  z-index: 10;
  text-transform: uppercase;
}

.photo-banner {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(13, 148, 136, 0.9) !important;
  color: #fff !important;
  font-size: 0.6rem;
  font-weight: 800;
  text-align: center;
  padding: 4px 0;
  z-index: 10;
}

.photo-views {
  position: absolute;
  top: 6px;
  right: 6px;
  background: rgba(0, 0, 0, 0.5) !important;
  backdrop-filter: blur(4px);
  color: #fff !important;
  font-size: 0.55rem;
  padding: 1px 5px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  gap: 3px;
}

/* Info Section - SUPER TIGHT */
.helloscort-style .card-info {
  flex: 1 !important;
  padding: 0.6rem !important;
  display: flex !important;
  flex-direction: column !important;
  min-width: 0 !important;
}

@media (min-width: 768px) {
  .helloscort-style .card-info {
    padding: 0.75rem 1.25rem !important;
  }
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.15rem;
}

.card-title {
  font-family: 'Fraunces', serif !important;
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  color: #0d9488 !important;
  line-height: 1.2 !important;
  text-decoration: none !important;
}

@media (min-width: 768px) {
  .card-title {
    font-size: 1.4rem !important;
  }
}

.card-title:hover {
  color: #fb7185 !important;
}

.card-description {
  font-size: 0.8rem !important;
  color: #64748b !important;
  line-height: 1.4 !important;
  margin: 0.15rem 0 !important;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (min-width: 768px) {
  .card-description {
    font-size: 0.9rem !important;
  }
}

.card-location {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  color: #475569;
  margin-bottom: 0.25rem !important;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 0.5rem;
  margin-top: auto;
  border-top: 1px solid #f1f5f9;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
  max-width: 75%;
}

.card-tags .tag-pill {
  background: #f1f5f9 !important;
  border: 1px solid #e2e8f0 !important;
  color: #475569 !important;
  font-size: 0.6rem !important;
  padding: 1px 5px !important;
  font-weight: 600 !important;
  border-radius: 3px !important;
}

.card-actions {
  display: flex;
  gap: 6px;
}

.btn-round {
  width: 32px !important;
  height: 32px !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  .btn-round {
    width: 40px !important;
    height: 40px !important;
  }
}

.btn-round:hover {
  transform: translateY(-2px);
}

.btn-call {
  background: #0d9488 !important;
}

.btn-wa {
  background: #10b981 !important;
}

/* Testimonial Carousel */
.testimonial-track {
  -webkit-overflow-scrolling: touch;
}

.testimonial-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 1.25rem;
  padding: 1.5rem;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px -10px rgba(244, 63, 94, 0.15);
  border-color: #fb7185;
}

@media (max-width: 767px) {
  .testimonial-card {
    width: 280px !important;
  }
}

/* Premium City Cards - CLEAN LUXURY */
.premium-city-card {
  aspect-ratio: 5/5 !important;
  flex: 0 0 240px !important;
  /* Fixed width on mobile scroll */
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 8px 25px -10px rgba(0, 0, 0, 0.1) !important;
  border-radius: 1.75rem !important;
}

@media (min-width: 768px) {
  .premium-city-card {
    flex: none !important;
    width: 100% !important;
  }
}

.premium-city-card h3 {
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  font-family: 'Fraunces', serif !important;
  font-size: 1.75rem !important;
  letter-spacing: -0.02em !important;
}

.premium-city-card .glass-label {
  background: rgba(255, 255, 255, 0.1) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  padding: 0.4rem 1rem !important;
  border-radius: 99px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
}

.premium-city-card:hover h3 {
  transform: translateY(-5px);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Premium Sidebar Widgets */
.widget-card {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 1.25rem !important;
  overflow: hidden !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03) !important;
  margin-bottom: 1.5rem !important;
}

.widget-header {
  padding: 0.75rem 1.25rem !important;
  background: #f8fafc !important;
  border-bottom: 1px solid #e2e8f0 !important;
}

.widget-header h2,
.widget-header h3 {
  font-family: 'Fraunces', serif !important;
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  color: #0f172a !important;
  margin-bottom: 0 !important;
}

.widget-content {
  padding: 1rem !important;
}

.widget-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.widget-list-item {
  border-bottom: 1px solid #f1f5f9 !important;
  transition: all 0.2s ease;
}

.widget-list-item:last-child {
  border-bottom: none !important;
}

.widget-link {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 0.6rem 0 !important;
  color: #475569 !important;
  text-decoration: none !important;
  font-size: 0.85rem !important;
  font-weight: 500 !important;
  transition: all 0.2s ease !important;
}

.widget-link:hover {
  color: #0d9488 !important;
  transform: translateX(3px);
}

.search-widget-link {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 0.75rem 1rem !important;
  background: #f1f5f9 !important;
  border-radius: 0.75rem !important;
  color: #1e293b !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  margin-bottom: 0.5rem !important;
  transition: all 0.2s ease !important;
  border: 1px solid transparent !important;
}

.search-widget-link:hover {
  background: #ffffff !important;
  border-color: #0d9488 !important;
  color: #0d9488 !important;
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.1) !important;
}

.search-widget-icon {
  color: #94a3b8 !important;
  transition: color 0.2s ease;
}

.search-widget-link:hover .search-widget-icon {
  color: #0d9488 !important;
}

/* Breadcrumb Styling */
.breadcrumb-premium {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 1rem;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 500;
  color: #64748b;
}

.breadcrumb-item a {
  color: #64748b;
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb-item a:hover {
  color: #0d9488;
}

.breadcrumb-active {
  color: #0f172a;
  font-weight: 700;
}

.custom-scrollbar::-webkit-scrollbar {
  height: 6px;
}

.custom-scrollbar::-webkit-scrollbar-track {
  background: transparent;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  background: rgba(244, 63, 94, 0.2);
  border-radius: 10px;
}

.custom-scrollbar {
  scrollbar-width: thin;
  scrollbar-color: rgba(244, 63, 94, 0.2) transparent;
}

/* ── Image Lightbox ────────────────────────────────────────────────────────── */
#lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none; /* Controlled by .active class */
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

#lightbox-modal.active {
  display: flex !important;
  opacity: 1;
}

.lightbox-container {
  position: relative;
  width: 100%;
  max-width: 800px;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transform: scale(0.95);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

#lightbox-modal.active .lightbox-container {
  transform: scale(1);
}

#lightbox-image {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 1.5rem;
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  pointer-events: auto;
  background: #000;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  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);
  color: #fff;
  cursor: pointer;
  z-index: 10000;
  transition: all 0.3s ease;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg) scale(1.1);
}

.lightbox-close svg {
  width: 1.75rem;
  height: 1.75rem;
}

/* Mobile Bottom Navigation */
.safe-area-pb {
  padding-bottom: env(safe-area-inset-bottom, 0.5rem);
}

.mobile-cta-nav {
  width: 100vw !important;
  max-width: 100vw !important;
  min-width: 0 !important;
  overflow: hidden;
}

.mobile-cta-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  align-items: stretch;
  width: 100% !important;
  max-width: 100vw !important;
  min-width: 0 !important;
  min-height: 4.35rem;
  padding: 0.35rem max(0.35rem, calc(100vw - 390px + 0.35rem)) calc(0.35rem + env(safe-area-inset-bottom, 0)) 0.35rem;
  gap: 0.2rem;
}

.mobile-cta-item {
  display: flex !important;
  min-width: 0 !important;
  max-width: 100% !important;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.2rem;
  border-radius: 0.65rem;
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.05;
  text-align: center;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.mobile-cta-item svg {
  width: 1.35rem;
  height: 1.35rem;
  flex: none;
}

.mobile-cta-item span {
  display: block;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.mobile-cta-green {
  color: #16a34a;
}

.mobile-cta-red {
  color: #dc2626;
}

.mobile-cta-blue {
  color: #2563eb;
}

.mobile-cta-item:hover,
.mobile-cta-item:focus-visible {
  background: #f8fafc;
}

.mobile-cta-item:active {
  transform: translateY(1px);
}

.floating-contact-buttons {
  position: fixed;
  right: 1rem;
  bottom: 5.4rem;
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.floating-contact-button {
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-contact-button svg {
  width: 1.35rem;
  height: 1.35rem;
}

.floating-contact-button:hover,
.floating-contact-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.28);
}

.floating-wa {
  background: #16a34a;
}

.floating-call {
  background: #2563eb;
}

.floating-tg {
  background: #0ea5e9;
}

@media (min-width: 768px) {
  .floating-contact-buttons {
    bottom: 1.5rem;
  }
}

@media (hover: none) {
  nav[aria-label="Mobile navigation"] a:active {
    background-color: rgba(251, 113, 133, 0.1);
  }
}

/* Adjust main content for mobile bottom nav */
@media (max-width: 767px) {
  body {
    padding-bottom: 5.25rem;
  }

  .hero-vivid {
    padding-top: 4rem !important;
    padding-bottom: 4.5rem !important;
  }

  .hero-vivid > div {
    width: 100% !important;
    max-width: calc(100vw - 2rem) !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .hero-vivid h1 {
    font-size: 1.65rem !important;
    line-height: 1.15 !important;
    max-width: 19rem !important;
    margin-left: auto !important;
    margin-right: auto !important;
    overflow-wrap: break-word !important;
  }

  .hero-vivid p {
    font-size: 0.95rem !important;
    line-height: 1.65 !important;
    max-width: 19rem !important;
  }

  .hero-vivid .flex.flex-wrap {
    width: 100% !important;
    max-width: calc(100vw - 2rem) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    justify-content: center !important;
  }

  .hero-vivid .hero-city-links {
    display: grid !important;
    grid-template-columns: repeat(3, max-content) !important;
    justify-content: center !important;
    gap: 0.5rem !important;
    width: min(100%, 21.5rem) !important;
    max-width: 21.5rem !important;
    min-width: 0 !important;
    overflow: visible !important;
  }

  .hero-city-chip {
    font-size: 0.75rem !important;
    padding: 0.45rem 0.75rem !important;
  }

  .section-cities-bg .flex.items-center.justify-between,
  #featured-profiles .flex.items-center.justify-between {
    display: block !important;
    gap: 0.75rem !important;
  }

  .section-cities-bg h2,
  .section-categories-bg h2,
  #featured-profiles h2,
  .section-latest-bg h2 {
    font-size: 1.75rem !important;
    line-height: 1.2 !important;
    min-width: 0 !important;
  }

  .section-cities-bg .flex.items-center.justify-between a,
  #featured-profiles .flex.items-center.justify-between a {
    display: inline-block !important;
    font-size: 0.75rem !important;
    white-space: nowrap !important;
    margin-top: 0.5rem !important;
  }

  .section-cities-bg .premium-city-card {
    flex: none !important;
    width: 100% !important;
    min-width: 0 !important;
  }

  .section-cities-bg,
  .section-categories-bg,
  .section-latest-bg,
  #featured-profiles {
    width: 100% !important;
    max-width: 100vw !important;
    overflow-x: clip !important;
  }

  .section-cities-bg .grid {
    grid-template-columns: minmax(0, 1fr) !important;
    max-width: 100% !important;
  }

  .section-cities-bg .premium-city-card {
    aspect-ratio: 16 / 10 !important;
  }

  .helloscort-style {
    max-width: 100% !important;
  }

  .helloscort-style .card-footer {
    flex-wrap: wrap !important;
    gap: 0.5rem !important;
  }

  .helloscort-style .card-tags {
    max-width: 100% !important;
  }

  .helloscort-style .card-actions {
    margin-left: auto !important;
  }
}

@media (max-width: 420px) {
  .hero-vivid h1 {
    font-size: 1.5rem !important;
    max-width: 18rem !important;
  }

  .hero-vivid > div {
    max-width: 100% !important;
  }

  .hero-vivid .hero-city-links {
    max-width: 20rem !important;
  }
}
