/* ============================================
   BUNGABUNGA.FUN - GLOBAL STYLES
   Playful, vibrant design for adult entertainment guide
   ============================================ */

/* ============================================
   1. CSS VARIABLES - Color Palette
   ============================================ */
:root {
  /* Primary Colors */
  --primary-purple: #9b59b6;
  --primary-pink: #e91e63;
  --primary-magenta: #c2185b;

  /* Gradient Backgrounds */
  --gradient-main: linear-gradient(
    135deg,
    #667eea 0%,
    #764ba2 50%,
    #f093fb 100%
  );
  --gradient-hero: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.95) 0%,
    rgba(118, 75, 162, 0.95) 50%,
    rgba(240, 147, 251, 0.95) 100%
  );
  --gradient-card: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
  --gradient-button: linear-gradient(135deg, #e91e63 0%, #9b59b6 100%);

  /* Accent Colors */
  --accent-yellow: #ffd700;
  --accent-orange: #ff6b6b;
  --accent-cyan: #4ecdc4;

  /* Neutral Colors */
  --dark-bg: #1a1a2e;
  --dark-text: #2c3e50;
  --light-bg: #f8f9fa;
  --white: #ffffff;

  /* Text Colors */
  --text-primary: #2c3e50;
  --text-secondary: #666;
  --text-light: #999;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(155, 89, 182, 0.1);
  --shadow-md: 0 4px 12px rgba(155, 89, 182, 0.15);
  --shadow-lg: 0 8px 24px rgba(155, 89, 182, 0.2);
  --shadow-xl: 0 12px 32px rgba(155, 89, 182, 0.25);

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 50px;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
}

/* ============================================
   2. GLOBAL RESETS & BASE STYLES
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--light-bg);
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

p {
  margin-bottom: 0.75rem;
}

/* ============================================
   3. NAVIGATION BAR
   ============================================ */
.navbar {
  background: white !important;
  box-shadow: var(--shadow-md);
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-purple) !important;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
}

.navbar-brand .navbar-logo {
  width: 40px;
  height: 40px;
  margin-right: 0.75rem;
  display: inline-block;
  background: white;
  border-radius: 50%;
  padding: 3px;
}

.nav-link {
  color: var(--text-primary) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  margin: 0 0.25rem;
  border-radius: var(--radius-pill);
  transition: all 0.3s ease;
}

.nav-link:hover {
  background: var(--primary-purple);
  color: white !important;
  transform: translateY(-2px);
}

/* ============================================
   4. HERO SECTIONS
   ============================================ */
.hero-section,
.hero-home,
.cities-hero {
  background: var(--gradient-hero);
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
  padding: 1.5rem 1rem;
  position: relative;
  overflow: hidden;
}

.hero-section::before,
.hero-home::before,
.cities-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 1px,
    transparent 1px
  );
  background-size: 50px 50px;
  animation: moveBackground 20s linear infinite;
  pointer-events: none;
}

@keyframes moveBackground {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50px, 50px);
  }
}

.hero-section h1,
.hero-home h1,
.cities-hero h1 {
  font-size: 2.4rem;
  font-weight: 800;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  color: #ffffff;
}

.hero-section .tagline,
.hero-home .lead {
  font-size: 1.1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

/* ============================================
   5. BUTTONS
   ============================================ */
.btn {
  font-weight: 600;
  padding: 0.6rem 1.6rem;
  border-radius: var(--radius-pill);
  border: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-md);
}

.btn-primary,
.btn-danger {
  background: var(--gradient-button);
  color: var(--white);
}

.btn-primary:hover,
.btn-danger:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  filter: brightness(1.1);
}

.btn-warning {
  background: var(--accent-yellow);
  color: var(--dark-bg);
}

.btn-warning:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  background: #ffed4e;
}

.btn-cta {
  background: var(--gradient-button);
  color: var(--white);
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
  font-weight: 700;
  z-index: 100;
}

.btn-cta:hover {
  background: var(--gradient-button);
  color: var(--white);
  transform: translateY(-3px);
  filter: brightness(1.1);
}

