/* =========================================================
   Elite Escort - style.css
   Sections: tokens, base, header, hero, components,
   sections, footer, widgets, animations, responsive, print
   ========================================================= */

/* ---------- DESIGN TOKENS (dark theme is default) ---------- */
:root {
  --color-bg: #0A0A0A;
  --color-surface: #1A1A1A;
  --color-accent: #E91E63;
  /* brand pink-red */
  --color-accent-2: #D50000;
  /* deep red */
  --color-gold: #E91E63;
  /* brand accent */
  --color-white: #F5F5F5;
  --color-muted: #A0A0B0;
  --color-success: #10B981;
  --color-warning: #F59E0B;
  --color-error: #EF4444;
  --color-glass: rgba(255, 255, 255, 0.05);
  --color-border: rgba(233, 30, 99, 0.2);
  --shadow-accent: 0 0 30px rgba(233, 30, 99, 0.25);
  --shadow-gold: 0 0 20px rgba(233, 30, 99, 0.3);
  --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --radius-lg: 1.25rem;
  --radius-full: 9999px;
  --gradient: linear-gradient(135deg, #E91E63, #D50000);
  --gradient-hero: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 50%, #0D0D0D 100%);
}

/* Optional light mode (dark is default; toggle still available) */
[data-theme="light"] {
  --color-bg: #F9FAFB;
  --color-surface: #FFFFFF;
  --color-white: #111827;
  --color-muted: #6B7280;
  --color-glass: rgba(0, 0, 0, 0.04);
  --color-border: rgba(233, 30, 99, 0.2);
}

/* ---------- BASE ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-width: 320px;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: var(--color-bg);
  color: var(--color-white);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  align-items: center;
}

h1,
h2,
h3,
h4 {
  font-family: 'Playfair Display', Georgia, serif;
}

main,
header,
footer {
  width: 100%;
  max-width: 100%;
}

/* Zoom-out centering + normalized container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 60px 0;
}

body.menu-open {
  overflow: hidden;
}

@media (max-width: 767px) {
  .container {
    padding: 0 12px;
  }

  .section {
    padding: 24px 0;
  }
}

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

a {
  color: inherit;
  text-decoration: none;
  color: #e91e63 !important;
}

h1,
h2,
h3,
h4 {
  line-height: 1.2;
  font-weight: 700;
}

h2 {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  margin-bottom: .5rem;
}

h3 {
  font-size: 1.2rem;
}



.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 2000;
  background: var(--color-accent);
  color: #fff;
  padding: .75rem 1.25rem;
  border-radius: 0 0 var(--radius-lg) 0;
}

.skip-link:focus {
  left: 0;
}

:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 2px;
}

.section {
  padding: 1rem 0;
}

.section-sub {
  color: var(--color-muted);
  margin-bottom: 1.5rem;
}

.tag {
  display: inline-block;
  background: var(--color-glass);
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
  padding: .25rem .9rem;
  border-radius: var(--radius-full);
  font-size: .8rem;
  margin-bottom: .75rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}



/* ---------- BUTTONS ---------- */
.btn {
  border-radius: var(--radius-full);
  font-weight: 600;
  transition: var(--transition-base);
  border: none;
}

.btn-accent {
  background: #000;
  color: #fff;
  border: 2px solid #fff;
}

.btn-accent:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-accent);
  color: #fff;
}

.btn-outline-accent {
  background: transparent;
  color: var(--color-white);
  border: 1px solid var(--color-accent);
}

.btn-outline-accent:hover {
  background: #000000;
  color: #fff;
  transform: translateY(-3px);
}

.btn-white {
  background: #ffffff;
  color: var(--color-accent);
}

.btn-white:hover {
  background: #f8f9fa;
  color: var(--color-accent-2);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}





