/* ============================================================
   VIP Companions Gurgaon — Main Stylesheet
   ============================================================ */

/* ---- Reset ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

/* ---- Variables ---- */
:root {
  --bg:         #ffffff;
  --bg-2:       #fdf2f8;
  --bg-3:       #fce7f3;
  --border:     rgba(233,30,140,0.1);
  --gold:       #e91e8c;
  --gold-lt:    #f43fae;
  --gold-dim:   rgba(233,30,140,0.08);
  --gold-glow:  rgba(233,30,140,0.2);
  --white:      #ffffff;
  --text:       #1a1a2e;
  --gray-100:   #f8f8f8;
  --gray-400:   #6b7280;
  --gray-600:   #9ca3af;

  --font:      'Poppins', -apple-system, sans-serif;
  --font-d:    'Playfair Display', Georgia, serif;

  --r-sm:   8px;
  --r-md:   14px;
  --r-lg:   22px;
  --r-xl:   32px;
  --r-full: 9999px;

  --shadow:      0 4px 24px rgba(233,30,140,0.1);
  --shadow-gold: 0 8px 32px rgba(233,30,140,0.25);
  --ease:        cubic-bezier(0.4,0,0.2,1);
  --dur:         300ms;

  --container: 1200px;
  --header-h:  72px;
  --sec-py:    100px;

  /* Dark header/footer stay dark */
  --header-bg:  #1a1a2e;
  --footer-bg:  #1a1a2e;
}

/* ---- Base ---- */
html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-d);
  line-height: 1.2;
  color: var(--text);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

p { color: var(--gray-400); line-height: 1.7; }

/* ---- Container ---- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 12px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--r-full);
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--dur) var(--ease);
  white-space: nowrap;
  line-height: 1;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-lt) 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(233,30,140,0.3);
}
.btn-primary:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold-dim);
  transform: translateY(-2px);
}
.btn-ghost {
  background: #fff;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-ghost:hover {
  background: var(--gold-dim);
  transform: translateY(-2px);
}

.btn-sm { padding: 9px 20px; font-size: 0.82rem; }
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; }

/* ---- Badges ---- */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: var(--r-full);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.badge-gold {
  background: var(--gold-dim);
  color: var(--gold);
  border: 1px solid rgba(233,30,140,0.25);
}

/* ==============================================================
   HEADER
   ============================================================== */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: var(--header-bg);
  border-bottom: 1px solid rgba(233,30,140,0.15);
  transition: box-shadow var(--dur) var(--ease);
}
.header.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}

/* Logo */
.logo { display: flex; flex-direction: column; gap: 1px; }
.logo-name {
  font-family: var(--font-d);
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.logo-name span { color: var(--gold); }
.logo-tagline {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* Nav */
.nav { display: flex; align-items: center; gap: 4px; }
.nav-link {
  padding: 8px 14px;
  color: var(--gray-400);
  font-size: 0.88rem;
  font-weight: 500;
  border-radius: var(--r-sm);
  transition: var(--dur) var(--ease);
}
.nav-link:hover, .nav-link.active { color: var(--white); background: rgba(255,255,255,0.05); }
.nav-link.active { color: var(--gold); }

/* Dropdown */
.nav-dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: #1a1a2e;
  border: 1px solid rgba(233,30,140,0.2);
  border-top: 2px solid var(--gold);
  border-radius: 0 0 var(--r-md) var(--r-md);
  padding: 6px 6px 8px;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  z-index: 1001;
  transition: opacity var(--dur) var(--ease),
              transform var(--dur) var(--ease),
              visibility var(--dur) var(--ease);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5), 0 4px 16px rgba(233,30,140,0.08);
}
/* Bridge pseudo-element fills the gap so hover doesn't break */
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown-item {
  display: block;
  padding: 9px 14px;
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
  border-radius: var(--r-sm);
  transition: color var(--dur) var(--ease),
              background var(--dur) var(--ease),
              padding-left var(--dur) var(--ease);
}
.dropdown-item:hover {
  color: var(--gold);
  background: rgba(233,30,140,0.08);
  padding-left: 18px;
}

