/* ============================================================
   KATHMANDU ESCORTS — MODERN LUXURY DARK REDESIGN
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Raleway:wght@300;400;500;600;700&display=swap');

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --bg:          #060608;
  --bg-2:        #0d0d12;
  --bg-card:     #111118;
  --bg-glass:    rgba(255,255,255,0.04);
  --accent:      #c8102e;
  --accent-glow: rgba(200,16,46,0.35);
  --accent-soft: rgba(200,16,46,0.12);
  --gold:        #c9a84c;
  --text:        #e8e6e1;
  --text-muted:  #888;
  --border:      rgba(200,16,46,0.25);
  --border-gold: rgba(201,168,76,0.3);
  --radius:      12px;
  --radius-lg:   20px;
  --shadow:      0 20px 60px rgba(0,0,0,0.6);
  --shadow-red:  0 8px 40px rgba(200,16,46,0.25);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Raleway', sans-serif;
  --transition:  all 0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after {
  margin: 0; padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.75;
  font-size: 16px;
  padding-bottom: 60px;
  -webkit-font-smoothing: antialiased;
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(200,16,46,0.08) 0%, transparent 70%);
}

/* ── SCROLLBAR ───────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* ── TYPOGRAPHY ──────────────────────────────────────────── */
a { color: var(--accent); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold); }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.2;
  letter-spacing: 0.01em;
}

h1 {
  color: var(--text);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-style: italic;
  text-align: center;
  margin-bottom: 28px;
  position: relative;
  padding-bottom: 20px;
}
h1::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

h2 {
  color: var(--text);
  font-size: clamp(1.4rem, 3vw, 2rem);
  text-align: center;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 18px;
}
h2::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

h3 {
  color: var(--gold);
  font-size: 1.3rem;
  margin: 28px 0 12px;
  font-weight: 600;
}

h4, h5 { color: var(--accent); margin: 20px 0 8px; font-size: 1.1rem; }

p {
  margin-bottom: 18px;
  color: #b8b4ae;
  font-size: 15.5px;
  font-weight: 300;
}

/* ── CONTAINER ───────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
}

/* ── HEADER / NAV ────────────────────────────────────────── */
header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(6,6,8,0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  padding: 0;
}

nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-style: italic;
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, var(--text) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
}

.nav-links a {
  color: var(--text-muted);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 8px 16px;
  border-radius: 6px;
  transition: var(--transition);
}
.nav-links a:hover {
  color: var(--text);
  background: var(--accent-soft);
}

.hamburger {
  display: none;
  cursor: pointer;
  font-size: 26px;
  color: var(--text);
  line-height: 1;
}

/* ── VIDEO ───────────────────────────────────────────────── */
.top-video {
  width: 100%;
  position: relative;
  overflow: hidden;
  background: #000;
}
.top-video::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none;
}
.top-video video {
  width: 100%;
  height: auto;
  display: block;
}

/* ── SECTION WRAPPER ─────────────────────────────────────── */
section { padding: 0; }

/* ── PROFILES GRID ───────────────────────────────────────── */
.profiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 36px 0;
}

.profile {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  transition: var(--transition);
  position: relative;
}
.profile::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(200,16,46,0.18) 0%, transparent 50%);
  opacity: 0;
  transition: var(--transition);
  z-index: 1;
  pointer-events: none;
}
.profile:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: var(--shadow-red);
}
.profile:hover::before { opacity: 1; }

/* ── PROFILE IMAGE WRAPPER (FIX) ─────────────────────────── */
.profile .img-wrap {
  width: 100%;
  height: 300px;
  overflow: hidden;
  display: block;
  flex-shrink: 0;
}

.profile .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: brightness(0.9) saturate(0.9);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1),
              filter  0.35s cubic-bezier(0.4,0,0.2,1);
}

.profile:hover .img-wrap img {
  filter: brightness(1) saturate(1.05);
  transform: scale(1.04);
}

/* fallback: direct img inside .profile (no wrapper) */
.profile > img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: brightness(0.9) saturate(0.9);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1),
              filter  0.35s cubic-bezier(0.4,0,0.2,1);
}
.profile:hover > img {
  filter: brightness(1) saturate(1.05);
  transform: scale(1.04);
}

.profile h4 {
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1rem;
  margin: 12px 0 0;
  padding: 0 10px;
}
.profile p {
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 4px 0 14px;
  font-weight: 500;
}

/* ── RATES ───────────────────────────────────────────────── */
.rates-section {
  padding: 60px 0;
  background: var(--bg-2);
  margin: 0 -24px;
}
.rates-section .container { margin: 0 auto; }

