/* ==========================================================================
   genuineescorts.com - Ultra-Premium Luxury Design System (style.css)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Ultra-Luxury Midnight & Imperial Champagne Gold Palette */
  --bg-primary: #06080d;
  --bg-secondary: #0c1018;
  --bg-card: rgba(16, 21, 33, 0.82);
  --bg-card-hover: rgba(25, 33, 52, 0.94);
  --bg-glass: rgba(12, 16, 25, 0.88);

  --gold-100: #fff5d7;
  --gold-200: #fde8af;
  --gold-300: #ecc765;
  --gold-400: #dfb235;
  --gold-500: #c29522;
  --gold-600: #8c6711;
  --gold-gradient: linear-gradient(135deg, #fff4d1 0%, #ecc765 30%, #dfb235 60%, #a4791a 100%);
  --gold-gradient-glow: linear-gradient(135deg, rgba(236, 199, 101, 0.22) 0%, rgba(223, 178, 53, 0.08) 100%);
  --gold-shimmer: linear-gradient(90deg, transparent, rgba(255, 245, 215, 0.35), transparent);

  --rose-accent: #f29ca3;
  --rose-gradient: linear-gradient(135deg, #ff6b8b 0%, #ff8ea3 100%);

  --text-primary: #ffffff;
  --text-secondary: #c5cddc;
  --text-muted: #808c9f;
  --text-gold: #ecc765;

  --border-subtle: rgba(223, 178, 53, 0.20);
  --border-active: rgba(236, 199, 101, 0.65);
  --border-card: rgba(255, 255, 255, 0.08);

  --whatsapp-color: #25d366;
  --whatsapp-gradient: linear-gradient(135deg, #2fe073 0%, #25d366 50%, #128c7e 100%);
  --call-color: #dfb235;
  --telegram-color: #0088cc;

  /* Typography */
  --font-heading: 'Cinzel', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Premium Shadows & Glassmorphism */
  --shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.45);
  --shadow-md: 0 10px 28px rgba(0, 0, 0, 0.65);
  --shadow-gold: 0 12px 35px rgba(223, 178, 53, 0.22);
  --shadow-card: 0 18px 45px rgba(0, 0, 0, 0.65);
  --shadow-glow: 0 0 25px rgba(236, 199, 101, 0.25);

  --radius-sm: 9px;
  --radius-md: 15px;
  --radius-lg: 22px;
  --radius-full: 9999px;

  --transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
  background-image: 
    radial-gradient(circle at 15% 15%, rgba(223, 178, 53, 0.06) 0%, transparent 45%),
    radial-gradient(circle at 85% 75%, rgba(242, 156, 163, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(12, 16, 25, 0.5) 0%, transparent 100%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Ambient Radial Glow Orb */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1200px;
  height: 700px;
  background: radial-gradient(ellipse at center, rgba(223, 178, 53, 0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

/* Typography Helpers */
h1, h2, h3, h4, .font-cinzel {
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.gold-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  filter: drop-shadow(0 2px 8px rgba(223, 178, 53, 0.25));
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.95rem;
  background: rgba(223, 178, 53, 0.14);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  color: var(--gold-200);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(8px);
}

.badge-tag.verified {
  background: rgba(47, 224, 115, 0.14);
  border-color: rgba(47, 224, 115, 0.35);
  color: #2fe073;
}

.badge-tag.hot {
  background: rgba(255, 107, 139, 0.16);
  border-color: rgba(255, 107, 139, 0.45);
  color: #ff8ea3;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.9rem 1.85rem;
  font-size: 0.96rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-transform: capitalize;
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Button Shimmer Effect */
.btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: rgba(255, 255, 255, 0.25);
  transform: rotate(30deg);
  pointer-events: none;
  transition: all 0.6s ease;
  opacity: 0;
}

.btn:hover::after {
  left: 130%;
  opacity: 1;
}

.btn-primary {
  background: var(--gold-gradient);
  color: #07090e;
  box-shadow: 0 5px 22px rgba(223, 178, 53, 0.38);
  font-weight: 800;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 9px 30px rgba(223, 178, 53, 0.6);
  filter: brightness(1.06);
}

.btn-whatsapp {
  background: var(--whatsapp-gradient);
  color: #ffffff;
  box-shadow: 0 5px 22px rgba(37, 211, 102, 0.38);
  font-weight: 700;
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 9px 30px rgba(37, 211, 102, 0.6);
  filter: brightness(1.06);
}

.btn-call {
  background: rgba(223, 178, 53, 0.15);
  color: var(--gold-200);
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(6px);
}

.btn-call:hover {
  background: rgba(223, 178, 53, 0.28);
  border-color: var(--gold-300);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-outline {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.btn-outline:hover {
  border-color: var(--gold-300);
  color: var(--gold-200);
  background: rgba(223, 178, 53, 0.08);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.58rem 1.15rem;
  font-size: 0.84rem;
  border-radius: var(--radius-sm);
}

/* ==========================================================================
   Header & Navigation (Ultra-Premium Mega Menu)
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(6, 8, 13, 0.90);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition);
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.55);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}

.brand-logo .logo-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #06080d;
  font-weight: 900;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  box-shadow: 0 4px 18px rgba(223, 178, 53, 0.45);
}

.brand-logo .brand-text {
  display: flex;
  flex-direction: column;
}

.brand-logo .brand-title {
  font-size: 1.25rem;
  font-weight: 800;
  font-family: var(--font-heading);
  line-height: 1.1;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.brand-logo .brand-subtitle {
  font-size: 0.68rem;
  color: var(--gold-300);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
}

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

.nav-item {
  position: relative;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 0.5rem 0.2rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  letter-spacing: 0.2px;
}

.nav-link i {
  font-size: 0.85rem;
  color: var(--gold-300);
  opacity: 0.85;
}

.nav-link:hover, .nav-link.active {
  color: var(--gold-200);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold-gradient);
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(223, 178, 53, 0.7);
}

/* ==================== 2-COLUMN LUXURY MEGA DROPDOWN ==================== */
.has-dropdown:hover .mega-dropdown-menu,
.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-dropdown-menu, .dropdown-menu {
  position: absolute;
  top: 100%;
  left: -160px;
  width: 680px;
  max-height: calc(100vh - 105px);
  overflow-y: auto;
  overflow-x: hidden;
  background: rgba(8, 11, 18, 0.98);
  border: 1px solid var(--border-active);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.25rem 0.85rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.95), var(--shadow-glow);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: var(--transition);
  z-index: 1050;
}

/* Custom Luxury Gold Scrollbar */
.mega-dropdown-menu::-webkit-scrollbar {
  width: 5px;
}
.mega-dropdown-menu::-webkit-scrollbar-thumb {
  background: var(--gold-gradient);
  border-radius: 4px;
}
.mega-dropdown-menu::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.4);
}

.mega-dropdown-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.mega-dropdown-col {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
}

.mega-col-heading {
  font-size: 0.74rem;
  font-weight: 800;
  color: var(--gold-200);
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.35rem 0.6rem;
  margin-bottom: 0.25rem;
  border-bottom: 1px solid rgba(223, 178, 53, 0.25);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.dropdown-item {
  padding: 0.36rem 0.65rem;
  font-size: 0.83rem;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
  border-left: 2px solid transparent;
}

.dropdown-item:hover {
  background: rgba(223, 178, 53, 0.15);
  color: #ffffff;
  border-left-color: var(--gold-200);
  transform: translateX(4px);
}

.loc-mini-tag {
  font-size: 0.68rem;
  padding: 0.12rem 0.4rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(223, 178, 53, 0.15);
  border-radius: 4px;
  color: var(--gold-300);
  font-weight: 600;
  white-space: nowrap;
}

.mega-dropdown-footer {
  margin-top: 0.85rem;
  padding-top: 0.65rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.7rem;
  cursor: pointer;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  padding: 150px 0 80px;
  position: relative;
  background: radial-gradient(circle at 50% 30%, rgba(223, 178, 53, 0.10) 0%, transparent 65%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.hero-title {
  font-size: 3.2rem;
  line-height: 1.18;
  font-weight: 800;
}

.hero-desc {
  font-size: 1.08rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
  margin-top: 0.5rem;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.feature-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.feature-item .feature-number {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold-200);
  filter: drop-shadow(0 2px 6px rgba(223, 178, 53, 0.3));
}

.feature-item .feature-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Hero Quick Booking Card */
.hero-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), var(--shadow-gold);
  position: relative;
}

.hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-gradient);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.card-title {
  font-size: 1.4rem;
  margin-bottom: 0.35rem;
}

.card-subtitle {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.82rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.form-control {
  width: 100%;
  padding: 0.8rem 1.1rem;
  background: rgba(6, 8, 13, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-sm);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.92rem;
  outline: none;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--gold-300);
  box-shadow: 0 0 14px rgba(223, 178, 53, 0.3);
  background: rgba(12, 16, 24, 0.95);
}

select.form-control option {
  background: #0c1018;
  color: #ffffff;
}

/* ==========================================================================
   Section Common
   ========================================================================== */
.section {
  padding: 5.5rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}

.section-title {
  font-size: 2.4rem;
  line-height: 1.25;
}

.section-desc {
  font-size: 1.02rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ==========================================================================
   Interactive Rate Calculator
   ========================================================================== */
.calculator-box {
  background: var(--bg-card);
  border: 1px solid var(--border-active);
  border-radius: var(--radius-lg);
  padding: 2.75rem;
  margin: 3rem 0;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), var(--shadow-gold);
  backdrop-filter: blur(16px);
}

.calc-result-wrap {
  background: rgba(6, 8, 13, 0.85);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2.25rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
}

.calc-price {
  font-family: var(--font-heading);
  font-size: 2.7rem;
  font-weight: 800;
  color: #2fe073;
  filter: drop-shadow(0 2px 10px rgba(47, 224, 115, 0.35));
}

/* ==========================================================================
   Location Badges & Directory Grid
   ========================================================================== */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.4rem;
}

.location-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 1.65rem;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), var(--shadow-sm);
  backdrop-filter: blur(12px);
}

.location-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-active);
  background: var(--bg-card-hover);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.7), var(--shadow-glow);
}