/* ============================================
   6. CARDS
   ============================================ */
.card {
  border: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  background: var(--white);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

/* City Cards */
.city-card {
  height: 100%;
  position: relative;
}

.city-card img,
.city-card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.city-card:hover img {
  transform: scale(1.05);
}

.city-card .card-body {
  padding: 1.5rem;
}

.city-card .city-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-purple);
  margin-bottom: 0.5rem;
}

.city-card .city-country {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.city-card .city-country i {
  margin-right: 5px;
  color: var(--primary-pink);
}

.city-card .city-description {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.city-card .city-stats {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-light);
  padding-top: 1rem;
  border-top: 2px solid rgba(155, 89, 182, 0.1);
}

.city-card .featured-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--gradient-button);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: var(--shadow-md);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Venue Cards - Horizontal Layout */
.venue-card-horizontal {
  display: flex;
  flex-direction: row;
  border: 2px solid rgba(155, 89, 182, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 1.25rem;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  min-height: 200px;
}

.venue-card-horizontal:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-purple);
  transform: translateX(5px);
}

.venue-card-horizontal .venue-image {
  width: 180px;
  min-width: 180px;
  align-self: stretch;
  object-fit: cover;
  flex-shrink: 0;
}

.venue-card-horizontal .venue-content {
  padding: 0.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.venue-card-horizontal .venue-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.venue-card-horizontal .venue-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-purple);
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.venue-card-horizontal .venue-neighborhood {
  font-size: 0.85rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
}

.venue-card-horizontal .venue-neighborhood i {
  color: var(--primary-pink);
  margin-right: 5px;
}

.venue-card-horizontal .venue-description {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0.6rem;
  line-height: 1.5;
}

.venue-card-horizontal .venue-services {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.venue-card-horizontal .service-tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.75rem;
  color: var(--primary-purple);
  background: rgba(155, 89, 182, 0.1);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  font-weight: 600;
}

.venue-card-horizontal .service-tag i {
  font-size: 0.7rem;
  margin-right: 0.4rem;
  color: var(--primary-pink);
}

.venue-card-horizontal .venue-footer {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: auto;
}

.venue-card-horizontal .price-badge {
  font-weight: 700;
  color: var(--accent-orange);
  font-size: 1.1rem;
}

/* ============================================
   7. SIDEBAR
   ============================================ */
.sidebar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-md);
  border: 2px solid rgba(155, 89, 182, 0.1);
}

.sidebar-card h5 {
  color: var(--primary-purple);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 3px solid var(--primary-pink);
}

.sidebar-card ul {
  list-style: none;
  padding: 0;
}

.sidebar-card ul li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(155, 89, 182, 0.1);
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.sidebar-card ul li:last-child {
  border-bottom: none;
}

.sidebar-card ul li:hover {
  padding-left: 10px;
  color: var(--primary-purple);
}

.sidebar-card ul li i {
  color: var(--primary-pink);
  margin-right: 0.75rem;
  width: 20px;
}

.sidebar-card ul li a {
  color: var(--text-primary);
  transition: color 0.3s ease;
}

.sidebar-card ul li a:hover {
  color: var(--primary-purple);
}

/* ============================================
   8. SECTIONS & HEADERS
   ============================================ */
.section-header {
  margin: 15px 0 15px 0;
}