.rates-intro {
  text-align: center;
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
}

.rates-table { overflow-x: auto; border-radius: var(--radius); }

.rates-table table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  font-size: 14px;
}

.rates-table th {
  background: var(--accent);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 14px;
  border-bottom: 2px solid rgba(255,255,255,0.1);
}

.rates-table td {
  padding: 14px 14px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: #c8c4bc;
  font-weight: 300;
}
.rates-table tr:last-child td { border-bottom: none; }
.rates-table tr:nth-child(odd) td { background: rgba(255,255,255,0.02); }
.rates-table tr:hover td { background: var(--accent-soft); }

/* ── CATEGORIES ──────────────────────────────────────────── */
.categories-section {
  padding: 60px 24px;
  background: var(--bg);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  margin-top: 40px;
}

.category-card {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
}
.category-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--gold), transparent);
  opacity: 0;
  transition: var(--transition);
}
.category-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: var(--shadow-red);
  background: rgba(200,16,46,0.06);
}
.category-card:hover::before { opacity: 1; }

.category-card h3 {
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0 0 12px;
  font-style: italic;
}
.category-card p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 22px;
}

.price-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), #8b0000);
  color: #fff;
  padding: 9px 22px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 16px var(--accent-glow);
}

/* ── TAGS & LOCATIONS ────────────────────────────────────── */
.categories, .areas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 24px 0;
}

.categories span, .areas span {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 7px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
  letter-spacing: 0.03em;
}
.categories span:hover, .areas span:hover {
  border-color: var(--accent);
  color: var(--text);
  background: var(--accent-soft);
}
.areas span a { color: inherit; }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq { margin-top: 40px; }

.faq details {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}
.faq details:hover { border-color: var(--accent); }
.faq details[open] { border-color: var(--gold); }
.faq details[open] summary { color: var(--gold); }

.faq summary {
  font-weight: 600;
  cursor: pointer;
  padding: 18px 22px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  margin-left: auto;
  font-size: 22px;
  color: var(--accent);
  transition: var(--transition);
}
.faq details[open] summary::after { content: '−'; }

.faq details p {
  padding: 0 22px 18px;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 300;
  border-top: 1px solid var(--border);
  margin: 0;
  padding-top: 16px;
}

/* ── TESTIMONIALS ────────────────────────────────────────── */
.testimonials-carousel {
  position: relative;
  max-width: 100%;
  margin: 40px 0;
}

.carousel-container {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  gap: 20px;
  padding: 10px 4px 20px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.carousel-container::-webkit-scrollbar { display: none; }

.carousel-container .testimonial {
  flex: 0 0 100%;
  min-width: 100%;
  scroll-snap-align: center;
  background: var(--bg-glass);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  text-align: center;
  backdrop-filter: blur(10px);
  position: relative;
}
.carousel-container .testimonial::before {
  content: '"';
  position: absolute;
  top: -10px; left: 30px;
  font-family: var(--font-display);
  font-size: 100px;
  color: var(--accent);
  opacity: 0.2;
  line-height: 1;
}

.carousel-container .testimonial p {
  font-size: 15px;
  font-style: italic;
  color: #c8c4bc;
  line-height: 1.8;
  margin-bottom: 24px;
  font-weight: 300;
}

.carousel-container .testimonial h4 {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: normal;
  margin: 0 0 4px;
}

.carousel-container .testimonial p:last-child {
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.08em;
  font-style: normal;
  font-weight: 600;
  margin: 0;
}

.carousel-prev, .carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 20px;
  width: 46px; height: 46px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.carousel-prev:hover, .carousel-next:hover {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: var(--shadow-red);
}
.carousel-prev { left: -16px; }
.carousel-next { right: -16px; }

/* ── CONTACT + MAP ───────────────────────────────────────── */
.contact-map-section {
  padding: 60px 24px;
  background: var(--bg-2);
  text-align: center;
}

.section-intro {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
}

.contact-map-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

.map-column, .form-column {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-wrapper { height: 100%; min-height: 420px; }
.map-wrapper iframe { width: 100%; height: 100%; border: none; display: block; filter: grayscale(60%) contrast(1.1); }

.contact-form {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  background: rgba(255,255,255,0.03);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  transition: var(--transition);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); font-size: 14px; }
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(200,16,46,0.05);
  box-shadow: 0 0 0 3px rgba(200,16,46,0.12);
}

.submit-btn {
  background: linear-gradient(135deg, var(--accent), #8b0000);
  color: #fff;
  border: none;
  padding: 16px 24px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px var(--accent-glow);
}
.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--accent-glow);
  background: linear-gradient(135deg, #e0162f, #a00000);
}