.location-card .loc-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(223, 178, 53, 0.15);
  color: var(--gold-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  border: 1px solid var(--border-subtle);
}

.location-card .loc-title {
  font-size: 1.2rem;
  font-weight: 700;
}

.location-card .loc-desc {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.location-card .loc-footer {
  margin-top: auto;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--gold-200);
  font-weight: 700;
}

/* ==========================================================================
   Profile Cards / Gallery
   ========================================================================== */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin-bottom: 2.8rem;
}

.filter-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-secondary);
  padding: 0.55rem 1.3rem;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--gold-gradient);
  color: #06080d;
  font-weight: 800;
  border-color: transparent;
  box-shadow: 0 4px 18px rgba(223, 178, 53, 0.4);
}

.profiles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 1.85rem;
}

.profile-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07), var(--shadow-md);
  backdrop-filter: blur(14px);
}

.profile-card:hover {
  transform: translateY(-7px);
  border-color: var(--border-active);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.8), var(--shadow-glow);
}

.profile-img-wrap {
  position: relative;
  width: 100%;
  height: 350px;
  background: #111622;
  overflow: hidden;
}

.profile-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.profile-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
}

.profile-status {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.75rem;
  background: rgba(6, 8, 13, 0.75);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-full);
  font-size: 0.76rem;
  color: #2fe073;
  font-weight: 700;
  border: 1px solid rgba(47, 224, 115, 0.25);
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #2fe073;
  border-radius: 50%;
  animation: pulseGreen 1.8s infinite;
}

