/* ===== RESET & BASE ===== */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
:root {
  --deep-navy: #0a0e27;
  --royal-purple: #1a1145;
  --gold: #d4af37;
  --gold-light: #e8c84a;
  --rose: #c2185b;
  --text: #e0e0e0;
  --text-muted: #a0a0b0;
  --bg-alt: #0d1235;
  --card-bg: #12173d;
  --border: #1e2555;
  --font-heading: 'Times New Roman', Georgia, serif;
  --font-body: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --whatsapp-green: #075E54; /* WCAG AA compliant: white text on #075E54 = 4.68:1 contrast */
}
html { scroll-behavior:smooth; }
body {
  font-family: var(--font-body);
  background: var(--deep-navy);
  color: var(--text);
  line-height: 1.7;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  overflow-x: hidden;
}
a { color: var(--gold); text-decoration:none; transition:color .2s; }
a:hover { color: var(--gold-light); }
img { max-width:100%; height:auto; display:block; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); color:#fff; line-height:1.3; }
.container { max-width:1200px; margin:0 auto; padding:0 20px; }

/* ===== SKIP LINK ===== */
.skip-link { position:absolute; top:-100px; left:0; background:var(--gold); color:var(--deep-navy); padding:10px 20px; z-index:10000; font-weight:700; }
.skip-link:focus { top:0; }

/* ===== HEADER & NAVIGATION ===== */
header {
  background: var(--deep-navy);
  border-bottom: 2px solid var(--gold);
  position: sticky;
  top: 0;
  z-index: 9999; /* CRITICAL FIX: Must be above overlay z-index 1040 */
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}
.logo span { color: var(--gold); }

/* ===== HAMBURGER MENU TOGGLE - RIGHT SIDE ===== */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 2px solid var(--gold);
  border-radius: 6px;
  cursor: pointer;
  padding: 8px;
  z-index: 1100;
  -webkit-tap-highlight-color: transparent;
  order: 3; /* Keep on right side */
}
.menu-toggle:focus { outline: 2px solid var(--gold-light); }
.hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== NAV MENU ===== */
#mainNav {
  display: flex;
  align-items: center;
}
#navMenu {
  display: flex;
  list-style: none;
  gap: 4px;
  align-items: center;
}
#navMenu > li { position: relative; }
#navMenu > li > a {
  display: block;
  padding: 10px 16px;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  white-space: nowrap;
  border-radius: 4px;
  transition: background .2s, color .2s;
}
#navMenu > li > a:hover,
#navMenu > li > a.active {
  background: var(--gold);
  color: var(--deep-navy);
}
#navMenu > li > a .arrow { font-size: 0.7em; margin-left: 2px; }

/* ===== DROPDOWN ===== */
.dropdown { position: relative; }
/* Style button dropdown-toggle same as nav links (changed from <a> to <button> for crawlability) */
.dropdown-toggle {
  display: block;
  padding: 10px 16px;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  white-space: nowrap;
  border-radius: 4px;
  transition: background .2s, color .2s;
  background: none;
  border: none;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}
.dropdown-toggle:hover {
  background: var(--gold);
  color: var(--deep-navy);
}
.dropdown-toggle .arrow { font-size: 0.7em; margin-left: 2px; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--card-bg);
  border: 1px solid var(--gold);
  border-radius: 6px;
  min-width: 180px;
  list-style: none;
  padding: 8px 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
  z-index: 1200;
}
.dropdown.open .dropdown-menu { display: block; }
.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  transition: background .2s, color .2s;
}
.dropdown-menu li a:hover,
.dropdown-menu li a.active {
  background: var(--gold);
  color: var(--deep-navy);
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--deep-navy), var(--royal-purple));
  text-align: center;
  padding: 80px 20px 60px;
  border-bottom: 3px solid var(--gold);
}
.hero h1 { font-size: 2.4rem; margin-bottom: 16px; }
.hero h1 .gold { color: var(--gold); }
.hero p { font-size: 1.1rem; color: var(--text-muted); max-width: 700px; margin: 0 auto 24px; }
.cta-buttons { display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }

/* ===== HERO INTRO CTA ===== */
.hero-intro {
  background: linear-gradient(135deg, var(--royal-purple), var(--deep-navy));
  border-bottom: 3px solid var(--gold);
  padding: 0;
}
.hero-intro .container {
  padding-top: 40px;
  padding-bottom: 40px;
}
.hero-intro h1 {
  font-size: 2.2rem;
  margin-bottom: 12px;
  text-align: center; /* FIX #4: Center first heading on every page */
}
.hero-intro h1 .gold { color: var(--gold); }
.hero-intro .intro-paragraph {
  font-size: 1.1rem;
  color: var(--text);
  max-width: 900px;
  margin: 0 auto 24px;
  line-height: 1.8;
}
.hero-intro .intro-paragraph strong { color: var(--gold); }
.hero-intro .intro-paragraph a { color: var(--gold-light); text-decoration: underline; }
.hero-intro .cta-buttons { margin-top: 20px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .2s;
  font-family: var(--font-heading);
}
.btn-gold {
  background: var(--gold);
  color: var(--deep-navy);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); color: var(--deep-navy); }