/* ---------- SCROLL PROGRESS ---------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 0;
  background: var(--gradient);
  z-index: 1100;
}



/* ---------- 2. HEADER ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition-base);
  background: transparent;
  padding: 5px 0;
}

.site-header.scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, .3);
  padding: 10px 0;
}

[data-theme="light"] .site-header.scrolled {
  background: rgba(255, 255, 255, 0.85);
}

.brand-name {
  font-weight: 800;
  font-size: 1.3rem;
  white-space: nowrap;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  padding: 5px 0;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-left: auto;
  flex-wrap: nowrap;
}

.nav-list {
  display: flex;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
}

.nav-list a {
  font-weight: 500;
  transition: var(--transition-base);
}

.nav-list a:hover {
  color: var(--color-accent);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: .5rem;
}






/* ---------- 3. HERO ---------- */
.hero {
  position: relative;

  display: flex;
  align-items: center;
  text-align: center;
  overflow: hidden;
  background: radial-gradient(circle at 50% 30%, rgba(233, 30, 99, .15), transparent 60%), var(--color-bg);
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}



/* ---------- 4. TRUST MARQUEE ---------- */
.trust-bar {
  background: var(--color-surface);
  padding: .9rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee {
  display: inline-flex;
  animation: marquee 25s linear infinite;
}

.marquee span {
  padding-right: 2rem;
  font-weight: 500;
}

.trust-bar:hover .marquee {
  animation-play-state: paused;
}

/* ---------- CARDS / COMPONENTS ---------- */
.glass,
.profile-card,
.pkg-card,
.review-card,
.reason-item {
  background: var(--color-glass);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  position: relative;
  transition: var(--transition-base);
  height: 100%;
}

.pkg-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-accent);
}



/* About images */
.about-img {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  height: 100%;
}

.about-img img {
  width: 100%;
  flex: 1;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.exp-badge,
.client-badge {
  position: absolute;
  background: var(--gradient);
  color: #fff;
  padding: .5rem 1rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: .9rem;
}

.exp-badge {
  top: 1rem;
  left: 1rem;
}

.client-badge {
  bottom: 1rem;
  right: 1rem;
}

/* Counters */
.stats-section {
  background: var(--color-surface);
}

.counter.big {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-accent);
}

/* ---------- 7. PROFILES ---------- */
.filter-bar {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1.5rem 0;
}

.filter-tabs {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}

.filter-tab {
  background: var(--color-glass);
  border: 1px solid transparent;
  color: var(--color-white);
  padding: .4rem 1rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition-base);
}

.filter-tab.active,
.filter-tab:hover {
  background: var(--gradient);
}

.filter-search {
  background: var(--color-glass);
  border: 1px solid var(--color-muted);
  border-radius: var(--radius-full);
  padding: .5rem 1.2rem;
  color: var(--color-white);
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2.5rem;
}

.profile-card {
  display: flex;
  gap: 1rem;
}

.profile-card img {
  width: 110px;
  height: 110px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  flex-shrink: 0;
}

.profile-card .stars {
  color: var(--color-warning);
}

.profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0.8rem 0;
}

.profile-tags span {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, rgba(16, 16, 16, 0.1), rgba(255, 255, 255, 0.02));
  color: lab(96.49% 1.34 0.46);
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.profile-tags span:hover {
  background: linear-gradient(135deg, rgba(244, 5, 5, 0.963), rgba(233, 30, 99, 0.05));
  border-color: rgba(3, 3, 3, 0.4);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.profile-meta {
  font-size: .8rem;
  color: var(--color-muted);
}

.profile-actions {
  display: flex;
  gap: .4rem;
  margin-top: .75rem;
  flex-wrap: wrap;
}

.profile-actions .btn {
  padding: .3rem .7rem;
  font-size: .8rem;
}


/* ---------- GALLERY VERIFIED BADGE ---------- */
.gallery-verified-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  letter-spacing: 0.05em;
  z-index: 3;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 3px solid #E91E63;
}

.gallery-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: .6rem .8rem;
  background: linear-gradient(to top, rgba(0, 0, 0, .85), transparent);
  color: #fff;
  font-size: .78rem;
  font-weight: 600;
  z-index: 3;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}