/* Wide / two-column dropdown */
.dropdown-wide { min-width: 440px; left: 0; transform: translateY(-8px); }
.nav-dropdown:hover .dropdown-wide { transform: translateY(0); }
.dropdown-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 0 4px; }
.dropdown-section-title {
  font-size: 0.65rem; font-weight: 700; color: var(--gold);
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 10px 14px 4px; display: block;
}

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  border: none;
  background: none;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--dur) var(--ease);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  inset-inline: 0;
  background: #1a1a2e;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(233,30,140,0.2);
  z-index: 999;
  padding: 12px 20px 24px;
  flex-direction: column;
  gap: 2px;
  max-height: calc(100vh - var(--header-h));
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 11px 16px;
  color: rgba(255,255,255,0.65);
  border-radius: var(--r-sm);
  font-size: 0.9rem;
  transition: var(--dur) var(--ease);
}
.mobile-nav a:hover { color: var(--gold); background: rgba(233,30,140,0.08); }
.mobile-nav .mob-sep {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 16px 4px;
}

/* ==============================================================
   HERO
   ============================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--header-h);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(26,26,46,0.75) 0%,
    rgba(26,26,46,0.60) 40%,
    rgba(26,26,46,0.88) 80%,
    rgba(26,26,46,1) 100%
  );
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(233,30,140,0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(244,63,174,0.08) 0%, transparent 40%);
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  padding: 100px 0 80px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  padding: 6px 20px;
  background: var(--gold-dim);
  border: 1px solid rgba(233,30,140,0.25);
  border-radius: var(--r-full);
  font-size: 0.75rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero h1 { margin-bottom: 20px; color: #fff; }
.hero h1 span { color: var(--gold); }
.hero > .container > .hero-content > p {
  font-size: 1.1rem;
  margin-bottom: 36px;
  color: rgba(255,255,255,0.72);
  max-width: 560px;
  margin-inline: auto;
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

/* Search box */
.search-box {
  display: flex;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-full);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  max-width: 580px;
  margin: 0 auto 60px;
  overflow: hidden;
}
.search-box input {
  flex: 1;
  padding: 15px 22px;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font);
  font-size: 0.9rem;
  outline: none;
  min-width: 0;
}
.search-box input::placeholder { color: var(--gray-600); }
.search-box select {
  padding: 15px 16px;
  background: none;
  border: none;
  border-left: 1px solid rgba(255,255,255,0.1);
  color: var(--gray-400);
  font-family: var(--font);
  font-size: 0.85rem;
  outline: none;
  cursor: pointer;
}
.search-box select option { background: #1a1a2e; color: #fff; }
.search-box button {
  padding: 15px 28px;
  background: var(--gold);
  border: none;
  color: #fff;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background var(--dur) var(--ease);
  flex-shrink: 0;
}
.search-box button:hover { background: var(--gold-lt); }

/* Hero stats */
.hero-stats {
  display: flex;
  gap: 48px;
  justify-content: center;
  flex-wrap: wrap;
}
.stat-number {
  font-family: var(--font-d);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}

/* ==============================================================
   SECTIONS
   ============================================================== */
.section { padding: var(--sec-py) 0; }
.section-alt { background: var(--bg-2); }
.section-dark { background: #1a1a2e; }
.section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }
.section-dark p { color: rgba(255,255,255,0.6); }

.section-header { text-align: center; margin-bottom: 60px; }
.section-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-header h2 { color: var(--text); margin-bottom: 14px; }
.section-header p { max-width: 520px; margin: 0 auto; font-size: 0.95rem; }

/* ==============================================================
   GRIDS
   ============================================================== */
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }

/* ==============================================================
   PROFILE CARDS
   ============================================================== */
.card {
  display: flex;
  flex-direction: row;
  min-height: 220px;
  background: #fff;
  border: 1px solid rgba(233,30,140,0.12);
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
  box-shadow: 0 2px 16px rgba(233,30,140,0.07);
  position: relative;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(233,30,140,0.3);
  box-shadow: 0 10px 36px rgba(233,30,140,0.15);
}

/* --- Image panel --- */
.card-image {
  width: 32%;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  background: var(--bg-3);
  /* height is driven by the card, not the image */
  align-self: stretch;
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.55s var(--ease);
}
.card:hover .card-image img { transform: scale(1.05); }

