:root {
  --bg: #0e0b14;
  --bg2: #16101f;
  --card: #1c1526;
  --card2: #241a30;
  --pink: #ff4d8d;
  --pink2: #ff7eb3;
  --gold: #ffcf6b;
  --purple: #a855f7;
  --text: #efe9f5;
  --muted: #d1c7e0; /* Improved Contrast for Core Web Vitals & Accessibility */
  --line: rgba(255, 255, 255, 0.08);
  --grad: linear-gradient(135deg, #ff4d8d 0%, #a855f7 100%);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 600px at 80% -10%, rgba(168, 85, 247, 0.18), transparent 60%),
              radial-gradient(1000px 500px at -10% 20%, rgba(255, 77, 141, 0.15), transparent 55%),
              var(--bg);
  color: var(--text);
  line-height: 1.75;
  overflow-x: hidden;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  color: var(--pink2);
  text-decoration: none;
}

/* ---------- NAV ---------- */
header.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(14, 11, 20, 0.72);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.15rem;
}

.logo .dot {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--grad);
  display: grid;
  place-items: center;
  font-size: 1rem;
  box-shadow: 0 0 18px rgba(255, 77, 141, 0.6);
}

.logo span {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  gap: 26px;
  list-style: none;
}

.nav-links a {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
  transition: 0.2s;
}

.nav-links a:hover {
  color: var(--pink2);
}

.nav-cta {
  background: var(--grad);
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(255, 77, 141, 0.35);
  transition: 0.25s;
}

.nav-cta:hover {
  transform: translateY(-2px);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
}

.burger span {
  width: 26px;
  height: 3px;
  background: var(--pink2);
  border-radius: 3px;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: 90px 0 70px;
  text-align: center;
  overflow: hidden;
}

.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 300px at 50% 0, rgba(255, 77, 141, 0.2), transparent 70%);
  pointer-events: none;
}

.badge {
  display: inline-block;
  padding: 7px 16px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 22px;
}

.hero h1 {
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 18px;
}

.hero h1 em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  max-width: 720px;
  margin: 0 auto 30px;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 30px;
  border-radius: 32px;
  font-weight: 700;
  font-size: 1rem;
  transition: 0.25s;
  cursor: pointer;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 10px 30px rgba(255, 77, 141, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  border: 1px solid var(--line);
}

.btn-ghost:hover {
  border-color: var(--pink);
  color: var(--pink2);
}

.stats {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 52px;
}

.stat h3 {
  font-size: 2rem;
  font-weight: 900;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat p {
  color: var(--muted);
  font-size: 0.9rem;
}

/* ---------- SECTION SHELL ---------- */
section {
  padding: 64px 0;
}

.sec-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 46px;
}

.sec-head .kicker {
  color: var(--pink2);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.sec-head h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 900;
  margin: 10px 0 14px;
}

.sec-head p {
  color: var(--muted);
}

/* ---------- CONTENT BODY ---------- */
.prose {
  max-width: 900px;
  margin: 0 auto;
}

.prose p {
  color: var(--muted);
  margin-bottom: 18px;
}

.prose h2 {
  font-size: 1.8rem;
  font-weight: 900;
  margin: 40px 0 20px;
  color: var(--text);
}

.prose h3 {
  font-size: 1.45rem;
  font-weight: 800;
  margin: 34px 0 14px;
  color: var(--text);
}

.prose ul {
  list-style: none;
  padding: 0;
  margin: 10px 0 20px;
}

.prose ul li {
  color: var(--muted);
  margin-bottom: 8px;
  padding-left: 24px;
  position: relative;
}

.prose ul li:before {
  content: "•";
  color: var(--pink);
  font-size: 1.5rem;
  position: absolute;
  left: 0;
  top: -4px;
}

/* ---------- PROFILES ---------- */
.profiles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.profile {
  background: linear-gradient(180deg, var(--card2), var(--card));
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  transition: 0.3s;
  position: relative;
}

.profile:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: rgba(255, 77, 141, 0.4);
}