/* ---------- TABLES ---------- */
.price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-glass);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.price-table th {
  background: var(--color-surface);
  position: sticky;
  top: 0;
}

.price-table th,
.price-table td {
  padding: .9rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.price-table .best-row {
  background: rgba(233, 30, 99, .12);
  font-weight: 600;
}

/* ---------- GALLERY ---------- */
.gallery-grid {
  columns: 3;
  column-gap: 1.5rem;
  margin-top: 2rem;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 1.5rem;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid var(--color-gold);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15);
  transition: var(--transition-base);
}

.gallery-item:hover {
  border-color: #E91E63;
  box-shadow: 0 8px 25px rgba(233, 30, 99, 0.3);
  transform: translateY(-5px);
}

.gallery-item img {
  transition: var(--transition-base);
  width: 100%;
}

.gallery-item:hover img {
  transform: scale(1.05);
}



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

.pkg-card li {
  padding: .3rem 0;
}

.pkg-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-accent);
}

.pkg-price small {
  font-size: .9rem;
  color: var(--color-muted);
}

.pkg-card.recommended {
  border: 2px solid var(--color-accent);
  box-shadow: var(--shadow-accent);
}

.pkg-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
  padding: .2rem .8rem;
  border-radius: var(--radius-full);
  font-size: .75rem;
}

/* ---------- REASONS ---------- */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.reason-item {
  font-size: .95rem;
}

/* ---------- LOCATION ---------- */
.map-placeholder {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  display: grid;
  place-items: center;
  min-height: 320px;
  font-size: 1.2rem;
  color: var(--color-muted);
  height: 100%;
  overflow: hidden;
}

.map-placeholder iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  border-radius: var(--radius-lg);
}

.contact-info p {
  margin: .4rem 0;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.chips span {
  background: var(--color-glass);
  border: 1px solid rgba(255, 255, 255, .1);
  padding: .3rem .9rem;
  border-radius: var(--radius-full);
  font-size: .85rem;
}

/* ---------- FAQ ---------- */
.accordion-list {
  max-width: 800px;
  margin: 1.5rem auto 0;
}

.accordion-item {
  background: var(--color-glass);
  border-radius: var(--radius-lg);
  margin-bottom: .75rem;
  overflow: hidden;
}

.accordion-header {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--color-white);
  padding: 1rem 1.25rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-header .icon {
  transition: var(--transition-base);
}

.accordion-item.open .accordion-header .icon {
  transform: rotate(45deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
  padding: 0 1.25rem;
  color: var(--color-muted);
}

.accordion-item.open .accordion-body {
  max-height: 300px;
  padding-bottom: 1rem;
}

/* ---------- REVIEWS ---------- */
.reviews-carousel {
  position: relative;
  overflow: hidden;
  margin-top: 1.5rem;
}

.reviews-track {
  display: flex;
  transition: transform .5s ease;
}

.review-card {
  min-width: 100%;
}

@media (min-width: 768px) {
  .review-card {
    min-width: 50%;
  }
}

@media (min-width: 992px) {
  .review-card {
    min-width: 33.333%;
  }
}

.review-card .stars {
  color: var(--color-warning);
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--gradient);
  border: none;
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.4rem;
  z-index: 3;
}

.carousel-arrow.prev {
  left: 0;
}

.carousel-arrow.next {
  right: 0;
}

/* ---------- CTA BANNER ---------- */
.cta-banner {
  background: var(--gradient);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.cta-banner .container {
  position: relative;
  z-index: 2;
}


/* ---------- CONTACT FORM ---------- */
#contactForm label {
  display: block;
  margin-bottom: .3rem;
  font-weight: 500;
}

#contactForm input,
#contactForm select,
#contactForm textarea {
  width: 100%;
  background: var(--color-glass);
  border: 1px solid var(--color-muted);
  border-radius: .6rem;
  padding: .6rem .9rem;
  color: var(--color-white);
}

