/* ================================================================
   MODERN CLEAN THEME — Professional Blue & White Design
   Primary: #3B82F6 (Modern Blue) | Surface: #FFFFFF | Text: #1F2937
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@600;700;800&display=swap');

:root {
  /* --- Colors --- */
  --primary:       #3B82F6;      /* Bright Modern Blue */
  --primary-dark:  #2563EB;      /* Darker Blue */
  --secondary:     #10B981;      /* Fresh Green */
  --accent:        #F59E0B;      /* Warm Orange */
  --text-main:     #111827;      /* Dark Grey */
  --text-muted:    #6B7280;      /* Soft Grey */
  --bg-body:       #F3F4F6;      /* Light Grey Background */
  --bg-surface:    #FFFFFF;      /* White Surface */
  --border-color:  #E5E7EB;      /* Light Border */
  
  /* --- Shadows & Radius --- */
  --shadow-sm:     0 1px 2px 0 rgba(0,0,0,0.05);
  --shadow-md:     0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
  --shadow-lg:     0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
  --radius-md:     12px;
  --radius-lg:     16px;
  
  /* --- Transition --- */
  --transition:    all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ================================================================ BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { width: 100%; max-width: 100%; overflow-x: hidden !important; scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-body); color: var(--text-main);
  line-height: 1.6; font-size: 16px;
  padding-bottom: 70px; /* Space for bottom bar */
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { display: block; max-width: 100%; height: auto; }
ul { list-style: none; }

/* ================================================================
   NAVBAR
   ================================================================ */
.navbar.fixed-top { left: 0; right: 0; width: 100%; top: 0; }
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  padding: 0; border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm); z-index: 1000;
}
.navbar > .container { 
  height: 80px; display: flex; align-items: center; justify-content: space-between; 
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
}

.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-size: 24px; font-weight: 800; color: var(--text-main);
  position: relative; padding-right: 20px;
}
.navbar-brand:hover { color: var(--primary); }
.navbar-brand::after {
  content: ''; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  height: 24px; width: 3px; background: var(--primary); border-radius: 2px;
}

.nav-link {
  font-size: 15px; font-weight: 600; color: var(--text-muted) !important;
  padding: 8px 16px !important; position: relative; border-radius: 6px;
}
.nav-link:hover { color: var(--primary) !important; background: rgba(59, 130, 246, 0.05); }

.navbar-toggler {
  border: none; background: transparent; padding: 8px;
}
.navbar-toggler i { color: var(--text-main); font-size: 20px; }

/* Mobile Offcanvas */
.offcanvas { width: 300px !important; background: var(--bg-surface); border-left: 1px solid var(--border-color); }
.offcanvas-header {
  border-bottom: 1px solid var(--border-color); padding: 20px; background: #F9FAFB;
}
.offcanvas-title {
  font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--text-main);
}
.mobile-menu .nav-link {
  display: block; padding: 16px 24px !important; border-bottom: 1px solid var(--border-color);
  color: var(--text-main) !important;
}
.mobile-menu .nav-link:hover { background: var(--primary); color: #fff !important; padding-left: 32px !important; }

@media(min-width:992px) { .mobile-only { display: none !important; } }

/* ================================================================
   HERO SECTION
   ================================================================ */
.hero {
  position: relative; min-height: 90vh; padding-top: 80px;
  display: flex; align-items: center; justify-content: center;
  background: #fff; overflow: hidden;
}
.hero-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;;
}
/* Modern Gradient Overlay */
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(59,130,246,0.05) 0%, rgba(16,185,129,0.05) 100%);
}

.hero-inner {
  position: relative; z-index: 3; width: 100%; max-width: 1000px;
  padding: 60px 20px; text-align: center;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 56px; line-height: 1.1; font-weight: 800;
  color: var(--text-main); margin-bottom: 24px; letter-spacing: -1px;
}
.hero h1 span { color: var(--primary); font-style: italic; display: inline; }