.section-header h1 {
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient-button);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.section-header h2 {
  font-size: 1.75rem;
  font-weight: 800;
  background: var(--gradient-button);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.entertainment-subtitle {
  font-size: 1.75rem;
  font-weight: 800;
  background: var(--gradient-button);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.entertainment-intro {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.7;
}

/* Stats Section */
.stats-section {
  background: var(--white);
  padding: 2.5rem 0;
  border-bottom: 3px solid rgba(155, 89, 182, 0.1);
  box-shadow: var(--shadow-sm);
}

.stat-box {
  text-align: center;
  padding: 1.5rem;
}

.stat-box .stat-number {
  font-size: 3rem;
  font-weight: 800;
  background: var(--gradient-button);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-box .stat-label {
  color: var(--text-secondary);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* ============================================
   9. INFO BOXES
   ============================================ */
.info-box {
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin: 1.5rem 0;
  border-left: 5px solid;
  box-shadow: var(--shadow-sm);
  background: linear-gradient(135deg, #fff3cd 0%, #fff8e1 100%);
  border-left-color: #ffc107;
}

.info-box.safety {
  background: linear-gradient(135deg, #f8d7da 0%, #ffe5e8 100%);
  border-left-color: #dc3545;
}

.info-box.tip {
  background: linear-gradient(135deg, #d1ecf1 0%, #e1f5fe 100%);
  border-left-color: #17a2b8;
}

.info-box h5 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
}

.info-box h5 i {
  margin-right: 0.75rem;
  font-size: 1.4rem;
}

.info-box ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}

.info-box li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

/* ============================================
   10. QUICK NAVIGATION
   ============================================ */
.quick-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  padding: 1.5rem;
  background: rgba(155, 89, 182, 0.05);
  border-radius: var(--radius-lg);
}

.quick-nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1rem;
  background: var(--white);
  color: var(--primary-purple);
  text-decoration: none;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.75rem;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}

.quick-nav-link:hover {
  background: var(--gradient-button);
  color: var(--white);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.quick-nav-link i {
  font-size: 0.85rem;
}

/* ============================================
   11. REGION FILTERS & CARDS
   ============================================ */
.region-filters {
  background: var(--white);
  padding: 2rem 0;
  box-shadow: var(--shadow-md);
  margin-bottom: 2rem;
}

.filter-btn {
  display: inline-block;
  padding: 0.875rem 1.75rem;
  margin: 0.5rem;
  background: var(--white);
  color: var(--primary-purple);
  border: 2px solid rgba(155, 89, 182, 0.3);
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gradient-button);
  color: var(--white);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.filter-btn i {
  margin-right: 0.75rem;
}

.region-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  margin-bottom: 1.5rem;
  border: 2px solid transparent;
}

.region-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-8px);
  border-color: var(--primary-purple);
}

.region-card i {
  font-size: 3rem;
  background: var(--gradient-button);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  display: inline-block;
}

.region-card h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-purple);
  margin-bottom: 0.5rem;
}

.region-card .city-count {
  color: var(--text-secondary);
  font-size: 1rem;
  font-weight: 600;
}

/* ============================================
   12. BREADCRUMB
   ============================================ */
.breadcrumb {
  background: transparent;
  padding: 0.1rem 0;
  margin-bottom: 0;
  font-size: 0.8rem;
  border-bottom: none;
}

.breadcrumb-item a {
  color: var(--primary-purple);
  font-weight: 600;
  transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
  color: var(--primary-pink);
}

.breadcrumb-item.active {
  color: var(--text-secondary);
  font-weight: 600;
}

/* ============================================
   13. ABOUT & FEATURE SECTIONS
   ============================================ */
.about-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 4rem 0;
  margin-top: 3rem;
}

.about-section h3 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-purple);
  margin-bottom: 1.5rem;
}

.about-section p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.feature-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-md);
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.feature-box:hover {
  border-color: var(--primary-purple);
  transform: translateY(-5px);
}

.feature-box i {
  font-size: 2.5rem;
  background: var(--gradient-button);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.75rem;
  display: inline-block;
}

.feature-box h5 {
  font-weight: 700;
  color: var(--primary-purple);
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.feature-box p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

.about-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
}

.about-image:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.about-image-placeholder {
  background: linear-gradient(
    135deg,
    rgba(155, 89, 182, 0.1) 0%,
    rgba(233, 30, 99, 0.1) 100%
  );
  border: 3px dashed rgba(155, 89, 182, 0.3);
  border-radius: var(--radius-lg);
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: all 0.3s ease;
}

.about-image-placeholder:hover {
  border-color: var(--primary-purple);
  background: linear-gradient(
    135deg,
    rgba(155, 89, 182, 0.15) 0%,
    rgba(233, 30, 99, 0.15) 100%
  );
}