@keyframes pulseGreen {
  0% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(47, 224, 115, 0.8); }
  70% { transform: scale(1); box-shadow: 0 0 0 7px rgba(47, 224, 115, 0); }
  100% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(47, 224, 115, 0); }
}

.profile-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background: var(--bg-card);
  flex-grow: 1;
}

.profile-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.profile-name {
  font-size: 1.3rem;
  font-weight: 700;
}

.profile-age {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.profile-meta-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.meta-pill {
  font-size: 0.76rem;
  padding: 0.25rem 0.65rem;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
}

.profile-rate {
  margin-top: 0.4rem;
  font-size: 0.92rem;
  color: var(--gold-200);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.profile-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  margin-top: 0.85rem;
  padding-top: 0.95rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* ==========================================================================
   Services Grid
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  gap: 1.85rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), var(--shadow-sm);
  backdrop-filter: blur(14px);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-active);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.75), var(--shadow-glow);
  background: var(--bg-card-hover);
}

.service-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: var(--gold-gradient-glow);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--gold-200);
  box-shadow: 0 4px 15px rgba(223, 178, 53, 0.2);
}

.service-title {
  font-size: 1.3rem;
}

.service-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ==========================================================================
   VIP Rates / Tariff Table
   ========================================================================== */
.rates-table-wrap {
  overflow-x: auto;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), var(--shadow-md);
  backdrop-filter: blur(16px);
}