.hero-select-box {
  max-width: 500px; margin: 40px auto 0;
  padding: 30px; background: var(--bg-surface);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color); position: relative;
}
/* Top Accent */
.hero-select-box::before {
  content: ''; position: absolute; top: 0; left: 20px; right: 20px; height: 4px;
  background: var(--primary); border-radius: 0 0 4px 4px;
}

.hero-select-subtitle {
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  color: var(--text-muted); margin-bottom: 16px;
}
.hero-select-wrapper { position: relative; width: 100%; }
.hero-city-select {
  width: 100%; padding: 16px 48px 16px 20px;
  border: 2px solid var(--border-color); border-radius: var(--radius-md);
  background: #fff; color: var(--text-main); font-size: 16px; font-weight: 500;
  outline: none; cursor: pointer; appearance: none; transition: var(--transition);
}
.hero-city-select:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(59,130,246,0.1); }
.hero-select-wrapper::after {
  content: "▼"; font-size: 12px; color: var(--primary);
  position: absolute; right: 20px; top: 50%; transform: translateY(-50%); pointer-events: none;
}

/* ================================================================
   VIDEO SECTION — Clean Modern Style
   ================================================================ */
.hero-video {
  position: relative; overflow: hidden; background: #000; width: 100%; margin-top: 40px;
}

.hero-video-banner {
  width: 100%; background: var(--text-main);
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 32px;
}
.hero-video-banner-left {
  font-size: 13px; font-weight: 700; letter-spacing: 1px;
  color: #fff; text-transform: uppercase; display: flex; align-items: center; gap: 12px;
}
.live-dot {
  width: 10px; height: 10px; border-radius: 50%; background: var(--secondary);
  box-shadow: 0 0 10px var(--secondary); animation: blink 1.5s infinite;
}
@keyframes blink { 50% { opacity: 0.4; } }

.hero-video-banner-right {
  font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700;
  color: var(--accent); font-style: italic;
}

.hero-video-wrap { position: relative; max-width: 1400px; margin: 0 auto; }
.hero-video-wrap::before {
  content: ''; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 40%);
}
.hero-video video {
  width: 100%; height: 600px; object-fit: cover; display: block;
  /* Subtle blue tint */
  filter: contrast(1.1) brightness(0.9); 
}

.hero-video-footer {
  width: 100%; background: #fff; border: 1px solid var(--border-color);
  display: flex; align-items: center; justify-content: center; gap: 20px;
  padding: 24px; margin: 0 auto; max-width: 1400px;
  position: relative; top: -40px; z-index: 3; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
}
.hero-video-footer a {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase;
  padding: 14px 32px; border-radius: 50px; transition: var(--transition);
}
.hero-video-footer a:first-child {
  background: var(--primary); color: #fff;
}
.hero-video-footer a:first-child:hover { background: var(--primary-dark); transform: translateY(-2px); }
.hero-video-footer a:last-child {
  background: #fff; color: var(--text-main); border: 2px solid var(--border-color);
}
.hero-video-footer a:last-child:hover { border-color: var(--primary); color: var(--primary); }

@media(max-width:768px){
  .hero-video video { height: 300px; }
  .hero-video-banner { flex-direction: column; gap: 8px; text-align: center; padding: 16px; }
  .hero-video-footer { flex-direction: column; width: 90%; top: -20px; padding: 16px; }
  .hero-video-footer a { width: 100%; justify-content: center; }
  .hero h1 { font-size: 32px; }
}

/* ================================================================
   FEATURE SECTIONS
   ================================================================ */
.adult-feature-section {
  padding: 100px 0; position: relative; background: var(--bg-surface);
}
.adult-feature-section.alt { background: #F9FAFB; }

/* Clean Background Pattern */
.adult-feature-section::before {
  content: ''; position: absolute; inset: 0; opacity: 0.4; pointer-events: none;
  background-image: radial-gradient(#E5E7EB 1px, transparent 1px);
  background-size: 24px 24px;
}

.adult-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 2; }
.adult-row { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

.adult-image { position: relative; }
.adult-image-frame {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.adult-image img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  transition: transform 0.6s ease;
}
.adult-image:hover img { transform: scale(1.05); }

/* Big Number Styling */
.adult-image-num {
  position: absolute; bottom: -30px; right: -20px;
  font-family: 'Playfair Display', serif; font-size: 120px; line-height: 1;
  color: #F3F4F6; font-weight: 800; z-index: -1; pointer-events: none;
}

.adult-content { padding: 0; }
.adult-eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--primary); margin-bottom: 16px; display: flex; align-items: center; gap: 10px;
}
.adult-eyebrow::before { content: ''; width: 24px; height: 3px; background: var(--primary); border-radius: 2px; }