.about-image-placeholder i {
  font-size: 4rem;
  margin-bottom: 1rem;
  color: var(--primary-purple);
  opacity: 0.5;
}

.about-image-placeholder p {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  color: var(--text-secondary);
}

/* ============================================
   14. CTA & OTHER OPTIONS
   ============================================ */
.cta-section {
  background: var(--gradient-main);
  color: var(--white);
  padding: 4rem 1rem;
  text-align: center;
  margin-top: 3rem;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.cta-section h3 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  position: relative;
  z-index: 1;
}

.other-options-section {
  background: transparent;
  border: none;
  padding: 0;
  margin-top: 3rem;
  box-shadow: none;
}

.other-options-section h5 {
  font-size: 1.2rem;
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 1rem;
  border-bottom: none;
  padding-bottom: 0;
}

.other-options-section h5 i {
  color: var(--primary-purple);
  margin-right: 0.5rem;
}

.other-options-content {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 2px solid rgba(155, 89, 182, 0.1);
}

.other-options-content h6 {
  font-size: 1.1rem;
  color: var(--primary-purple);
  font-weight: 700;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
}

.other-options-content h6 i {
  margin-right: 0.5rem;
  color: var(--primary-pink);
}

.other-options-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.other-options-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.other-options-buttons .btn {
  font-size: 0.9rem;
  padding: 0.5rem 1.25rem;
  font-weight: 600;
}

.other-option-card {
  background: var(--white);
  border: 2px solid rgba(155, 89, 182, 0.2);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.other-option-card:hover {
  border-color: var(--primary-purple);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.option-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
  gap: 1rem;
}

.option-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-purple);
  margin: 0;
  flex: 1;
}

.option-header .btn {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  background: var(--gradient-button);
  border: none;
  color: white;
}

.option-header .btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  filter: brightness(1.1);
}

.option-description {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* ============================================
   15. FOOTER
   ============================================ */
footer {
  background: var(--dark-bg) !important;
  color: rgba(255, 255, 255, 0.9) !important;
  padding: 3rem 0 1.5rem !important;
  margin-top: 4rem !important;
}

footer h5 {
  color: var(--white);
  font-weight: 700;
  margin-bottom: 1.25rem;
  font-size: 1.2rem;
}

footer p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}

footer ul {
  list-style: none;
  padding: 0;
}

footer ul li {
  margin-bottom: 0.75rem;
}

footer a {
  color: rgba(255, 255, 255, 0.8) !important;
  transition: all 0.3s ease;
}

footer a:hover {
  color: var(--accent-yellow) !important;
  padding-left: 5px;
}

footer hr {
  background: rgba(255, 255, 255, 0.2) !important;
  opacity: 1 !important;
  margin: 2rem 0 !important;
}

footer .text-center {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

/* ============================================
   16. WHY WE EXIST SECTION
   ============================================ */
.why-section {
  background: var(--light-bg);
  padding: 4rem 0;
  margin: 3rem 0;
}

.why-section .container-fluid {
  max-width: 1400px;
  padding: 0 15px;
}

.why-box {
  background: var(--white);
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  border-radius: var(--radius-xl);
}

.problem-box {
  border-left: 8px solid #e91e63;
  background: linear-gradient(135deg, #ffffff 0%, #fff5f8 100%);
}

.problem-box .why-label {
  background: #ffe5f0;
  color: #e91e63;
  border: 2px solid #ffcce0;
}

.problem-box .why-label i {
  color: #e91e63;
}

.solution-box {
  border-right: 8px solid #4ecdc4;
  background: linear-gradient(135deg, #ffffff 0%, #f0fffe 100%);
}

.solution-box .why-label {
  background: #e0f7f6;
  color: #4ecdc4;
  border: 2px solid #b3ebe7;
}

.solution-box .why-label i {
  color: #4ecdc4;
}

.why-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 2rem;
  align-self: flex-start;
}

.why-label i {
  font-size: 1.2rem;
}

.why-big-text h2 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-primary);
}

.highlight-purple {
  color: #9b59b6;
  font-weight: 800;
}