.photo {
  position: relative;
  height: 230px;
  overflow: hidden;
  background-color: var(--card2); /* Reduces CLS layout jump */
}

.profile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.profile .tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(14, 11, 20, 0.7);
  backdrop-filter: blur(6px);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 11px;
  border-radius: 20px;
  border: 1px solid var(--line);
  z-index: 2;
}

.profile .verified {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--grad);
  display: grid;
  place-items: center;
  font-size: 0.8rem;
  z-index: 2;
}

.profile .info {
  padding: 18px 18px 22px;
}

.profile .info h4 {
  font-size: 1.15rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: space-between;
}

.profile .info .age {
  color: var(--pink2);
  font-size: 0.9rem;
  font-weight: 600;
}

.profile .role {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  margin: 2px 0 12px;
}

.profile .desc {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: 0.35s;
}

.profile .desc.open {
  max-height: 400px;
  opacity: 1;
  margin-bottom: 14px;
}

.profile .book {
  width: 100%;
  margin-top: 6px;
  background: var(--grad);
  color: #fff;
  border: none;
  padding: 11px;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s;
}

.profile .book:hover {
  filter: brightness(1.1);
}

.profile .toggle-desc {
  background: none;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.8rem;
  padding: 7px 12px;
  border-radius: 20px;
  cursor: pointer;
  margin-bottom: 10px;
  transition: 0.2s;
}

.profile .toggle-desc:hover {
  border-color: var(--pink);
  color: var(--pink2);
}

/* ---------- AREAS ---------- */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.area {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
  display: flex;
  gap: 16px;
  transition: 0.25s;
}

.area:hover {
  transform: translateX(6px);
  border-color: rgba(255, 77, 141, 0.4);
}

.area .pin {
  flex: 0 0 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(168, 85, 247, 0.15);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
}

.area h4 {
  font-size: 1.08rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.area p {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 8px;
}

/* ---------- HOTELS ---------- */
.hotels-wrap {
  max-width: 900px;
  margin: 0 auto;
}

.hotels-wrap > p {
  color: var(--muted);
  margin-bottom: 18px;
}

.hotel-points {
  display: grid;
  gap: 14px;
}

.hotel-points .hp {
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 4px solid var(--pink);
  border-radius: 12px;
  padding: 16px 20px;
  color: var(--muted);
}

/* ---------- TESTIMONIAL SLIDER ---------- */
.testi {
  background: radial-gradient(700px 350px at 50% 30%, rgba(168, 85, 247, 0.14), transparent 70%);
}

.slider {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
}

.slides {
  overflow: hidden;
  border-radius: 24px;
}

.slide-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.65, 0.05, 0.36, 1);
}

.slide {
  min-width: 100%;
  padding: 46px 44px;
  background: linear-gradient(180deg, var(--card2), var(--card));
  border: 1px solid var(--line);
  border-radius: 24px;
}

.slide .quote-mark {
  font-size: 3.4rem;
  line-height: 0.5;
  color: var(--pink);
  font-family: Georgia, serif;
  opacity: 0.5;
}

.slide p.txt {
  font-size: 1.1rem;
  color: var(--text);
  margin: 16px 0 24px;
  font-style: italic;
}

.slide .author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.slide .author .av {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--grad);
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #fff;
}

.slide .author .nm {
  font-weight: 800;
}

.slide .author .stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(14, 11, 20, 0.8);
  border: 1px solid var(--line);
  color: var(--pink2);
  font-size: 1.4rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: 0.2s;
  z-index: 2;
}

.slider-btn:hover {
  background: var(--grad);
  color: #fff;
  border-color: transparent;
}

.slider-btn.prev {
  left: -22px;
}

.slider-btn.next {
  right: -22px;
}

.dots {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 26px;
}

.dots .dot-i {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: 0.25s;
}

.dots .dot-i.active {
  background: var(--grad);
  width: 30px;
  border-radius: 8px;
}

/* ---------- FAQ ---------- */
.faq-wrap {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  margin-bottom: 14px;
  overflow: hidden;
  transition: 0.25s;
}