.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline:hover { background: var(--gold); color: var(--deep-navy); }
.btn-book {
  background: var(--rose);
  color: #fff;
  border-color: var(--rose);
  padding: 8px 20px;
  font-size: 0.9rem;
}
.btn-book:hover { background: #d81b60; border-color: #d81b60; }

/* ===== SECTIONS ===== */
.section { padding: 60px 0; }
.section-alt { background: var(--bg-alt); }
.section-title { text-align:center; margin-bottom:40px; }
.section-title h2 { font-size:2rem; margin-bottom:8px; }
.section-title h2 .gold { color: var(--gold); }
.section-title p { color: var(--text-muted); font-size:1.05rem; }

/* ===== PROFILE GRID ===== */
.profile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.profile-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.profile-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(212,175,55,0.15);
}
.img-wrap { position:relative; overflow:hidden; }
.img-wrap .badge {
  position:absolute; top:10px; left:10px;
  background: var(--gold); color: var(--deep-navy);
  padding: 4px 12px; border-radius:4px;
  font-size:0.8rem; font-weight:700; z-index:2;
}
.img-wrap img {
  width:100%; height:346px; object-fit:cover;
  background: #161a3a;
  transition: opacity .3s;
}
.card-body { padding:16px; }
.card-body h3 { font-size:1.2rem; margin-bottom:4px; }
.card-body .location { color: var(--gold); font-size:0.9rem; margin-bottom:8px; }
.card-body .desc { color: var(--text-muted); font-size:0.9rem; margin-bottom:12px; line-height:1.5; }
.card-cta { text-align:center; }

/* ===== FEATURES GRID ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}
.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
  text-align: center;
  transition: transform .2s;
}
.feature-card:hover { transform: translateY(-3px); }
.feature-card .icon {
  display: inline-block;
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 12px;
}
.feature-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.feature-card p { color: var(--text-muted); font-size: 0.9rem; }

/* ===== INFO TEXT ===== */
.info-text h2 { font-size:1.6rem; color:var(--gold); margin:32px 0 12px; }
.info-text h3 { font-size:1.3rem; color:#fff; margin:28px 0 10px; }
.info-text p { margin-bottom:16px; color:var(--text); }
.info-text strong { color:var(--gold); }
.info-text a { color:var(--gold-light); text-decoration:underline; }

/* ===== FAQ ===== */
.faq-list { max-width:800px; margin:0 auto; }
.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-question {
  padding: 16px 20px;
  cursor: pointer;
  font-size: 1.05rem;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-heading);
}
.faq-question:hover { color: var(--gold); }
.faq-arrow { transition: transform .3s; font-size:0.8em; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s;
}
.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 0 20px 16px;
}
.faq-answer p { color: var(--text-muted); font-size:0.95rem; }

/* ===== LOCATION GRID ===== */
.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.location-card {
  display: block;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px 20px;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 600;
  text-align: center;
  transition: all .2s;
}
.location-card:hover {
  background: var(--gold);
  color: var(--deep-navy);
  border-color: var(--gold);
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.contact-form .form-group { margin-bottom: 20px; }
.contact-form label { display:block; color:var(--gold); font-weight:600; margin-bottom:6px; font-family:var(--font-heading); }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width:100%; padding:12px 16px;
  background:var(--card-bg); border:1px solid var(--border);
  border-radius:6px; color:#fff; font-size:1rem;
  transition: border-color .2s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  outline: none;
}
.contact-form select option { background: var(--deep-navy); color: #fff; }
.contact-info .contact-item {
  display:flex; gap:12px; align-items:flex-start; margin-bottom:16px;
}
.contact-info .contact-item .icon { font-size:1.5rem; color:var(--gold); }
.contact-info h3 { font-size:1.3rem; margin-bottom:12px; color:var(--gold); }

/* ===== SITEMAP ===== */
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 32px;
}
.sitemap-col h3 { color:var(--gold); margin-bottom:12px; font-size:1.2rem; }
.sitemap-col ul { list-style:none; }
.sitemap-col ul li { margin-bottom:8px; }
.sitemap-col ul li a { color:var(--text); font-size:0.95rem; }
.sitemap-col ul li a:hover { color:var(--gold); }

/* ===== FOOTER ===== */
footer {
  background: var(--royal-purple);
  border-top: 2px solid var(--gold);
  padding: 48px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 32px;
  margin-bottom: 32px;
}
.footer-col h3 {
  font-family: var(--font-heading);
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 12px;
}
.footer-col p { color: var(--text-muted); font-size:0.9rem; line-height:1.6; }
.footer-col ul { list-style:none; }
.footer-col ul li { margin-bottom:6px; }
.footer-col ul li a { color:var(--text-muted); font-size:0.9rem; }
.footer-col ul li a:hover { color:var(--gold); }
/* FIX #3: Footer WhatsApp icon - smaller and white */
.footer-col a svg {
  width: 16px;
  height: 16px;
  fill: #fff;
  vertical-align: middle;
  margin-right: 4px;
}
.footer-nav-links {
  text-align: center;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  margin-bottom: 12px;
}
.footer-nav-links a { color: var(--text-muted); font-size: 0.85rem; margin: 0 6px; }
.footer-nav-links a:hover { color: var(--gold); }
.footer-nav-links .separator { color: var(--border); margin: 0 2px; }
.footer-bottom { border-top:1px solid var(--border); padding-top:20px; text-align:center; }
.footer-bottom p { color:var(--text-muted); font-size:0.85rem; margin-bottom:4px; }
.footer-bottom a { color:var(--gold); margin:0 8px; }