.rates-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.rates-table th, .rates-table td {
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.rates-table th {
  font-family: var(--font-heading);
  color: var(--gold-200);
  font-size: 0.98rem;
  background: rgba(6, 8, 13, 0.65);
}

.rates-table tr:hover td {
  background: rgba(223, 178, 53, 0.06);
}

.rates-table td.price {
  font-weight: 800;
  color: #2fe073;
  font-size: 1.05rem;
}

/* ==========================================================================
   VIP Testimonials / Reviews
   ========================================================================== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  gap: 1.65rem;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 1.85rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  position: relative;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), var(--shadow-sm);
  backdrop-filter: blur(12px);
}

.review-card:hover {
  border-color: var(--border-active);
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.65), var(--shadow-glow);
}

.review-stars {
  color: var(--gold-300);
  font-size: 0.95rem;
  display: flex;
  gap: 0.25rem;
}

.review-text {
  font-size: 0.92rem;
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.65;
}

.review-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.review-author .author-name {
  font-weight: 700;
  font-size: 0.92rem;
  color: #ffffff;
}

.review-author .author-location {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Live Booking Social Proof Toast
   ========================================================================== */
.vip-live-toast {
  position: fixed;
  bottom: 85px;
  left: 20px;
  background: rgba(12, 16, 25, 0.96);
  border: 1px solid var(--border-active);
  border-radius: var(--radius-md);
  padding: 0.95rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.95rem;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.85), var(--shadow-glow);
  backdrop-filter: blur(14px);
  z-index: 1001;
  max-width: 350px;
  animation: slideInToast 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.vip-live-toast.hide {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.4s ease;
}

@keyframes slideInToast {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

.toast-icon {
  font-size: 1.5rem;
  color: #2fe073;
}

.toast-content {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.toast-title {
  font-size: 0.78rem;
  color: var(--gold-200);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.toast-desc {
  font-size: 0.84rem;
  color: #ffffff;
  line-height: 1.35;
}

.toast-time {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.toast-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.25rem;
  cursor: pointer;
  margin-left: auto;
  align-self: flex-start;
}

/* ==========================================================================
   Nightlife & City Guide
   ========================================================================== */
.nightlife-banner {
  background: linear-gradient(135deg, rgba(16, 21, 33, 0.96), rgba(6, 8, 13, 0.98));
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 3.8rem 2.5rem;
  margin: 3rem 0;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), var(--shadow-md);
  backdrop-filter: blur(16px);
}

.nightlife-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.6rem;
  margin-top: 2.8rem;
}

.nightlife-card {
  background: rgba(6, 8, 13, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-md);
  padding: 1.65rem;
  text-align: left;
  transition: var(--transition);
}

.nightlife-card:hover {
  border-color: var(--border-active);
  transform: translateY(-3px);
}

.nightlife-card h4 {
  color: var(--gold-200);
  font-size: 1.15rem;
  margin-bottom: 0.45rem;
}

.nightlife-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */
.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
}

.faq-item.active {
  border-color: var(--border-active);
  box-shadow: var(--shadow-glow);
}

.faq-question {
  padding: 1.35rem 1.6rem;
  font-size: 1.08rem;
  font-weight: 600;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.faq-question:hover {
  color: var(--gold-200);
}

.faq-icon {
  font-size: 0.95rem;
  color: var(--gold-300);
  transition: var(--transition);
}

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

.faq-answer {
  padding: 0 1.6rem 1.35rem;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
  display: none;
}

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

/* ==========================================================================
   SEO Content Block
   ========================================================================== */
.seo-content-box {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.75rem;
  line-height: 1.8;
  color: var(--text-secondary);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), var(--shadow-md);
  backdrop-filter: blur(16px);
}

.seo-content-box h2 {
  font-size: 1.85rem;
  margin-bottom: 1.25rem;
  color: #ffffff;
}

.seo-content-box h3 {
  font-size: 1.35rem;
  margin: 1.75rem 0 0.85rem;
  color: var(--gold-200);
}

.seo-content-box p {
  margin-bottom: 1.1rem;
  font-size: 0.94rem;
}

.seo-content-box ul {
  margin-left: 1.5rem;
  margin-bottom: 1.25rem;
}

.seo-content-box li {
  margin-bottom: 0.65rem;
  font-size: 0.94rem;
  list-style-type: disc;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: #040609;
  border-top: 1px solid var(--border-subtle);
  padding: 4.5rem 0 6rem;
  position: relative;
  z-index: 10;
}

.disclaimer-box {
  background: rgba(223, 178, 53, 0.06);
  border: 1px solid rgba(223, 178, 53, 0.18);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.6rem;
  font-size: 0.84rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.6;
  margin-bottom: 3.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.footer-title {
  font-size: 1.15rem;
  color: var(--gold-200);
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold-200);
  transform: translateX(4px);
}

.footer-badge-list {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.copyright-bar {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.84rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Mobile Floating Action Bar
   ========================================================================== */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(6, 8, 13, 0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-top: 1px solid var(--border-active);
  padding: 0.65rem 1rem;
  z-index: 9999;
  box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.8);
}

.bottom-action-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 0.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 700;
  text-align: center;
  color: #ffffff;
}

.btn-floating-call {
  background: rgba(223, 178, 53, 0.18);
  border: 1px solid var(--gold-400);
  color: var(--gold-100);
}

.btn-floating-wa {
  background: var(--whatsapp-gradient);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.btn-floating-tg {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .calculator-box {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 860px) {
  .nav-links {
    position: fixed;
    top: 84px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 84px);
    background: rgba(6, 8, 13, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem 1.75rem 5rem;
    overflow-y: auto;
    transition: left 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
    border-top: 1px solid var(--border-subtle);
    z-index: 999;
  }

  .nav-links.active, .nav-links.show {
    left: 0;
  }

  .nav-item {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.35rem 0;
  }

  .nav-link {
    font-size: 1.05rem;
    padding: 0.6rem 0;
    width: 100%;
    justify-content: space-between;
  }

  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(223, 178, 53, 0.12);
    border: 1px solid var(--border-subtle);
    color: var(--gold-200);
  }

  .header-actions .btn-call {
    display: none;
  }

  .nav-link i.fa-chevron-down {
    transition: transform 0.3s ease;
  }

  .has-dropdown.mobile-open .nav-link i.fa-chevron-down {
    transform: rotate(180deg);
    color: var(--gold-200);
  }

  .mega-dropdown-menu, .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    width: 100%;
    max-height: 450px;
    overflow-y: auto;
    box-shadow: none;
    border: 1px solid rgba(223, 178, 53, 0.25);
    padding: 0.75rem 0.5rem;
    background: rgba(8, 11, 18, 0.95);
    border-radius: var(--radius-sm);
    margin-top: 0.5rem;
    display: none;
  }

  .has-dropdown.mobile-open .mega-dropdown-menu,
  .has-dropdown.mobile-open .dropdown-menu {
    display: block;
    animation: fadeIn 0.25s ease-out;
  }

  .mega-dropdown-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
  }

  .dropdown-item {
    padding: 0.35rem 0.45rem;
    font-size: 0.80rem;
  }

  .loc-mini-tag {
    display: none; /* Hide mini tags on mobile dropdown to save space and keep it ultra-clean */
  }

  .mega-dropdown-footer {
    flex-direction: column;
    gap: 0.4rem;
    text-align: center;
  }

  .hero-title {
    font-size: 2.4rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .mobile-bottom-bar {
    display: flex;
    gap: 0.5rem;
  }

  .site-footer {
    padding-bottom: 6.5rem;
  }

  .vip-live-toast {
    bottom: 75px;
    left: 10px;
    right: 10px;
    max-width: none;
  }
}

@media (max-width: 520px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-features {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .calculator-box {
    padding: 1.5rem;
  }

  .seo-content-box {
    padding: 1.5rem;
  }
}