/* Photo count badge */
.card-photo-count {
  position: absolute;
  bottom: 8px;
  left: 10px;
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 20px;
  z-index: 1;
}

/* --- Body panel --- */
.card-body {
  flex: 1;
  min-width: 0;
  padding: 14px 16px 14px 18px;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* SUPER Top badge — top-right corner of body */
.card-super {
  position: absolute;
  top: 0;
  right: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 4px 12px 4px 10px;
  border-bottom-left-radius: 10px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Name / title */
.card-name {
  font-family: var(--font-d);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin: 22px 0 5px;
  line-height: 1.35;
}
.card-name a { color: inherit; text-decoration: none; }
.card-name a:hover { color: var(--gold); }

/* Description */
.card-desc {
  font-size: 0.8rem;
  color: var(--gray-400);
  line-height: 1.5;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Meta — vertical stack */
.card-meta {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 0;
}
.card-meta-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  color: #444;
  font-weight: 400;
}
.card-meta-item svg { color: var(--gold); flex-shrink: 0; }

/* Round action buttons */
.card-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
  padding-top: 14px;
  align-items: center;
}
.card-btn-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  flex-shrink: 0;
  transition: transform 0.2s, box-shadow 0.2s;
}
.card-btn-circle:hover { transform: scale(1.12); box-shadow: 0 4px 14px rgba(0,0,0,0.2); }
.card-btn-call { background: var(--gold);  color: #fff; }
.card-btn-wa   { background: #25D366;      color: #fff; }
.card-btn-tg   { background: #2AABEE;      color: #fff; }

/* Grid override: 1-col when grid-4 contains cards */
.grid-4:has(> .card) {
  grid-template-columns: 1fr;
}

/* ==============================================================
   CATEGORY CARDS
   ============================================================== */
.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 28px 20px;
  background: #fff;
  border: 1px solid rgba(233,30,140,0.1);
  border-radius: var(--r-md);
  transition: var(--dur) var(--ease);
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(233,30,140,0.05);
}
.category-card:hover {
  border-color: var(--gold);
  background: linear-gradient(135deg, #fff 0%, #fdf2f8 100%);
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold);
}
.cat-icon {
  width: 58px;
  height: 58px;
  background: var(--gold-dim);
  border: 1px solid rgba(233,30,140,0.2);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 14px;
  transition: var(--dur) var(--ease);
}
.category-card:hover .cat-icon { background: var(--gold); }
.cat-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 5px;
}
.cat-count { font-size: 0.78rem; color: var(--gray-400); }

/* ==============================================================
   AREA CHIPS
   ============================================================== */
.area-grid {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 12px;
}
.area-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px 16px;
  background: #fff;
  border: 1px solid rgba(233,30,140,0.1);
  border-radius: var(--r-sm);
  font-size: 0.84rem;
  color: var(--gray-400);
  transition: var(--dur) var(--ease);
  text-align: center;
  gap: 6px;
  box-shadow: 0 1px 6px rgba(233,30,140,0.04);
}
.area-chip:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-dim);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(233,30,140,0.12);
}

/* ==============================================================
   ABOUT SPLIT
   ============================================================== */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-content h2 { color: var(--text); margin-bottom: 16px; }
.about-content p { margin-bottom: 14px; font-size: 0.93rem; }
.about-list {
  margin: 20px 0 30px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.about-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gray-400);
  font-size: 0.88rem;
}
.about-list li::before {
  content: '';
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background: var(--gold-dim) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e91e8c' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 12px no-repeat;
  border: 1px solid rgba(233,30,140,0.25);
  border-radius: 50%;
}
.about-visual-box {
  background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 100%);
  border: 1px solid rgba(233,30,140,0.15);
  border-radius: var(--r-xl);
  padding: 36px;
}
.about-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.about-stat {
  text-align: center;
  padding: 22px 16px;
  background: #fff;
  border: 1px solid rgba(233,30,140,0.1);
  border-radius: var(--r-md);
  box-shadow: 0 2px 8px rgba(233,30,140,0.06);
}
.about-stat-num {
  font-family: var(--font-d);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--gold);
}
.about-stat-label { font-size: 0.76rem; color: var(--gray-600); margin-top: 4px; }