/* ===== FIXED BOTTOM CTA BAR - REWRITTEN ===== */
.fixed-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 900;
  background: var(--deep-navy);
  border-top: 2px solid var(--gold);
  box-shadow: 0 -2px 10px rgba(0,0,0,0.4);
  padding: 10px 16px;
  gap: 12px;
}
.fixed-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  padding: 14px 24px;
  font-weight: 700;
  font-size: 1rem;
  font-family: var(--font-heading);
  transition: background .2s, transform .1s;
  border: none;
  cursor: pointer;
  border-radius: 50px;
  flex: none;
  width: auto;
  text-decoration: none;
}
.fixed-cta a:active {
  transform: scale(0.97);
}
/* Call button - golden/amber pill */
.cta-call {
  background: #d4af37;
  color: #0a0e27;
  border-radius: 50px;
}
.cta-call:hover { background: var(--gold-light); color: #0a0e27; }
.cta-call svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  vertical-align: middle;
  flex-shrink: 0;
}
/* WhatsApp button - green pill */
.cta-whatsapp {
  background: #075E54; /* WCAG AA: white on #075E54 = 4.68:1 contrast ratio */
  color: #fff;
  border-radius: 50px;
}
.cta-whatsapp:hover { background: #064D43; color: #fff; }
.cta-whatsapp svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  vertical-align: middle;
  flex-shrink: 0;
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 48px;
  height: 48px;
  background: var(--gold);
  color: var(--deep-navy);
  border: none;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  z-index: 950; /* Visible above CTA bar */
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}
.scroll-top:hover { background: var(--gold-light); }

/* ===== 18+ AGE MODAL ===== */
.age-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.age-modal-inner {
  background: var(--card-bg);
  border: 2px solid var(--gold);
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  max-width: 460px;
  width: 100%;
}
.age-modal-inner h2 { color:var(--gold); font-size:1.8rem; margin-bottom:12px; }
.age-modal-inner p { color:var(--text-muted); margin-bottom:24px; }
.age-modal-buttons { display:flex; gap:16px; justify-content:center; }

/* ===== CONTENT PROTECTION ===== */
body.protected {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

/* ===== BACKLINKS SECTION ===== */
.backlinks-section {
  background: var(--bg-alt);
  padding: 40px 0;
  border-top: 1px solid var(--border);
}
.backlinks-section .info-text { max-width: 900px; margin: 0 auto; text-align: center; }
.backlinks-section .info-text p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.8; }
.backlinks-section .info-text a { color: var(--gold-light); text-decoration: underline; }
.backlinks-section .info-text strong { color: var(--gold); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .menu-toggle { display: flex; }

  #mainNav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--deep-navy);
    border-left: 2px solid var(--gold);
    padding: 80px 20px 20px;
    transition: right .3s ease;
    overflow-y: auto;
    z-index: 1050; /* Within header's stacking context, fine since header is z-index:9999 */
  }
  #mainNav.open { right: 0; }

  #navMenu {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }
  #navMenu > li > a {
    display: block;
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
    font-size: 1.05rem;
    width: 100%;
  }
  /* Mobile dropdown-toggle button style */
  .dropdown-toggle {
    display: block;
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
    font-size: 1.05rem;
    width: 100%;
    text-align: left;
  }

  /* Mobile dropdown */
  .dropdown-menu {
    position: static;
    display: none;
    background: var(--bg-alt);
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    min-width: 100%;
  }
  .dropdown.open .dropdown-menu { display: block; }
  .dropdown-menu li a {
    padding: 12px 32px;
    border-bottom: 1px solid var(--border);
  }

  .hero h1 { font-size: 1.6rem; }
  .hero { padding: 50px 20px 40px; }
  .hero-intro h1 { font-size: 1.5rem; }

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

  .profile-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }

  /* Mobile CTA bar adjustments */
  .fixed-cta a {
    padding: 12px 18px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.3rem; }
  .hero-intro h1 { font-size: 1.2rem; }
  .section-title h2 { font-size: 1.4rem; }
  .profile-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .location-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .btn { padding: 10px 20px; font-size: 0.9rem; }

  .fixed-cta {
    padding: 8px 10px;
    gap: 8px;
  }
  .fixed-cta a {
    padding: 10px 14px;
    font-size: 0.85rem;
    gap: 6px;
  }
  .fixed-cta a svg {
    width: 18px;
    height: 18px;
  }
}

/* ===== MOBILE NAV OVERLAY ===== */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1040;
}
.nav-overlay.active { display: block; }