#contactForm input:invalid.touched,
#contactForm textarea:invalid.touched {
  border-color: var(--color-error);
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.form-status {
  margin-top: 1rem;
  font-weight: 600;
}

.form-status.success {
  color: var(--color-success);
}

.form-status.error {
  color: var(--color-error);
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--color-surface);
  padding: 3rem 0 1.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li a {
  color: var(--color-muted);
  transition: var(--transition-base);
}

.footer-links li a:hover {
  color: var(--color-accent);
}

.socials {
  display: flex;
  gap: .5rem;
  margin-top: .75rem;
}

.socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-glass);
  display: grid;
  place-items: center;
  font-size: .75rem;
  transition: var(--transition-base);
}

.socials a:hover {
  background: #fffefe;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, .08);
  margin-top: 2rem;
  padding-top: 1.5rem;
}

/* ---------- FLOATING WIDGETS ---------- */
.wa-widget {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  z-index: 1200;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .4);
  animation: pulse 2s infinite;
}

.back-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 1.3rem;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-base);
  z-index: 1200;
}

.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
}



/* Toasts */
.toast-container {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 1300;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.toast {
  background: var(--color-surface);
  border-left: 4px solid var(--color-accent);
  border-radius: .6rem;
  padding: .75rem 1.1rem;
  min-width: 240px;
  box-shadow: var(--shadow-accent);
  animation: slideInRight .3s ease;
}

.toast.success {
  border-color: var(--color-success);
}

.toast.error {
  border-color: var(--color-error);
}

.toast.warning {
  border-color: var(--color-warning);
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-surface);
  padding: 1rem;
  display: none;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  z-index: 1250;
  border-top: 1px solid var(--color-glass);
}

.cookie-banner.show {
  display: flex;
}

.cookie-banner div {
  display: flex;
  gap: .5rem;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .9);
  display: grid;
  place-items: center;
  z-index: 1400;
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-lg);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
}

/* ---------- ANIMATIONS ---------- */
[data-animate] {
  opacity: 0;
}

[data-animate].in-view {
  opacity: 1;
}

[data-animate="fadeInUp"].in-view {
  animation: fadeInUp .7s forwards;
}

[data-animate="fadeIn"].in-view {
  animation: fadeIn .7s forwards;
}

[data-animate="slideInLeft"].in-view {
  animation: slideInLeft .7s forwards;
}

[data-animate="slideInRight"].in-view {
  animation: slideInRight .7s forwards;
}

[data-animate="scaleIn"].in-view {
  animation: scaleIn .6s forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

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

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(.85);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, .6);
  }

  50% {
    box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 991px) {
  .hamburger {
    display: flex;
    position: relative;
    z-index: 10001;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: min(85%, 340px);
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-left: 1px solid rgba(233, 30, 99, 0.2);
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    transform: translateX(105%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    margin-left: 0;
    gap: 0;
    z-index: 10000;
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
  }

  .nav-menu.open {
    transform: translateX(0);
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.6);
  }

  /* Drawer Header */
  .nav-menu::before {
    content: 'Menu';
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-accent);
    padding: 1.5rem 1.5rem 0.5rem;
    border-bottom: 1px solid rgba(233, 30, 99, 0.15);
    margin-bottom: 0.5rem;
  }

  .nav-list {
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 0;
    width: 100%;
  }

  .nav-list li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .nav-list li:last-child {
    border-bottom: none;
  }

  .nav-list a {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.2s, background 0.2s;
    -webkit-tap-highlight-color: transparent;
  }

  .nav-list a:hover,
  .nav-list a:focus {
    color: var(--color-accent);
    background: rgba(233, 30, 99, 0.08);
  }



  /* CTA Buttons at bottom of drawer */
  .nav-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.5rem;
    margin-top: auto;
    border-top: 1px solid rgba(233, 30, 99, 0.15);
  }

  .nav-actions .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.85rem 1rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    text-align: center;
  }

  .reasons-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    columns: 2;
  }

  .steps {
    flex-direction: column;
  }


}

