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

/* ============================================
   Base Styles
   ============================================ */
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Inter', 'PingFang SC', 'Helvetica Neue', Arial, sans-serif;
  background: linear-gradient(180deg, #181832 0%, #1f2240 60%, #181a2e 100%);
  color: #ffffff;
  line-height: 1.6;
}
.container { width: min(1200px, 90vw); margin: 0 auto; }

/* ============================================
   Header & Navigation
   ============================================ */
header { position: sticky; top: 0; width: 100%; background: rgba(32,34,60,0.92); backdrop-filter: blur(18px); border-bottom: 1px solid rgba(255,255,255,0.12); z-index: 1000; }
.navbar { display: flex; align-items: center; justify-content: space-between; padding: 1.2rem 0; position: relative; gap: 1.5rem; }
.logo { font-size: 1.2rem; font-weight: 700; letter-spacing: 0.2rem; flex-shrink: 0; }
.logo a { text-decoration: none; color: inherit; display: flex; align-items: center; }
.logo .site-logo { height: 40px; width: auto; max-width: 200px; object-fit: contain; }
nav { flex: 1; min-width: 0; }
nav ul { list-style: none; display: flex; gap: 2rem; flex-wrap: wrap; }
nav a { text-decoration: none; color: #dfe3ff; font-weight: 500; white-space: nowrap; }
nav a:hover, nav a.active { color: #f7c66a; }

/* Language Switcher */
.language-switcher { display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0; position: relative; z-index: 10; }
.language-switcher .current-lang { color: #dfe3ff; font-weight: 500; }
.language-switcher .separator { color: rgba(255,255,255,0.3); }
.language-switcher .lang-link { text-decoration: none; color: #f7c66a; font-weight: 500; padding: 0.5rem 1rem; border-radius: 4px; transition: all 0.2s ease; display: inline-block; position: relative; z-index: 11; pointer-events: auto !important; cursor: pointer !important; }
.language-switcher .lang-link:hover { background: rgba(247,198,106,0.1); color: #f7c66a; }
.language-switcher .lang-link:active { pointer-events: auto !important; }

/* Desktop: ensure nav is always visible */
@media (min-width: 769px) {
  nav {
    display: block !important;
    position: static !important;
    height: auto !important;
    max-height: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    overflow: visible !important;
    pointer-events: auto !important;
    z-index: auto !important;
  }
  
  nav ul {
    display: flex !important;
    flex-direction: row !important;
  }
}

/* Ensure menu items are visible in mobile */
@media (max-width: 768px) {
  nav ul.escort-luxury-menu-list,
  nav ul {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  nav ul.escort-luxury-menu-list li,
  nav ul li {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  nav ul.escort-luxury-menu-list a,
  nav ul a {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    color: #dfe3ff !important;
  }
}
.btn-primary { flex-shrink: 0; }

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: #f7c66a;
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}
.btn-primary { padding: 0.9rem 1.8rem; border-radius: 999px; border: none; font-weight: 600; cursor: pointer; background: linear-gradient(120deg, #c8923c, #f5d68e); color: #1a1a1f; text-decoration: none; display: inline-block; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(247,198,106,0.3); }
.btn-secondary { padding: 0.9rem 1.8rem; border-radius: 999px; border: 1px solid rgba(247,198,106,0.5); background: transparent; color: #f7c66a; font-weight: 600; cursor: pointer; text-decoration: none; display: inline-block; }
.btn-secondary:hover { background: rgba(247,198,106,0.1); }
.btn { padding: 0.9rem 1.8rem; border-radius: 999px; border: none; font-weight: 600; cursor: pointer; text-decoration: none; display: inline-block; }
.btn-outline { border: 1px solid rgba(255,255,255,0.3); background: transparent; color: #fff; }

/* ============================================
   Hero Sections
   ============================================ */
.hero {
  min-height: 95vh;
  background: linear-gradient(120deg, rgba(32,34,70,0.9), rgba(20,22,45,0.82)), radial-gradient(circle at top left, rgba(255,255,255,0.12), transparent 55%);
  display: grid;
  grid-template-columns: 0.8fr 2.2fr;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  overflow: hidden;
}
.hero-content { max-width: 580px; padding: 5rem 0 5rem 2rem; z-index: 2; }
.hero h1 { font-size: clamp(2.5rem, 6vw, 4rem); margin-bottom: 1.5rem; }
.hero p { color: #b7b7c7; margin-bottom: 2rem; }
.hero-media { position: relative; padding: 0.25rem; min-height: 93vh; }
.hero-media figure {
  position: absolute;
  inset: 2rem;
  opacity: 0;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 25px 60px rgba(0,0,0,0.45);
  animation: heroSlider 18s infinite;
  transform: translateX(40px);
}
.hero-media figure:nth-child(1) { animation-delay: 0s; }
.hero-media figure:nth-child(2) { animation-delay: 6s; }
.hero-media figure:nth-child(3) { animation-delay: 12s; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.slider-dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 3;
}
.slider-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  animation: sliderDots 18s infinite;
}
.slider-dots span:nth-child(1) { animation-delay: 0s; }
.slider-dots span:nth-child(2) { animation-delay: 6s; }
.slider-dots span:nth-child(3) { animation-delay: 12s; }

@keyframes heroSlider {
  0%, 25% { opacity: 1; transform: translateX(0); }
  35%, 100% { opacity: 0; transform: translateX(-40px); }
}
@keyframes sliderDots {
  0%, 25% { background: #f7c66a; }
  35%, 100% { background: rgba(255,255,255,0.3); }
}

/* Hero Tags - used in city subdomain hero sections */
.hero-tags { display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 1rem 0 2rem; }
.hero-tags span { background: rgba(247,198,106,0.12); color: #f7c66a; padding: 0.35rem 0.8rem; border-radius: 999px; font-size: 0.85rem; }

.hero-small { padding: 4rem 0; text-align: center; background: linear-gradient(120deg, rgba(32,34,70,0.85), rgba(20,22,45,0.78)); border-bottom: 1px solid rgba(255,255,255,0.15); }
.hero-small h1 { font-size: clamp(2.2rem, 4vw, 3.2rem); margin-bottom: 1rem; }
.hero-small p { color: #cbd0ff; max-width: 700px; margin: 0 auto 2rem; }

/* ============================================
   Sections
   ============================================ */
section { padding: 4rem 0; }
/* Reduce padding for escort-featured-shortcode section (inside featured section) */
section.escort-featured-shortcode {
  padding: 2rem 0;
}
.section-title {
  text-align: center;
  margin-bottom: 3rem;
  color: #fff;
}
.section-title > span:first-child {
  display: block;
  font-size: 0.9rem;
  letter-spacing: 0.2rem;
  opacity: 0.7;
  margin-bottom: 0.5rem;
}
.section-title > span:last-child {
  display: block;
  font-size: 2rem;
  font-weight: 700;
}

/* ============================================
   Grids & Cards
   ============================================ */
.featured-grid, .city-grid, .advantage-grid, .card-grid {
  display: grid;
  gap: 1.5rem;
}
.featured-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.feature-card {
  background: rgba(32,33,56,0.94);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s;
  position: relative;
}
.feature-card a {
  display: block;
  text-decoration: none;
  color: inherit;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.feature-card:hover { transform: translateY(-5px); }
.feature-card img { width: 100%; height: 280px; object-fit: cover; }
.feature-card .card-body { padding: 1.5rem; }
.feature-card h3 { margin-bottom: 0.5rem; }
.feature-card span { font-size: 0.85rem; color: #f7c66a; }

.city-featured-link {
  text-align: center;
  margin-top: 1.5rem;
}

.city-featured-link a {
  color: #f7c66a;
  font-weight: 600;
  text-decoration: none;
}

.city-featured-link a:hover { text-decoration: underline; }

.city-grid, .cities-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }
.escort-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 2rem; }
.city-card {
  background: rgba(32,34,58,0.94);
  border-radius: 18px;
  padding: 1.5rem;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 20px 40px rgba(5,5,15,0.35);
}
.city-card h4 { margin-bottom: 0.3rem; }
.city-card p { font-size: 0.9rem; color: #b7b7c7; }
.advantage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.advantage-card {
  background: #1a1a2e;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  color: #fff;
}
.advantage-card .icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.advantage-card h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #f7c66a;
}
.advantage-card p {
  opacity: 0.8;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Escort Cards */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.escort-card {
  background: rgba(32,33,56,0.94);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s;
}
.escort-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
.escort-card img { width: 100%; height: 260px; object-fit: cover; }
.escort-card .card-body { padding: 1.3rem; }
.escort-card h3 { margin-bottom: 0.4rem; }
.escort-card span { font-size: 0.85rem; color: #f7c66a; }
.escort-card ul { list-style: none; margin-top: 0.8rem; display: grid; gap: 0.3rem; color: #cbd0ff; font-size: 0.9rem; }
.escort-card {
  position: relative;
}
.escort-card a { 
  text-decoration: none; 
  color: inherit;
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

/* ============================================
   Escort Detail Page
   ============================================ */
.escort-detail-hero { padding: 3rem 0; }
.escort-detail-grid { display: grid; gap: 3rem; margin-top: 2rem; align-items: start; grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); }
.escort-detail-hero.layout-stacked .escort-detail-grid { grid-template-columns: 1fr; }
.escort-detail-hero.layout-stacked .escort-info { margin-top: 2rem; }
.escort-detail-hero.layout-split .escort-detail-grid { grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr); }
.escort-gallery { position: relative; }
.main-image { width: 100%; border-radius: 22px; overflow: hidden; margin-bottom: 1rem; }
.main-image img { width: 100%; height: clamp(360px, 45vw, 520px); object-fit: cover; display: block; }
.escort-detail-hero.layout-stacked .main-image img { height: auto; max-height: none; }
.thumbnail-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.8rem; }
.thumbnail { width: 100%; aspect-ratio: 1; border-radius: 12px; overflow: hidden; cursor: pointer; border: 2px solid transparent; transition: all 0.3s; }
.thumbnail:hover { border-color: #f7c66a; transform: scale(1.05); }
.thumbnail img { width: 100%; height: 100%; object-fit: cover; }
.thumbnail.active { border-color: #f7c66a; }
.escort-info { background: rgba(32,33,56,0.94); border: 1px solid rgba(255,255,255,0.12); border-radius: 22px; padding: 2.5rem; }
.escort-header { border-bottom: 1px solid rgba(255,255,255,0.15); padding-bottom: 1.5rem; margin-bottom: 1.5rem; }
.escort-header h1 { font-size: 2.5rem; margin-bottom: 0.5rem; }
.escort-header .meta { display: flex; gap: 1.5rem; flex-wrap: wrap; color: #cbd0ff; font-size: 0.95rem; }
.escort-header .rate { font-size: 1.5rem; color: #f7c66a; font-weight: 700; margin-top: 0.5rem; }
.escort-header .rating { display: flex; align-items: center; gap: 0.5rem; margin-top: 0.5rem; }
.escort-header .stars { color: #f7c66a; font-size: 1.2rem; }
.escort-details { margin-bottom: 2rem; }
.escort-details h3 { font-size: 1.3rem; margin-bottom: 1rem; color: #f7c66a; }
.detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.detail-item { display: flex; justify-content: space-between; padding: 0.8rem; background: rgba(255,255,255,0.03); border-radius: 10px; }
.detail-item .label { color: #cbd0ff; }
.detail-item .value { color: #fff; font-weight: 600; }
.escort-description { margin-bottom: 2rem; }
.escort-description h3 { font-size: 1.3rem; margin-bottom: 1rem; color: #f7c66a; }
.escort-description p { color: #dfe3ff; line-height: 1.8; margin-bottom: 1rem; }
.escort-services { margin-bottom: 2rem; }
.escort-services h3 { font-size: 1.3rem; margin-bottom: 1rem; color: #f7c66a; }
.service-tags { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.service-tag { padding: 0.5rem 1rem; background: rgba(247,198,106,0.15); border: 1px solid rgba(247,198,106,0.3); border-radius: 999px; color: #f7c66a; font-size: 0.9rem; }
.contact-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.contact-actions .btn-primary { flex: 1; min-width: 200px; text-align: center; }
.contact-actions .btn-secondary { flex: 1; min-width: 200px; text-align: center; }
.availability-badge { display: inline-block; padding: 0.4rem 1rem; background: rgba(76,175,80,0.2); border: 1px solid rgba(76,175,80,0.4); border-radius: 999px; color: #4caf50; font-size: 0.85rem; font-weight: 600; margin-left: 1rem; }
.related-escorts { margin-top: 4rem; padding-top: 3rem; border-top: 1px solid rgba(255,255,255,0.15); }
.related-escorts h2 { font-size: 2rem; margin-bottom: 2rem; text-align: center; }

/* ============================================
   Search & Filters
   ============================================ */
.page-hero { padding: 3rem 0 2rem; border-bottom: 1px solid rgba(255,255,255,0.15); text-align: center; }
.page-hero h1 { font-size: clamp(2.2rem, 4vw, 3.2rem); margin-bottom: 0.8rem; }
.search-bar { background: rgba(32,34,58,0.94); border-radius: 18px; border: 1px solid rgba(255,255,255,0.08); padding: 1.5rem; margin: 2rem 0; }
.escort-search-form { display: flex; flex-direction: column; gap: 0.9rem; }
.search-input-wrapper {
  display: flex;
  gap: 0;
  align-items: stretch;
}
.search-input-wrapper input[type="search"] {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  padding: 0.9rem 1.4rem;
  border-radius: 999px 0 0 999px;
  font-size: 1rem;
}
.search-input-wrapper.has-clear input[type="search"] {
  border-right: none;
}
.search-input-wrapper .btn-primary {
  border-radius: 0 999px 999px 0;
  margin-left: -1px;
}
.search-clear {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.2);
  border-left: none;
  border-right: none;
  color: #dfe3ff;
  padding: 0 1.1rem;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-clear:hover { color: #f7c66a; }
.search-input-wrapper input[type="search"]::placeholder { color: rgba(255,255,255,0.5); }
.quick-filters { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.search-bar .quick-filters { margin-top: 0; }
.filter-tag {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  color: #dfe3ff;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
}
.filter-tag:hover { background: rgba(247,198,106,0.15); border-color: rgba(247,198,106,0.4); color: #f7c66a; }
.filter-tag.active { background: rgba(247,198,106,0.2); border-color: #f7c66a; color: #f7c66a; }
/* ============================================
   Pagination
   ============================================ */
.pagination { display: flex; justify-content: center; gap: 0.6rem; margin: 2rem 0; }
.pagination a { width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,0.2); text-decoration: none; color: #fff; }
.pagination a.active { background: #f7c66a; color: #1a1a1f; border-color: #f7c66a; }
.pagination ul { list-style: none; display: flex; gap: 0.6rem; }
.pagination li { display: inline-block; }

/* ============================================
   City Directory
   ============================================ */
.city-directory-hero {
  background: linear-gradient(135deg, #1b1f3a 0%, #141630 80%);
  padding: 5rem 0 3rem;
  text-align: center;
}
.city-directory-hero .eyebrow { letter-spacing: 0.45rem; color: #f7c66a; text-transform: uppercase; font-size: 0.85rem; }
.city-directory-hero .lead { max-width: 620px; margin: 1.5rem auto 2.5rem; color: #b7b7c7; }
.city-alpha-nav { display: flex; justify-content: center; flex-wrap: wrap; gap: 0.85rem; }
.city-alpha-nav a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(247,198,106,0.35);
  display: inline-flex; align-items: center; justify-content: center;
  color: #f7c66a; text-decoration: none; font-weight: 600;
}
.city-alpha-nav a:hover { background: rgba(247,198,106,0.2); }
.city-alpha-nav a.disabled { opacity: 0.25; pointer-events: none; }
.city-directory-list { background: radial-gradient(circle at top, rgba(255,255,255,0.02), transparent 60%); padding: 4rem 0; }
.city-directory-groups { display: grid; gap: 1.5rem; }
.city-group-card {
  border-radius: 28px;
  padding: 1.5rem 2rem;
  background: rgba(14,16,32,0.9);
  border: 1px solid rgba(255,255,255,0.05);
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}
.city-group-letter { font-size: 1.4rem; font-weight: 700; color: #f7c66a; margin-bottom: 1rem; }
.city-group-cities { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 0.75rem; }
.city-entry {
  display: flex; flex-direction: column;
  padding: 0.9rem 1.1rem;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.06);
  text-decoration: none;
  color: #f1f1ff;
  background: rgba(255,255,255,0.01);
}
.city-entry:hover { border-color: rgba(247,198,106,0.45); }
.city-name { font-weight: 600; }
.city-desc { font-size: 0.85rem; color: #b7b7c7; }
.city-directory-seo { padding: 4rem 0 5rem; background: #121328; }
.city-directory-seo p { color: #c0c0d5; margin-bottom: 1rem; }

/* ============================================
   Info Cards & Service Highlights
   ============================================ */
.info-grid { display: flex; flex-wrap: wrap; gap: 1.2rem; margin-bottom: 3rem; justify-content: center; }
.info-card { width: 100%; max-width: 280px; background: rgba(32,34,58,0.94); border-radius: 18px; border: 1px solid rgba(255,255,255,0.08); padding: 1.4rem; box-shadow: 0 20px 40px rgba(5,5,15,0.35); text-align: center; }
.info-card .icon { width: 46px; height: 46px; border-radius: 14px; margin: 0 auto 0.9rem; display:flex; align-items:center; justify-content:center; background: linear-gradient(135deg, rgba(255,207,138,0.35), rgba(255,149,118,0.35)); color:#ffe0a8; font-size:1.3rem; }
.about-city { background: rgba(28,30,55,0.95); border: 1px solid rgba(255,255,255,0.12); border-radius: 24px; padding: 2.5rem; box-shadow: 0 35px 65px rgba(0,0,0,0.35); margin-bottom: 3rem; }
.about-city h2 { font-size: 1.8rem; margin-bottom: 1rem; }
.qa-block details { margin: 1rem 0; background: rgba(0,0,0,0.2); border-radius: 14px; border: 1px solid rgba(255,255,255,0.08); padding: 1rem 1.2rem; }
.qa-block summary { cursor: pointer; font-weight: 600; }

/* ============================================
   SEO & Content Blocks
   ============================================ */
.seo-block {
  background: linear-gradient(180deg, rgba(28,30,55,0.95), rgba(22,24,45,0.92));
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  padding: 3rem;
  margin-top: 2rem;
  box-shadow: 0 35px 65px rgba(0,0,0,0.35);
}
.seo-block h2 { font-size: 1.8rem; margin-bottom: 1rem; }
.seo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.2rem; margin-top: 1.5rem; }
.seo-card { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); border-radius: 18px; padding: 1.2rem; }
.seo-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; color: #f7c66a; }
details { margin-top: 1rem; background: rgba(0,0,0,0.2); border-radius: 14px; border: 1px solid rgba(255,255,255,0.05); padding: 1rem 1.2rem; }
details summary { cursor: pointer; font-weight: 600; }
details[open] { border-color: rgba(247,198,106,0.4); }

/* ============================================
   Contact Banner
   ============================================ */
.contact-banner {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  padding: 4rem 2rem;
  border-radius: 12px;
  text-align: center;
  color: #fff;
}
.contact-banner h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}
.contact-banner > p:first-of-type {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}
.contact-banner .contact-info {
  margin-bottom: 2rem;
}
.contact-banner .contact-info p {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.contact-banner .contact-info p:last-child {
  margin-bottom: 2rem;
}
.city-contact {
  padding-top: 0;
}
.contact-banner .btn-outline { 
  border: 2px solid #f7c66a; 
  color: #f7c66a; 
  background: transparent;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
}
.cta-group { 
  display: flex; 
  gap: 1rem; 
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   Back to Escorts Link
   ============================================ */
.back-to-escorts {
  padding: 2.5rem 0;
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.back-link-wrapper {
  text-align: center;
}
.back-to-escorts-link {
  display: inline-block;
  color: #f7c66a;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  border: 1px solid rgba(247, 198, 106, 0.3);
  border-radius: 8px;
  transition: all 0.3s ease;
}
.back-to-escorts-link:hover {
  color: #fff;
  background: rgba(247, 198, 106, 0.1);
  border-color: #f7c66a;
  transform: translateX(-5px);
}

/* ============================================
   Footer
   ============================================ */
footer { padding: 2.5rem 0; background: #0b0b10; color: #9696a5; margin-top: 3rem; }
.footer-columns { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; margin-bottom: 2rem; }
.footer-columns h5 { color: #f4f4fb; margin-bottom: 1rem; }
.footer-columns ul { list-style: none; display: grid; gap: 0.4rem; }
.footer-columns a { text-decoration: none; color: inherit; }

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 968px) {
  .escort-detail-grid { grid-template-columns: 1fr !important; }
  .detail-grid { grid-template-columns: 1fr; }
  .contact-actions { flex-direction: column; }
  .contact-actions .btn-primary, .contact-actions .btn-secondary { width: 100%; }
}
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex !important;
    order: 2;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }
  
  nav {
    position: fixed !important;
    top: 0;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    background: rgba(32,34,60,0.98) !important;
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255,255,255,0.12);
    height: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    order: 3;
    z-index: 999999 !important;
    opacity: 0;
    visibility: hidden;
    display: none;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    pointer-events: none !important;
  }
  
  /* Calculate header height dynamically */
  nav.active {
    display: block !important;
    height: auto !important;
    max-height: calc(100vh - 80px) !important;
    min-height: 200px !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    overflow: visible !important;
    overflow-y: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
    top: auto !important;
    pointer-events: auto !important;
  }
  
  /* When menu is active, lower page content z-index */
  body:has(nav.active) > *:not(header):not(nav) {
    position: relative;
    z-index: 1 !important;
  }
  
  body:has(nav.active) section,
  body:has(nav.active) .container,
  body:has(nav.active) .city-directory-list,
  body:has(nav.active) .city-group-card {
    position: relative;
    z-index: 1 !important;
  }
  
  /* Fix nested nav elements */
  nav nav {
    display: block !important;
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    background: transparent !important;
    position: relative !important;
    z-index: 1 !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
  
  /* Ensure all direct children of nav are visible */
  nav.active > * {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    position: relative !important;
    z-index: 2 !important;
  }
  
  nav ul {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    padding: 1rem 0 !important;
    margin: 0 !important;
    list-style: none !important;
    width: 100% !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
    background: transparent !important;
    position: relative !important;
    z-index: 2 !important;
  }
  
  nav ul li {
    width: 100% !important;
    border-bottom: 1px solid rgba(255,255,255,0.08) !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    position: relative !important;
    z-index: 3 !important;
  }
  
  nav ul li:last-child {
    border-bottom: none !important;
  }
  
  nav ul li a {
    display: block !important;
    padding: 1rem 1.5rem !important;
    color: #dfe3ff !important;
    background: transparent !important;
    font-weight: 500 !important;
    transition: all 0.2s ease;
    text-decoration: none !important;
    visibility: visible !important;
    opacity: 1 !important;
    font-size: 16px !important;
    line-height: 1.5 !important;
    position: relative !important;
    z-index: 4 !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
    text-align: left !important;
    white-space: normal !important;
    text-indent: 0 !important;
    text-overflow: clip !important;
    transform: none !important;
    clip: auto !important;
    clip-path: none !important;
  }
  
  nav ul li a:hover,
  nav ul li a.active {
    color: #f7c66a !important;
    background: rgba(247,198,106,0.1) !important;
    padding-left: 2rem !important;
  }
  
  .btn-primary {
    padding: 0.7rem 1.4rem;
    font-size: 0.9rem;
    order: 1;
    margin-left: auto;
  }
  
  .language-switcher {
    order: 0;
    font-size: 0.9rem;
  }
  
  .language-switcher .lang-link {
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
  }
  
  .navbar {
    flex-wrap: wrap;
  }
  
  .logo {
    order: 0;
  }
  
  .cta-group { flex-direction: column; }
  .escort-header h1 { font-size: 2rem; }
  .thumbnail-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================
   Floating Contact Buttons
   ============================================ */
.floating-contact-buttons {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9998;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  pointer-events: none;
}

.floating-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  pointer-events: auto;
  position: relative;
  overflow: hidden;
}

.floating-btn svg {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.floating-btn-label {
  position: absolute;
  right: 100%;
  margin-right: 0.75rem;
  white-space: nowrap;
  background: rgba(32, 34, 60, 0.95);
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.floating-btn:hover .floating-btn-label {
  opacity: 1;
  visibility: visible;
  right: calc(100% + 0.75rem);
}

.floating-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.floating-btn:hover svg {
  transform: scale(1.1);
}

.floating-btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #ffffff;
}

.floating-btn-whatsapp:hover {
  background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
}

.floating-btn-telegram {
  background: linear-gradient(135deg, #0088cc 0%, #006699 100%);
  color: #ffffff;
}

.floating-btn-telegram:hover {
  background: linear-gradient(135deg, #006699 0%, #0088cc 100%);
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .floating-contact-buttons {
    bottom: 1.5rem;
    right: 1.5rem;
    gap: 0.75rem;
  }
  
  .floating-btn {
    width: 52px;
    height: 52px;
  }
  
  .floating-btn svg {
    width: 22px;
    height: 22px;
  }
  
  .floating-btn-label {
    display: none; /* Hide label on mobile for cleaner look */
  }
}