.highlight-cyan {
  color: #4ecdc4;
  font-weight: 800;
}

.why-left-content,
.why-right-content {
  display: flex;
  flex-direction: column;
}

.why-box:not(.inversed) .why-right-content,
.why-box.inversed .why-left-content {
  gap: 1.5rem;
}

.detail-item {
  padding: 1.25rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 2px solid rgba(155, 89, 182, 0.1);
  transition: all 0.3s ease;
}

.detail-item:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-purple);
}

.solution-box .detail-item:hover {
  transform: translateX(-5px);
}

.detail-text h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.detail-text p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

.practical-block {
  margin-bottom: 0.75rem;
}

.practical-block:last-child {
  margin-bottom: 0;
}

.practical-block h3 {
  color: var(--primary-purple);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
}

.practical-block h3 i {
  margin-right: 0.75rem;
  color: var(--primary-pink);
  font-size: 1.3rem;
}

.practical-block p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0;
}

.practical-block ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.practical-block ul li {
  padding: 0.5rem 0 0.5rem 1.75rem;
  position: relative;
  color: var(--text-secondary);
  line-height: 1.7;
}

.practical-block ul li::before {
  content: "•";
  position: absolute;
  left: 0.5rem;
  color: var(--primary-pink);
  font-weight: bold;
  font-size: 1.2rem;
}

/* ============================================
   17. SCROLL TO TOP BUTTON
   ============================================ */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-button);
  color: white;
  border: none;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  display: none;
}