@media (max-width: 575px) {
  .reasons-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    columns: 1;
  }

  .profile-card {
    flex-direction: column !important;
    height: auto !important;
    min-height: unset !important;
    overflow: visible !important;
  }

  .profile-img-wrap {
    width: 100% !important;
    height: 250px !important;
  }

  .profile-img-wrap img {
    width: 100% !important;
    height: 100% !important;
    min-height: 100% !important;
    max-height: 100% !important;
    border-radius: 20px 20px 0 0 !important;
  }

  .profile-content {
    display: flex !important;
    flex-direction: column !important;
    visibility: visible !important;
    opacity: 1 !important;
    overflow: visible !important;
    height: auto !important;
    max-height: none !important;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }


}

@media (min-width: 1920px) {
  .container {
    max-width: 1700px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  [data-animate] {
    opacity: 1 !important;
  }
}

/* ---------- PRINT ---------- */
@media print {


  .site-header,
  .announcement-bar,
  .wa-widget,
  .back-to-top,
  .cookie-banner,
  .toast-container,
  .scroll-progress,
  .newsletter,
  .cta-banner,
  .hero-cta,
  .nav-actions {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }

  .section {
    padding: 1rem 0;
  }

  a {
    color: #000;
    text-decoration: underline;
  }
}

/* =========================================================
   V2 OVERRIDES (gold theme, profiles, menu, redesigns)
   ========================================================= */

/* Red/White accent on headings + CTAs */
h1,
h2,
h3 {
  color: #F5F5F5;
}

.section>.container>h2,
.section h2 {
  position: relative;
}

.btn-accent {
  color: #fff;
  font-weight: 700;
}



.tag,
.filter-tab.active {
  color: #fff;
}

.section-title-underline {
  display: inline-block;
}

.section-title-underline::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  margin: .5rem auto 0;
  background: #E91E63;
  border-radius: 3px;
}

/* ---------- PROFILES: one per row, horizontal, rich ---------- */
.profile-grid {
  grid-template-columns: 1fr;
  max-width: 100%;
  margin: 0 auto;
  gap: 3.5rem;
}

.profile-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  gap: 0;
  align-items: stretch;
  padding: 0;
  display: flex;
  overflow: hidden;
}

.profile-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.profile-img-wrap {
  position: relative;
  width: 330px;
  flex-shrink: 0;
  display: flex;
}

.profile-img-wrap img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  border-radius: 20px 0 0 20px;
}

.watermark {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  pointer-events: none;
  background: #C2185B;
  border: 1px solid #fff;
  padding: 3px 10px;
  border-radius: 2px;
  white-space: nowrap;
}

.profile-content {
  padding: 15px 30px 20px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1;
}

.profile-card h3 {
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}

.profile-card h3 small {
  display: block;
  color: #C8C8D8;
  font-size: 0.78rem;
  font-weight: 400;
  margin-top: 0.15rem;
  line-height: 1.4;
}

.profile-card .badges {
  display: flex;
  gap: .4rem;
  flex-wrap: wrap;
  margin: .35rem 0;
}

.profile-card .badge {
  background: #C2185B;
  color: #fff;
  font-weight: 700;
  font-size: .7rem;
  padding: .15rem .6rem;
  border-radius: var(--radius-full);
}

.profile-bio {
  color: var(--color-muted);
  font-size: .9rem;
  margin: .5rem 0 1rem;
}

.profile-actions {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  margin-top: 1rem;
  flex-wrap: nowrap;
}

.profile-actions>a {
  flex: 1;
  justify-content: center;
  padding: 0.7rem 0.5rem;
}

.btn-call {
  background-color: #FFFFFF;
  border: 2px solid #E91E63;
  color: #fff;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition-base);
}

.btn-call:hover {
  background-color: #060002;
  border-color: #d81557;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(233, 30, 99, 0.4);
  color: #fff;
}