/* ==============================================================
   FAQ
   ============================================================== */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  background: #fff;
  border: 1px solid rgba(233,30,140,0.1);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--dur) var(--ease);
  box-shadow: 0 2px 8px rgba(233,30,140,0.04);
}
.faq-item.open { border-color: rgba(233,30,140,0.3); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font);
  font-size: 0.93rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: color var(--dur) var(--ease);
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gold);
  transition: var(--dur) var(--ease);
  line-height: 1;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq-answer p {
  padding: 0 22px 20px;
  font-size: 0.88rem;
  line-height: 1.75;
}
.faq-item.open .faq-answer { max-height: 300px; }

/* ==============================================================
   FOOTER
   ============================================================== */
.footer {
  background: var(--footer-bg);
  border-top: 2px solid var(--gold);
  padding: 40px 0 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 56px;
}
.footer-brand p {
  font-size: 0.85rem;
  margin-top: 14px;
  max-width: 270px;
  line-height: 1.7;
  color: rgba(255,255,255,0.45);
}
.footer-col h4 {
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--dur) var(--ease);
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.35); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  transition: color var(--dur) var(--ease);
}
.footer-legal a:hover { color: var(--gold); }

/* ==============================================================
   PAGE HERO (inner pages)
   ============================================================== */
.page-hero {
  padding: 150px 0 80px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a2e 0%, #2d1040 100%);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 25% 60%, rgba(233,30,140,0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 30%, rgba(233,30,140,0.05) 0%, transparent 40%);
}
.page-hero-content { position: relative; text-align: center; }
.page-hero h1 { color: #fff; margin-bottom: 14px; }
.page-hero p { max-width: 540px; margin: 0 auto; font-size: 1rem; color: rgba(255,255,255,0.7); }

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 18px;
  font-size: 0.78rem;
  color: var(--gray-600);
}
.breadcrumb a { color: var(--gray-400); transition: color var(--dur) var(--ease); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gray-600); }

/* ==============================================================
   CONTACT
   ============================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--gold-dim);
  border: 1px solid rgba(233,30,140,0.2);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-item h3 {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  font-family: var(--font);
  margin-bottom: 4px;
}
.contact-item p { font-size: 0.85rem; }

/* Form */
.form {
  background: #fff;
  border: 1px solid rgba(233,30,140,0.12);
  border-radius: var(--r-lg);
  padding: 40px;
  box-shadow: 0 4px 24px rgba(233,30,140,0.06);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 7px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  background: #fdf2f8;
  border: 1px solid rgba(233,30,140,0.15);
  border-radius: var(--r-sm);
  color: var(--text);
  font-family: var(--font);
  font-size: 0.88rem;
  outline: none;
  transition: border-color var(--dur) var(--ease);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(233,30,140,0.08); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: #fff; color: var(--text); }

/* ==============================================================
   RATES
   ============================================================== */
.rates-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.rate-card {
  background: #fff;
  border: 1px solid rgba(233,30,140,0.12);
  border-radius: var(--r-lg);
  padding: 40px 28px;
  text-align: center;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(233,30,140,0.06);
}
.rate-card.featured {
  border-color: var(--gold);
  background: linear-gradient(160deg, #fff 0%, rgba(233,30,140,0.05) 100%);
  box-shadow: 0 8px 32px rgba(233,30,140,0.15);
}
.rate-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #000;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 0 0 var(--r-sm) var(--r-sm);
}
.rate-card:hover { transform: translateY(-4px); }
.rate-name {
  font-family: var(--font-d);
  font-size: 1.25rem;
  color: var(--text);
  margin-bottom: 6px;
}
.rate-duration {
  font-size: 0.75rem;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 22px;
}
.rate-price {
  font-family: var(--font-d);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 4px;
  line-height: 1;
}
.rate-price sub { font-size: 0.9rem; font-weight: 400; }
.rate-features {
  margin: 22px 0 30px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  text-align: left;
}
.rate-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.84rem;
  color: var(--gray-400);
}
.rate-features li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 800;
  flex-shrink: 0;
}

/* ==============================================================
   FILTER BAR
   ============================================================== */