.form-note {
  padding: 0 32px 28px;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 300;
}
.form-note strong { color: var(--accent); }

/* ── FOOTER ──────────────────────────────────────────────── */
footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  margin-top: 0;
}

.footer-bg {
  padding: 60px 0 30px;
  background: none;
  position: relative;
}
.footer-bg::before { display: none; }

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 40px;
  border-bottom: 1px solid var(--border);
}

.footer-column h3 {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-column p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
  margin: 0;
}
.footer-column p strong mark {
  background: var(--accent);
  color: #fff;
  padding: 1px 6px;
  border-radius: 3px;
}

.footer-column ul { list-style: none; padding: 0; margin: 0; }
.footer-column ul li { margin-bottom: 10px; }
.footer-column ul li a {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 300;
  transition: var(--transition);
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}
.footer-column ul li a:hover { color: var(--text); }

footer > p {
  text-align: center;
  font-size: 13px;
  color: #444;
  padding: 20px 24px 10px;
  margin: 0;
}

/* ── FIXED BOTTOM BAR ────────────────────────────────────── */
.bottom-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
}

.whatsapp {
  background: linear-gradient(90deg, #1a6b2f, #25a244);
  color: #fff;
  padding: 14px 20px;
  flex: 1;
  text-align: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--transition);
}
.whatsapp:hover { filter: brightness(1.1); }
.whatsapp a { color: #fff; }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
}
.hero-content { position: relative; z-index: 1; max-width: 800px; padding: 24px; }
.hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); color: #fff; }
.hero p { font-size: 1.15rem; color: rgba(255,255,255,0.75); }

/* ── ADVANTAGES ──────────────────────────────────────────── */
.advanTags {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  margin: 40px 0;
}
.advantage {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: var(--transition);
}
.advantage:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 30px rgba(201,168,76,0.1);
}

/* ── SCROLL FADE-IN ──────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.profile, .category-card, .faq details, .carousel-container .testimonial {
  animation: fadeUp 0.5s ease both;
}
.profile:nth-child(1)  { animation-delay: 0.05s; }
.profile:nth-child(2)  { animation-delay: 0.10s; }
.profile:nth-child(3)  { animation-delay: 0.15s; }
.profile:nth-child(4)  { animation-delay: 0.20s; }
.profile:nth-child(5)  { animation-delay: 0.25s; }
.profile:nth-child(6)  { animation-delay: 0.30s; }
.profile:nth-child(7)  { animation-delay: 0.35s; }
.profile:nth-child(8)  { animation-delay: 0.40s; }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .profiles { grid-template-columns: repeat(3, 1fr); }
  .footer-columns { grid-template-columns: 1fr 1fr; }
}

/* ── TABLET / MOBILE 768px ───────────────────────────────── */
@media (max-width: 768px) {

  /* ---- HEADER FIX ---- */
  nav {
    height: 52px;
    padding: 0 14px;
  }

  .logo {
    font-size: 1.05rem;
    letter-spacing: 0.02em;
  }

  .hamburger {
    display: block;
    font-size: 22px;
  }

  /* dropdown sits below the 52px nav */
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 4px;
    position: absolute;
    top: 52px;
    left: 0; right: 0;
    background: rgba(6,6,8,0.97);
    backdrop-filter: blur(20px);
    padding: 16px;
    border-bottom: 1px solid var(--border);
    z-index: 300;
  }
  .nav-links.active { display: flex; }

  .nav-links a {
    font-size: 12px;
    padding: 10px 14px;
  }

  /* ---- PROFILE IMAGE FIX ---- */
  .profiles { grid-template-columns: repeat(2, 1fr); }

  .profile .img-wrap { height: 220px; }
  .profile > img    { height: 220px; }

  /* ---- OTHER ---- */
  .contact-map-grid { grid-template-columns: 1fr; }
  .map-wrapper { min-height: 260px; }

  .footer-columns { grid-template-columns: 1fr; gap: 30px; }

  .carousel-prev { left: 4px; }
  .carousel-next { right: 4px; }
  .carousel-container .testimonial { padding: 30px 20px; }

  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.25rem; }
}

/* ── SMALL MOBILE 480px ──────────────────────────────────── */
@media (max-width: 480px) {
  nav { height: 48px; padding: 0 12px; }
  .logo { font-size: 1.60rem; }
  .hamburger { font-size: 20px; }
  .nav-links { top: 48px; }

  .profiles { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  .profile .img-wrap { height: 180px; }
  .profile > img    { height: 180px; }

  .categories-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 20px 16px; }

  .container { padding: 40px 16px; }
}