.adult-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px; line-height: 1.2; font-weight: 700;
  color: var(--text-main); margin-bottom: 24px;
}
.adult-content h2 em { font-style: italic; color: var(--primary); }
.adult-content p { font-size: 16px; line-height: 1.8; color: var(--text-muted); margin-bottom: 20px; }
.adult-content p a { color: var(--primary); font-weight: 600; text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 4px; }

.adult-divider { height: 4px; width: 40px; margin: 30px 0; background: var(--primary); border-radius: 2px; }
.adult-feature-section.alt .adult-divider { background: var(--secondary); }

.adult-cta { display: flex; gap: 16px; margin-top: 30px; flex-wrap: wrap; }
.adult-btn-call {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--primary); color: #fff;
  padding: 16px 32px; border-radius: 50px; font-weight: 600; font-size: 14px;
  letter-spacing: 0.5px; text-transform: uppercase; transition: var(--transition);
  box-shadow: 0 4px 14px rgba(59, 130, 246, 0.3);
}
.adult-btn-call:hover { background: var(--primary-dark); transform: translateY(-3px); box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4); }

.adult-btn-wa {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; color: var(--text-main);
  padding: 16px 32px; border-radius: 50px; font-weight: 600; font-size: 14px;
  letter-spacing: 0.5px; text-transform: uppercase; border: 2px solid var(--border-color);
  transition: var(--transition);
}
.adult-btn-wa:hover { border-color: var(--secondary); color: var(--secondary); background: #F0FDF4; transform: translateY(-3px); }

@media(max-width:992px){
  .adult-row { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .adult-cta { justify-content: center; }
  .adult-eyebrow { justify-content: center; }
  .adult-image-num { display: none; }
  .adult-divider { margin: 20px auto; }
}

/* ================================================================
   LISTING CARDS
   ================================================================ */
.escort-feature-section { padding: 100px 20px; position: relative; background: #F8FAFC; }

.listings-title { text-align: center; margin-bottom: 60px; position: relative; z-index: 2; }
.listings-title h2 {
  font-family: 'Playfair Display', serif;
  font-size: 40px; font-weight: 800; color: var(--text-main); margin-bottom: 12px;
}
.listings-title h2::before { content: '•'; margin-right: 12px; color: var(--primary); }
.listings-title h2::after  { content: '•'; margin-left: 12px; color: var(--secondary); }
.listings-title p { font-size: 14px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

.listings-wrap {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr));
  gap: 30px; padding: 0 20px; position: relative; z-index: 2;
}

.listing-card {
  background: var(--bg-surface); overflow: hidden;
  border-radius: var(--radius-lg); border: 1px solid var(--border-color);
  transition: var(--transition); display: flex; flex-direction: column; position: relative;
}
.listing-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }

.listing-img { position: relative; overflow: hidden; aspect-ratio: 3/4; }
.listing-img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(20%); transition: 0.5s;
}
.listing-card:hover .listing-img img { filter: grayscale(0%); transform: scale(1.05); }

.listing-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
}
.listing-badge {
  position: absolute; top: 16px; left: 16px; z-index: 5;
  font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  padding: 6px 14px; color: #fff; background: var(--primary); border-radius: 20px; box-shadow: var(--shadow-md);
}
.listing-card:nth-child(even) .listing-badge { background: var(--secondary); }
.listing-age {
  position: absolute; bottom: 16px; right: 16px; z-index: 5;
  font-size: 18px; font-weight: 700; color: #fff; font-family: 'Playfair Display', serif; background: rgba(0,0,0,0.5); padding: 4px 10px; border-radius: 8px; backdrop-filter: blur(4px);
}