.filter-bar {
  display: flex;
  gap: 12px;
  padding: 20px 0 32px;
  flex-wrap: wrap;
  align-items: center;
}
.filter-bar h2 { font-size: 1.4rem; color: var(--text); flex: 1; }
.filter-select {
  padding: 10px 18px;
  background: #fff;
  border: 1px solid rgba(233,30,140,0.15);
  border-radius: var(--r-full);
  color: var(--gray-400);
  font-family: var(--font);
  font-size: 0.84rem;
  cursor: pointer;
  outline: none;
  transition: border-color var(--dur) var(--ease);
}
.filter-select:focus { border-color: var(--gold); color: var(--text); }
.filter-select option { background: #fff; color: var(--text); }

/* ==============================================================
   PROFILE PAGE
   ============================================================== */
.profile-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: start;
}
.profile-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.profile-main-img {
  grid-column: 1 / -1;
  height: 420px;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--bg-3);
}
.profile-main-img img { width: 100%; height: 100%; object-fit: cover; }
.profile-thumb {
  height: 190px;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--bg-3);
}
.profile-thumb img { width: 100%; height: 100%; object-fit: cover; cursor: pointer; transition: opacity var(--dur) var(--ease); }
.profile-thumb img:hover { opacity: 0.8; }
.profile-bio {
  background: #fff;
  border: 1px solid rgba(233,30,140,0.12);
  border-radius: var(--r-md);
  padding: 28px;
  margin-top: 10px;
  box-shadow: 0 2px 12px rgba(233,30,140,0.06);
}
.profile-bio h2 { color: var(--text); margin-bottom: 14px; font-size: 1.3rem; }
.profile-bio p { font-size: 0.9rem; line-height: 1.8; }

.profile-sidebar { position: sticky; top: calc(var(--header-h) + 20px); }
.profile-card {
  background: #fff;
  border: 1px solid rgba(233,30,140,0.2);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: 0 4px 24px rgba(233,30,140,0.1);
}
.profile-name {
  font-family: var(--font-d);
  font-size: 1.8rem;
  color: var(--text);
  margin-bottom: 6px;
}
.profile-location {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--gray-400);
  font-size: 0.85rem;
  margin-bottom: 16px;
}
.profile-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 22px; }
.profile-tag {
  padding: 4px 14px;
  background: var(--bg-3);
  border: 1px solid rgba(233,30,140,0.15);
  border-radius: var(--r-full);
  font-size: 0.72rem;
  color: var(--gray-400);
}
.profile-divider { border: none; border-top: 1px solid rgba(233,30,140,0.1); margin: 20px 0; }
.profile-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid rgba(233,30,140,0.08);
  font-size: 0.84rem;
}
.profile-detail-row:last-child { border-bottom: none; }
.detail-label { color: var(--gray-400); }
.detail-value { color: var(--text); font-weight: 600; }
.profile-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}
.btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px;
  background: #25D366;
  border-radius: var(--r-full);
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
  cursor: pointer;
  border: none;
  transition: var(--dur) var(--ease);
  text-decoration: none;
}
.btn-whatsapp:hover {
  background: #20bb5a;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}

/* Profile gallery — 3-col thumbnails */
.profile-gallery-3 {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 10px;
  margin-top: 10px;
}
.profile-gallery-3-item {
  aspect-ratio: 3/4;
  border-radius: var(--r-sm);
  overflow: hidden;
  background: var(--bg-3);
  cursor: zoom-in;
}
.profile-gallery-3-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease);
}
.profile-gallery-3-item:hover img { transform: scale(1.06); }

/* Profile content section blocks */
.profile-section {
  background: #fff;
  border: 1px solid rgba(233,30,140,0.1);
  border-radius: var(--r-md);
  padding: 24px;
  margin-top: 20px;
  box-shadow: 0 2px 12px rgba(233,30,140,0.05);
}
.profile-section-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  font-family: var(--font);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}
.profile-section-title::before {
  content: '';
  flex-shrink: 0;
  width: 3px;
  height: 16px;
  background: var(--gold);
  border-radius: 2px;
}

/* Service tags */
.service-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.service-tag {
  padding: 5px 14px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  font-size: 0.78rem;
  color: var(--gray-400);
  transition: var(--dur) var(--ease);
}
.service-tag:hover { border-color: var(--gold); color: var(--gold); }