.btn-whatsapp {
  background-color: #000100;
  border: 2px solid #25D366;
  color: #fff;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition-base);
}

.btn-whatsapp:hover {
  background-color: #1ebe5a;
  border-color: #1ebe5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
  color: #fff;
}

@media (max-width: 767px) {
  .profile-card {
    flex-direction: column !important;
    padding: 0 !important;
    height: auto !important;
    min-height: unset !important;
    overflow: visible !important;
  }

  .profile-img-wrap {
    width: 100% !important;
    height: 280px !important;
  }

  .profile-img-wrap img {
    width: 100% !important;
    height: 100% !important;
    min-height: 100% !important;
    max-height: 100% !important;
    border-radius: 20px 20px 0 0 !important;
  }

  .profile-content {
    padding: 20px !important;
    display: flex !important;
    flex-direction: column !important;
    flex: unset !important;
    height: auto !important;
    overflow: visible !important;
    visibility: visible !important;
    opacity: 1 !important;
    min-height: unset !important;
    max-height: none !important;
  }
}

/* ---------- MOBILE MENU: Hamburger + backdrop ---------- */
.menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  z-index: 9998;
}

.menu-backdrop.show {
  opacity: 1;
  pointer-events: auto;
}

/* Hamburger – base (hidden on desktop) */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: rgba(233, 30, 99, 0.12);
  border: 1.5px solid rgba(233, 30, 99, 0.35);
  border-radius: 8px;
  padding: 8px;
  cursor: pointer;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  transition: background 0.2s;
}

.hamburger:hover,
.hamburger:focus {
  background: rgba(233, 30, 99, 0.25);
  outline: none;
}

.hamburger span {
  width: 22px;
  height: 2.5px;
  background: #fff;
  border-radius: 3px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  display: block;
  margin: 0 auto;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

@media (max-width: 991px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    z-index: 10000;
  }
}


/* ---------- 20 REASONS redesign (centered, no number badges) ---------- */
#reasons {
  background: radial-gradient(circle at 80% 0%, rgba(233, 30, 99, .12), transparent 55%), var(--color-bg);
}

.reasons-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.reason-item {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1A1A1A, #111111);
  border: 1px solid rgba(233, 30, 99, .15);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: var(--transition-base);
}

.reason-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #E91E63, #D50000);
  opacity: 0;
  transition: opacity .3s ease;
}

.reason-item:hover::before {
  opacity: 1;
}

.reason-item:hover {
  transform: translateY(-8px);
  border-color: rgba(233, 30, 99, .4);
  box-shadow: 0 20px 60px rgba(233, 30, 99, .15);
}

.reason-item .r-emoji {
  font-size: 48px;
  line-height: 1;
  display: block;
  filter: drop-shadow(0 0 8px rgba(233, 30, 99, .3));
}

.reason-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  font-family: 'Inter', sans-serif;
}

.reason-item p {
  font-size: .82rem;
  color: #8A8A9A;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1024px) {
  .reasons-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .reasons-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .reasons-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- HOW IT WORKS: horizontal timeline ---------- */
#how {
  background: linear-gradient(135deg, #0A0A0A, #1A0A15, #0A0A0A);
  position: relative;
  overflow: hidden;
}

#how .how-orb {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .35;
}

#how .how-orb.a {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(233, 30, 99, .5), transparent 70%);
  top: -80px;
  left: -60px;
}

#how .how-orb.b {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(233, 30, 99, .3), transparent 70%);
  bottom: -80px;
  right: -60px;
}

.steps-wrapper {
  display: flex;
  align-items: flex-start;
  position: relative;
  gap: 0;
  margin-top: 2.5rem;
}

.steps-wrapper::before {
  content: '';
  position: absolute;
  top: 52px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, #E91E63, #D50000, #E91E63, #D50000);
  z-index: 0;
}

.step-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.step-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #E91E63, #D50000);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin-bottom: 24px;
  box-shadow: 0 0 0 6px rgba(233, 30, 99, .15), 0 0 0 12px rgba(233, 30, 99, .07), 0 16px 40px rgba(233, 30, 99, .3);
  transition: var(--transition-base);
  position: relative;
  z-index: 2;
}