.listing-body { padding: 24px; flex: 1; display: flex; flex-direction: column; background: #fff; }
.profile-name {
  font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--text-main); margin-bottom: 4px;
}
.profile-sub {
  font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: var(--primary); margin-bottom: 16px; font-weight: 600;
}
.listing-sep { height: 1px; margin: 16px 0; background: var(--border-color); }

.listing-btns { display: flex; gap: 12px; margin-top: auto; }
.listing-btns a {
  flex: 1; height: 44px; display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 12px; font-weight: 700; text-transform: uppercase; border-radius: 8px; transition: var(--transition);
}
.btn-tg { background: var(--primary); color: #fff; }
.btn-tg:hover { background: var(--primary-dark); }
.btn-wa { background: #F3F4F6; color: var(--text-main); border: 1px solid transparent; }
.btn-wa:hover { background: #ECFDF5; color: var(--secondary); border-color: var(--secondary); }

@media(max-width:768px){
  .listings-wrap { grid-template-columns: repeat(auto-fill, minmax(240px,1fr)); gap: 20px; }
  .listings-title h2 { font-size: 28px; }
}

/* ================================================================
   ESCORT CONTENT & TABLES
   ================================================================ */
.escort-content-section { padding: 80px 20px; background: var(--bg-surface); position: relative; }
.escort-content-section::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 6px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.escort-container { max-width: 900px; margin: auto; position: relative; z-index: 2; }
.escort-title {
  font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; color: var(--text-main);
  margin-bottom: 20px; padding-bottom: 16px; border-bottom: 2px solid var(--border-color);
}
.escort-text { font-size: 16px; line-height: 1.8; margin-bottom: 24px; color: var(--text-muted); }
.escort-text a { color: var(--primary); font-weight: 600; }

.escort-points { list-style: none; padding: 0; margin: 24px 0; }
.escort-points li {
  padding: 12px 0 12px 30px; font-size: 16px; color: var(--text-muted); position: relative; border-bottom: 1px solid var(--border-color);
}
.escort-points li::before {
  content: "✓"; position: absolute; left: 0; top: 12px; color: var(--secondary); font-weight: 800;
}

.escort-table { width: 100%; border-collapse: collapse; margin: 30px 0; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); }
.escort-table th { background: var(--primary); color: #fff; padding: 16px; text-align: left; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.escort-table th:last-child { background: var(--secondary); }
.escort-table td { padding: 16px; color: var(--text-main); font-size: 15px; border-bottom: 1px solid var(--border-color); background: #fff; }
.escort-table tbody tr:hover td { background: #F9FAFB; }

/* ================================================================
   LOCATIONS SECTION
   ================================================================ */
.locations-section { padding: 100px 20px; background: #F9FAFB; position: relative; }
.locations-container { max-width: 1200px; margin: auto; position: relative; z-index: 2; }
.locations-title {
  font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 700; color: var(--text-main);
  margin-bottom: 40px; text-align: center; position: relative;
}
.locations-title::after {
  content: ''; display: block; width: 60px; height: 4px; background: var(--primary); margin: 16px auto 0; border-radius: 2px;
}

.locations-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px,1fr)); gap: 16px; }
.loc-btn {
  display: block; padding: 16px; font-size: 14px; font-weight: 600; text-align: center; color: var(--text-muted);
  background: #fff; border: 1px solid var(--border-color); border-radius: var(--radius-md);
  transition: var(--transition);
}
.loc-btn:hover {
  background: #fff; border-color: var(--primary); color: var(--primary);
  box-shadow: var(--shadow-md); transform: translateY(-4px);
}

/* ================================================================
   TAGS SECTION
   ================================================================ */
.tags-section { background: #fff; padding: 60px 0; border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); }
.tags-title { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700; color: var(--text-main); margin-bottom: 24px; text-align: center; }
.tags-wrap { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.tag-item {
  padding: 8px 20px; font-size: 13px; font-weight: 600; background: #F3F4F6; color: var(--text-muted);
  border: 1px solid transparent; border-radius: 50px; transition: var(--transition); cursor: pointer;
}
.tag-item:hover { background: var(--primary); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-sm); }

/* ================================================================
   FOOTER — Modern & Clean
   ================================================================ */
.lx2-footer-wrap { background: #fff; color: var(--text-muted); border-top: 1px solid var(--border-color); }
.footer-copy {color:#000}
.footer-stat-band { display: grid; grid-template-columns: repeat(4,1fr); background: var(--text-main); }
.footer-stat-item { padding: 40px 20px; text-align: center; color: #fff; position: relative; }
.footer-stat-item:not(:last-child)::after {
  content: ''; position: absolute; right: 0; top: 20%; bottom: 20%; width: 1px; background: rgba(255,255,255,0.1);
}
.footer-stat-num { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 800; color: #fff; line-height: 1; margin-bottom: 8px; }
.footer-stat-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: #9CA3AF; }

.footer-main { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding: 60px 24px; max-width: 1280px; margin: 0 auto; }
.footer-col { padding: 0; border: none; }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 800; color: var(--text-main); margin-bottom: 20px; display: block; }
.footer-logo span { color: var(--primary); }
.footer-about-text { font-size: 14px; line-height: 1.7; color: var(--text-muted); margin-bottom: 24px; }
.footer-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.footer-badge {
  display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; font-size: 11px; font-weight: 700;
  background: #EFF6FF; color: var(--primary); border-radius: 6px; text-transform: uppercase;
}

.footer-col-title { font-size: 16px; font-weight: 700; color: var(--text-main); margin-bottom: 24px; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: var(--text-muted); font-size: 14px; transition: var(--transition); display: block; }
.footer-links a:hover { color: var(--primary); padding-left: 5px; }

.footer-contact-item { display: flex; gap: 16px; margin-bottom: 20px; }
.footer-contact-icon {
  width: 40px; height: 40px; background: #EFF6FF; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: var(--primary); flex-shrink: 0;
}
.footer-contact-text { font-size: 14px; color: var(--text-muted); padding-top: 8px; }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; padding: 24px; border-top: 1px solid var(--border-color); background: #F9FAFB; font-size: 13px;
}
.footer-bottom a { color: var(--text-muted); }
.footer-bottom a:hover { color: var(--primary); }

@media(max-width:1024px){
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-stat-band { grid-template-columns: repeat(2,1fr); }
}
@media(max-width:600px){
  .footer-main { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

/* ================================================================
   FLOATING CALL BAR — Minimalist Design
   ================================================================ */
.nowcalling {
  display: block; position: fixed; bottom: 0; left: 0; width: 100%; z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.05);
}
.lcol, .rcol { float: left; width: 50%; }
.lcol a, .rcol a {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 18px 0; text-align: center; font-family: 'Inter', sans-serif; font-weight: 700;
  font-size: 14px; text-transform: uppercase; letter-spacing: 1px; color: #fff; transition: 0.3s;
}
.lcol { background: var(--primary); }
.lcol:hover { background: var(--primary-dark); }
.rcol { background: var(--secondary); }
.rcol:hover { background: #059669; }

/* ================================================================
   FLOATING ICONS — Modern Round Buttons
   ================================================================ */
.floating-icon {
  position: fixed; right: 24px; width: 56px; height: 56px; z-index: 99999;
  border-radius: 50%; box-shadow: var(--shadow-lg); transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.floating-icon a { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; border-radius: 50%; }
.floating-icon:hover { transform: scale(1.1); }
.floating-icon img { width: 24px; height: 24px; filter: brightness(0) invert(1); }

.telegram-icon { bottom: 80px; background: var(--primary); }
.whatsapp-icon { bottom: 150px; background: var(--secondary); }
.call-icon { bottom: 220px; background: var(--text-main); }

@media(max-width:480px){
  .floating-icon { right: 16px; width: 48px; height: 48px; }
  .telegram-icon { bottom: 75px; }
  .whatsapp-icon { bottom: 135px; }
  .call-icon { bottom: 195px; }
}

/* ================================================================
   AGE VERIFICATION OVERLAY — Clean Modal
   ================================================================ */
html.age-gate-open, html.age-gate-open body, body.age-gate-open {
  overflow: hidden !important; height: 100% !important; touch-action: none !important;
}
body.age-gate-open .floating-icon, body.age-gate-open .nowcalling, body.age-gate-open #cookie-bar, body.age-gate-open .navbar {
  visibility: hidden !important; pointer-events: none !important;
}

#age-gate {
  position: fixed; inset: 0; z-index: 9999999;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center; padding: 20px;
}
.age-card {
  max-width: 450px; width: 100%; background: #fff; border: 1px solid var(--border-color);
  position: relative; text-align: center; padding: 40px; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
}
.age-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 6px;
  background: linear-gradient(90deg, var(--primary), var(--secondary)); border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.age-badge {
  width: 70px; height: 70px; border-radius: 50%; background: #EFF6FF; border: 2px solid var(--primary);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 24px;
  font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 800; color: var(--primary);
}
.age-card h2 { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 800; color: var(--text-main); margin-bottom: 12px; }
.age-card h2 span { color: var(--primary); font-style: italic; }
.age-card p { font-size: 15px; color: var(--text-muted); line-height: 1.6; margin-bottom: 30px; }

.age-actions { display: flex; gap: 16px; }
.age-btn-yes, .age-btn-no {
  flex: 1; padding: 16px; font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 700; letter-spacing: 0.5px;
  text-transform: uppercase; border: none; cursor: pointer; border-radius: 8px; transition: var(--transition);
}
.age-btn-yes { background: var(--primary); color: #fff; box-shadow: 0 4px 14px rgba(59,130,246,0.3); }
.age-btn-yes:hover { background: var(--primary-dark); transform: translateY(-2px); }
.age-btn-no { background: #F3F4F6; color: var(--text-muted); }
.age-btn-no:hover { background: #E5E7EB; color: var(--text-main); }

.age-disclaimer { margin-top: 24px; font-size: 12px; color: #9CA3AF; line-height: 1.5; }
.age-disclaimer a { color: var(--text-muted); text-decoration: underline; }

@media(max-width:480px) {
  .age-card { padding: 30px 20px; }
  .age-actions { flex-direction: column; }
}

/* ================================================================
   COOKIE CONSENT BANNER — Modern Bottom Bar
   ================================================================ */
#cookie-bar {
  position: fixed; bottom: 70px; left: 20px; right: 20px; z-index: 9998;
  background: #fff; border-radius: var(--radius-lg); border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg); padding: 24px; display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
.cookie-accent { width: 4px; height: 40px; background: var(--primary); border-radius: 2px; flex-shrink: 0; }
.cookie-text { flex: 1; min-width: 250px; }
.cookie-text strong { display: block; font-size: 14px; font-weight: 700; color: var(--text-main); margin-bottom: 4px; }
.cookie-text p { font-size: 13px; color: var(--text-muted); line-height: 1.5; margin: 0; }
.cookie-text a { color: var(--primary); text-decoration: underline; }

.cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-btn-accept, .cookie-btn-decline {
  padding: 12px 24px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
  border: none; cursor: pointer; border-radius: 8px; transition: var(--transition);
}
.cookie-btn-accept { background: var(--primary); color: #fff; }
.cookie-btn-accept:hover { background: var(--primary-dark); }
.cookie-btn-decline { background: #F3F4F6; color: var(--text-muted); }
.cookie-btn-decline:hover { background: #E5E7EB; }

@media(max-width:600px) {
  #cookie-bar { flex-direction: column; left: 10px; right: 10px; bottom: 70px; padding: 20px; }
  .cookie-accent { width: 100%; height: 4px; }
  .cookie-actions { width: 100%; }
  .cookie-btn-accept, .cookie-btn-decline { flex: 1; text-align: center; }
}