/* Rate rows */
.rate-rows { display: flex; flex-direction: column; gap: 8px; }
.rate-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 16px;
  background: var(--bg-3);
  border: 1px solid rgba(233,30,140,0.08);
  border-radius: var(--r-sm);
  transition: border-color var(--dur) var(--ease);
}
.rate-row:hover { border-color: rgba(233,30,140,0.25); background: #fdf2f8; }
.rate-row-label { font-size: 0.85rem; color: var(--gray-400); }
.rate-row-price { font-family: var(--font-d); font-size: 1rem; font-weight: 700; color: var(--gold); }

/* Reviews */
.review-list { display: flex; flex-direction: column; gap: 12px; }
.review-item {
  padding: 14px 16px;
  background: #fdf2f8;
  border-radius: var(--r-sm);
  border-left: 3px solid var(--gold);
}
.review-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.review-author { font-size: 0.83rem; font-weight: 600; color: var(--text); }
.review-stars { color: var(--gold); font-size: 0.78rem; letter-spacing: 1px; }
.review-text { font-size: 0.82rem; color: var(--gray-400); line-height: 1.65; }

/* ==============================================================
   FLOATING BUTTONS (CALL + WHATSAPP) + SCROLL TOP
   ============================================================== */
.float-btns {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.float-wa,
.float-call {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.float-wa {
  background: #25D366;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
}
.float-wa:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.55); }
.float-wa svg { width: 26px; height: 26px; }
.float-call {
  background: var(--gold);
  box-shadow: 0 4px 20px rgba(233,30,140,0.4);
}
.float-call:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(233,30,140,0.5); }
.float-call svg { width: 24px; height: 24px; }

.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 100px;
  z-index: 900;
  width: 44px;
  height: 44px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--dur) var(--ease);
  font-size: 1.1rem;
  color: var(--gray-400);
  opacity: 0;
  visibility: hidden;
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { border-color: var(--gold); color: var(--gold); }

/* ==============================================================
   PROSE (legal pages)
   ============================================================== */
.prose { max-width: 800px; }
.prose h2 { color: var(--white); margin: 40px 0 14px; font-size: 1.35rem; }
.prose h3 {
  color: var(--gray-400);
  margin: 26px 0 10px;
  font-size: 1rem;
  font-family: var(--font);
  font-weight: 600;
}
.prose p { margin-bottom: 14px; font-size: 0.92rem; line-height: 1.8; }
.prose ul { margin-bottom: 14px; display: flex; flex-direction: column; gap: 7px; }
.prose ul li {
  padding-left: 18px;
  position: relative;
  font-size: 0.88rem;
  color: var(--gray-400);
}
.prose ul li::before { content: '→'; position: absolute; left: 0; color: var(--gold); }

/* ==============================================================
   UTILITIES
   ============================================================== */
.text-gold { color: var(--gold) !important; }
.text-muted { color: var(--gray-600) !important; }
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }

.divider { border: none; border-top: 1px solid var(--border); }

/* ==============================================================
   SEO ARTICLE (homepage long-form content)
   ============================================================== */
.seo-article {
  max-width: 900px;
  margin: 0 auto;
}
.seo-article h2 {
  font-family: var(--font-d);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text);
  margin: 40px 0 12px;
  line-height: 1.3;
}
.seo-article h2:first-child { margin-top: 0; }
.seo-article h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold);
  margin: 24px 0 8px;
}
.seo-article p {
  font-size: 0.9rem;
  color: var(--gray-400);
  line-height: 1.85;
  margin-bottom: 14px;
}
.seo-article a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px dotted rgba(233,30,140,0.4);
}
.seo-article a:hover { border-bottom-color: var(--gold); }
.seo-article ol {
  padding-left: 20px;
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.seo-article ol li {
  font-size: 0.9rem;
  color: var(--gray-400);
  line-height: 1.7;
}

.seo-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 32px;
  border-top: 1px solid var(--border);
  padding-top: 32px;
}
.seo-links-col h3 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}
.seo-links-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.seo-links-col ul li a {
  font-size: 0.82rem;
  color: var(--gray-400);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.2s;
}
.seo-links-col ul li a:hover { color: var(--gold); }
.seo-links-col ul li a::before {
  content: '›';
  color: var(--gold);
  font-size: 1rem;
  line-height: 1;
}