.scroll-to-top i {
  font-size: 1.2rem;
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

/* ============================================
   18. LAYOUT
   ============================================ */
.city-page-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.city-main-content {
  flex: 1 1 650px;
  min-width: 650px;
}

.city-sidebar {
  flex: 0 0 300px;
  width: 300px;
}

/* ============================================
   19. FEATURED CITIES HORIZONTAL SCROLL
   ============================================ */
.featured-cities-scroll {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 1rem 0 2rem 0;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.featured-cities-scroll::-webkit-scrollbar {
  height: 8px;
}

.featured-cities-scroll::-webkit-scrollbar-track {
  background: rgba(155, 89, 182, 0.1);
  border-radius: 10px;
}

.featured-cities-scroll::-webkit-scrollbar-thumb {
  background: var(--primary-purple);
  border-radius: 10px;
}

.featured-cities-scroll::-webkit-scrollbar-thumb:hover {
  background: var(--primary-pink);
}

.featured-city-item {
  flex: 0 0 280px;
  min-width: 280px;
}

/* ============================================
   20. BLOG POST CONTENT
   ============================================ */
.city-main-content a {
  color: var(--primary-purple);
  text-decoration: underline;
  transition: all 0.3s ease;
}

.city-main-content a:hover {
  color: var(--primary-pink);
  text-decoration: underline;
}

.blog-hero-image img {
  height: 400px;
}

/* ============================================
   21. CITIES PAGE
   ============================================ */
.cities-page .col-md-4,
.cities-page .col-sm-6 {
  margin-bottom: 2rem;
}

/* ============================================
   22. RESPONSIVE DESIGN
   ============================================ */

/* Tablet */
@media (max-width: 1199px) {
  .why-box {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2.5rem;
  }

  .why-big-text h2 {
    font-size: 1.75rem;
  }

  .featured-city-item {
    flex: 0 0 calc(25% - 1.125rem);
    min-width: calc(25% - 1.125rem);
  }
}

@media (max-width: 1140px) {
  .city-page-container {
    flex-direction: column;
  }

  .city-main-content,
  .city-sidebar {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
  }
}

/* Mobile */
@media (max-width: 991px) {
  .why-section {
    padding: 2rem 0;
  }

  .why-box {
    padding: 2rem 1.5rem;
    border-left: 6px solid #e91e63 !important;
    border-right: none !important;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
  }

  .problem-box .why-left-content {
    order: 1;
  }

  .problem-box .why-right-content {
    order: 2;
  }

  .solution-box .why-right-content {
    order: 1;
  }

  .solution-box .why-left-content {
    order: 2;
  }

  .solution-box {
    border-left: 6px solid #4ecdc4 !important;
  }

  .why-big-text h2 {
    font-size: 1.5rem;
  }

  .about-image-placeholder {
    min-height: 300px;
    margin-top: 2rem;
  }

  .scroll-to-top {
    display: block;
  }
}

@media (max-width: 767px) {
  .quick-nav {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    padding: 1rem;
  }

  .quick-nav-link {
    padding: 0.6rem 0.75rem;
    font-size: 0.7rem;
  }

  .hero-section,
  .hero-home,
  .cities-hero {
    min-height: 150px;
    padding: 1rem;
  }

  .hero-section h1,
  .hero-home h1,
  .cities-hero h1 {
    font-size: 2rem;
  }

  .hero-section .tagline,
  .hero-home .lead {
    font-size: 1rem;
  }

  .section-header {
    margin: 10px 0 10px 0;
  }

  .venue-card-horizontal {
    flex-direction: column;
  }

  .venue-card-horizontal .venue-image {
    width: 100%;
    min-width: 100%;
    height: 200px;
  }

  .venue-card-horizontal .venue-header {
    flex-direction: row;
    align-items: flex-start;
  }

  .venue-card-horizontal .venue-name {
    flex: 1;
    min-width: 0;
  }

  .venue-card-horizontal .btn {
    width: auto;
    margin-top: 0;
    flex-shrink: 0;
  }

  h2 {
    font-size: 1.25rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  .entertainment-subtitle {
    font-size: 1.75rem;
  }

  .stat-box .stat-number {
    font-size: 2rem;
  }

  .why-label {
    padding: 0.6rem 1.25rem;
    font-size: 0.75rem;
  }

  .why-big-text h2 {
    font-size: 1.3rem;
  }

  .detail-item {
    padding: 1rem;
  }

  .detail-text h5 {
    font-size: 0.95rem;
  }

  .detail-text p {
    font-size: 0.85rem;
  }

  .option-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .option-header .btn {
    width: 100%;
    text-align: center;
  }

  p {
    margin-bottom: 0.5rem;
  }

  .city-card .city-card-image {
    display: none;
  }

  .city-card {
    height: auto;
    margin-bottom: 1rem;
  }

  .city-card .card-body {
    padding: 1rem;
  }

  .city-card .city-name {
    font-size: 1.1rem;
  }

  .city-card .city-description {
    font-size: 0.85rem;
  }

  .home .city-card {
    display: flex;
    flex-direction: row;
    height: auto;
    min-height: 140px;
  }

  .home .city-card .city-card-image {
    display: block !important;
    width: 120px;
    min-width: 120px;
    height: auto;
    object-fit: cover;
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  }

  .home .city-card .card-body {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
  }

  .home .city-card .city-name {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
  }

  .home .city-card .city-country {
    font-size: 0.8rem;
    margin-bottom: 0.3rem;
  }

  .home .city-card .city-description {
    font-size: 0.85rem;
    margin-bottom: 0;
    line-height: 1.4;
  }

  .home .city-card .city-stats {
    display: none;
  }

  .home .col-md-4 {
    margin-bottom: 2.5rem;
  }

  .featured-city-item {
    flex: 0 0 240px;
    min-width: 240px;
  }

  .featured-cities-scroll .city-card-image {
    display: block !important;
    height: 180px;
    object-fit: cover;
  }

  .blog-hero-image {
    max-height: 250px !important;
  }

  .blog-hero-image img {
    height: 250px;
  }
}

@media (min-width: 768px) {
  .hero-home,
  .cities-hero {
    min-height: 40vh;
  }

  .hero-section {
    min-height: 200px;
  }

  .hero-section h1,
  .hero-home h1,
  .cities-hero h1 {
    font-size: 2.5rem;
  }

  .venue-card-horizontal .venue-image {
    width: 200px;
    min-width: 200px;
  }

  .venue-card-horizontal .venue-content {
    padding: 0.8rem;
  }

  .city-card-image {
    display: block;
  }
}