.step-card:hover .step-circle {
  transform: scale(1.1);
  box-shadow: 0 0 0 8px rgba(233, 30, 99, .2), 0 0 0 16px rgba(233, 30, 99, .1), 0 20px 60px rgba(233, 30, 99, .4);
}

.step-number {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 28px;
  height: 28px;
  background: #E91E63;
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-title {
  font-size: 18px;
  font-weight: 700;
  color: #F0F0F0;
  margin-bottom: 10px;
  font-family: 'Inter', sans-serif;
}

.step-title span {
  color: #E91E63;
}

.step-desc {
  font-size: 14px;
  color: #8A8A9A;
  line-height: 1.6;
  max-width: 200px;
}

@media (max-width: 768px) {
  .steps-wrapper {
    flex-direction: column;
    gap: 1.5rem;
  }

  .steps-wrapper::before {
    top: 0;
    bottom: 0;
    left: 40px;
    right: auto;
    width: 2px;
    height: auto;
  }

  .step-card {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    padding: 0 0 0 8px;
    gap: 16px;
  }

  .step-circle {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .step-desc {
    max-width: none;
  }
}

/* ---------- LOCATIONS: buttons instead of images ---------- */
.location-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 1.5rem;
}

.location-btn {
  display: flex;
  align-items: center;
  gap: 15px;
  background: var(--color-surface);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 15px 20px;
  border-radius: var(--radius-lg);
  color: var(--color-white);
  text-decoration: none;
  transition: var(--transition-base);
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.location-btn:hover {
  background: rgba(233, 30, 99, 0.1);
  border-color: #E91E63;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(233, 30, 99, 0.2);
}

.location-btn .icon {
  font-size: 1.3rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.location-btn .info {
  display: flex;
  flex-direction: column;
}

.location-btn .info .name {
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
}

.location-btn .info .count {
  font-size: 0.8rem;
  color: var(--color-muted);
  margin-top: 2px;
}

@media (max-width: 1024px) {
  .location-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .location-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .location-grid {
    grid-template-columns: 1fr;
  }
}

/* SEO Tags Styles */
.seo-tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
}

.seo-tag {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ddd;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  cursor: default;
}

.seo-tag:hover {
  background: #E91E63;
  color: #fff;
  border-color: #E91E63;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(233, 30, 99, 0.3);
}

p {
  text-align: justify;
}



/* ========== Common Card Grid CSS ========== */
.card-row-wrap {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  background: #0A0A0A;
  border-radius: 8px;
}

.ecard {
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
}

.ecard-img-wrap {
  position: relative;
}

.ecard-img-wrap img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.ecard-badge-premium {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  padding: 4px 8px;
  font-size: 0.8rem;
  font-weight: bold;
  border-top-right-radius: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.ecard-badge-premium span {
  background: yellow;
  color: black;
  padding: 0 4px;
}

.ecard-badge-site {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.9);
  color: red;
  font-size: 0.65rem;
  padding: 3px 8px;
  font-weight: 900;
  letter-spacing: 0.5px;
}

.ecard-title {
  font-size: 1.05rem;
  margin-bottom: 15px;
  color: #222;
  font-weight: 400;
  font-family: 'Times New Roman', serif;
}

.ecard-info {
  font-size: 0.85rem;
  color: #222;
  margin-bottom: 20px;
  font-weight: 500;
  font-family: 'Times New Roman', serif;
}

.ecard-info .icon-pink {
  color: #e91e63;
}

.ecard-btn {
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.4rem 0;
  color: white;
}

.ecard-btn-wa {
  border: solid 2px #4caf50;
  background: transparent;
}

.ecard-btn-ph {
  background: #ffffff;
  border: 2px solid #fb0467;
}

.ecard-btn i {
  font-style: normal;
  margin-right: 4px;
}