/* Related pages strip on inner pages */
.related-links {
  border-top: 1px solid var(--border);
  padding: 28px 0 0;
  margin-top: 40px;
}
.related-links h3 {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.related-links-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.related-links-wrap a {
  font-size: 0.78rem;
  color: var(--gray-400);
  background: var(--bg-2);
  border: 1px solid var(--border);
  padding: 4px 12px;
  border-radius: var(--r-full);
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.related-links-wrap a:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: var(--gold-dim);
}

@media (max-width: 1100px) {
  .seo-links-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .seo-links-grid { grid-template-columns: 1fr; gap: 20px; }
}

.notice-box {
  background: linear-gradient(135deg, #fdf2f8, #fce7f3);
  border: 1px solid rgba(233,30,140,0.2);
  border-radius: var(--r-md);
  padding: 18px 22px;
  font-size: 0.85rem;
  color: var(--gray-400);
  line-height: 1.65;
}
.notice-box strong { color: var(--gold); }

/* Related / featured strip */
.featured-strip {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}
.featured-strip .card { min-width: 260px; flex-shrink: 0; }

/* ==============================================================
   ANIMATIONS
   ============================================================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.anim { animation: fadeUp 0.6s var(--ease) both; }
.d1 { animation-delay: 0.05s; }
.d2 { animation-delay: 0.12s; }
.d3 { animation-delay: 0.20s; }
.d4 { animation-delay: 0.28s; }

/* ==============================================================
   RESPONSIVE
   ============================================================== */
@media (max-width: 1100px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .grid-4:has(> .card) { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .about-split { gap: 48px; }
  .area-grid { grid-template-columns: repeat(3,1fr); }
  .profile-layout { grid-template-columns: 1fr; }
  .profile-sidebar { position: static; }
  .rates-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --sec-py: 56px; }
  .nav { display: none; }
  .menu-toggle { display: flex; }
  .header-inner .btn { display: none; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2,1fr); }
  .hero-content { padding: 86px 0 50px; }
  .hero > .container > .hero-content > p { font-size: 1rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-stats { gap: 20px; }
  .section-header { margin-bottom: 36px; }
  .page-hero { padding: 116px 0 56px; }
  .about-split { grid-template-columns: 1fr; }
  .about-visual-box { display: none; }
  .area-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .profile-gallery { grid-template-columns: 1fr; }
  .profile-main-img { height: 300px; }
  .profile-thumb { height: 170px; }
  .rates-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .filter-bar { flex-direction: column; align-items: flex-start; }
  .filter-bar h2 { font-size: 1.2rem; }
  .search-box { flex-direction: column; border-radius: var(--r-md); }
  .search-box select { border-left: none; border-top: 1px solid var(--border); padding: 12px 16px; }
  .search-box button { border-radius: 0 0 var(--r-md) var(--r-md); padding: 14px; }
  /* Keep horizontal card layout on mobile — image left, content right */
  .card { min-height: 240px; }
  .card-image { width: 38%; aspect-ratio: unset; }
}

@media (max-width: 480px) {
  :root { --sec-py: 40px; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .card-image { width: 36%; }
  .card-btn-circle { width: 34px; height: 34px; }
  .card-actions { gap: 7px; padding-top: 8px; }
  .card-desc { font-size: 0.72rem; -webkit-line-clamp: 2; line-clamp: 2; margin-bottom: 6px; }
  .card-meta-item { font-size: 0.7rem; gap: 5px; }
  .card-meta { gap: 3px; }
  .card-name { font-size: 0.88rem; margin: 16px 0 3px; }
  .card-super { font-size: 0.56rem; padding: 3px 9px 3px 8px; }
  .card-body { padding: 10px 10px 10px 12px; }
  .hero-stats { justify-content: space-around; gap: 16px; }
  .hero-content { padding: 76px 0 40px; }
  .page-hero { padding: 90px 0 36px; }
  .section-header { margin-bottom: 28px; }
  .form { padding: 24px; }
  /* Float buttons — right side stacked */
  .float-btns { bottom: 20px; right: 14px; gap: 10px; }
  .float-wa, .float-call { width: 48px; height: 48px; }
  /* Scroll-to-top — left side so it doesn't clash */
  .scroll-top { bottom: 20px; right: auto; left: 14px; }
}