.faq-item.active {
  border-color: rgba(255, 77, 141, 0.5);
  box-shadow: 0 10px 30px rgba(255, 77, 141, 0.12);
}

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.02rem;
  font-weight: 700;
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-q .ico {
  flex: 0 0 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(255, 77, 141, 0.15);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  transition: 0.3s;
  color: var(--pink2);
}

.faq-item.active .faq-q .ico {
  background: var(--grad);
  color: #fff;
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-a p {
  padding: 0 24px 20px;
  color: var(--muted);
}

/* ---------- CTA BANNER ---------- */
.cta-banner {
  margin: 0 auto;
  max-width: 960px;
  text-align: center;
  background: var(--grad);
  border-radius: 26px;
  padding: 52px 34px;
  box-shadow: var(--shadow);
}

.cta-banner h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.3rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 14px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 26px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner .btn-white {
  background: #fff;
  color: #c31d5b;
  font-weight: 800;
}

/* ---------- FLOATING CONTACT BUTTONS ---------- */
.floating-call-btn,
.floating-whatsapp-btn {
  position: fixed;
  bottom: 0;
  z-index: 999999;
}

.floating-call-btn {
  left: 0;
}

.floating-whatsapp-btn {
  right: 0;
}

.floating-call-btn a,
.floating-whatsapp-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 165px;
  height: 48px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  color: #fff;
  border-radius: 4px 4px 0 0;
  transition: 0.3s;
}

.floating-call-btn a {
  background: #1976f3;
}

.floating-whatsapp-btn a {
  background: #2ecc57;
}

.floating-call-btn a:hover {
  background: #1565d8;
}

.floating-whatsapp-btn a:hover {
  background: #22b94d;
}

/* ---------- FOOTER ---------- */
footer {
  border-top: 1px solid var(--line);
  padding: 44px 0 30px;
  color: var(--muted);
  font-size: 0.9rem;
}

.foot-grid {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.foot-col h5 {
  color: var(--text);
  font-weight: 800;
  margin-bottom: 12px;
}

.foot-col a {
  display: block;
  color: var(--muted);
  margin-bottom: 7px;
  transition: 0.2s;
}

.foot-col a:hover {
  color: var(--pink2);
}

.foot-bottom {
  text-align: center;
  border-top: 1px solid var(--line);
  padding-top: 20px;
  font-size: 0.82rem;
}

.age-note {
  background: rgba(255, 77, 141, 0.08);
  border: 1px solid rgba(255, 77, 141, 0.25);
  border-radius: 12px;
  padding: 14px 18px;
  max-width: 760px;
  margin: 0 auto 22px;
  color: var(--muted);
  font-size: 0.85rem;
  text-align: center;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px) {
  .profiles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .nav-links {
    position: fixed;
    top: 68px;
    right: 0;
    flex-direction: column;
    background: var(--bg2);
    width: 70%;
    height: calc(100vh - 68px);
    padding: 30px;
    gap: 22px;
    transform: translateX(100%);
    transition: 0.3s;
    border-left: 1px solid var(--line);
  }
  .nav-links.show {
    transform: translateX(0);
  }
  .burger {
    display: flex;
  }
  .areas-grid {
    grid-template-columns: 1fr;
  }
  .profiles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .slider-btn.prev {
    left: 6px;
  }
  .slider-btn.next {
    right: 6px;
  }
  .slide {
    padding: 34px 22px;
  }
  .stats {
    gap: 26px;
  }
}

@media (max-width: 768px) {
  .floating-call-btn,
  .floating-whatsapp-btn {
    position: fixed;
    bottom: 0;
    width: calc(50vw);
    z-index: 2147483647;
  }
  .floating-call-btn {
    left: 0;
  }
  .floating-whatsapp-btn {
    left: 50vw;
  }
  .floating-call-btn a,
  .floating-whatsapp-btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 56px;
    margin: 0;
    padding: 0;
    border-radius: 0;
  }
  body {
    padding-bottom: 56px;
  }
  .nav-cta {
    display: none !important;
  }
}

@media (max-width: 460px) {
  .profiles-grid {
    grid-template-columns: 1fr;
  }
}