/* Mikysha.com - Premium Bangalore Escorts Theme */
/* Color Palette: Dark luxury + Gold accents */

:root {
  --bg-dark: #0d0d0d;
  --bg-card: #1a1a1a;
  --bg-header: #121212;
  --gold: #d4af37;
  --gold-light: #e8c97a;
  --gold-dark: #b8962e;
  --text-main: #f5f5f5;
  --text-muted: #b0b0b0;
  --pink-accent: #e8a0bf;
  --border: rgba(212, 175, 55, 0.25);
  --success: #2ecc71;
  --radius: 12px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  background: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Disable text selection + right click protection */
body.no-select {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.protect-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 99999;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #fff;
  text-align: center;
  padding: 20px;
}

.protect-overlay.active {
  display: flex;
}

.protect-overlay h2 {
  color: var(--gold);
  font-size: 1.8rem;
  margin-bottom: 12px;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.25s;
}

a:hover {
  color: var(--gold-light);
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ========== HEADER ========== */
.site-header {
  background: var(--bg-header);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 20px;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
}

.logo span {
  color: #fe3434;
}

.nav {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav a {
  color: var(--text-main);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s;
}

.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}

.header-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #111 !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
}

.header-cta:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #111 !important;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 1.6rem;
  cursor: pointer;
}

/* ========== HERO / WELCOME ========== */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #1a0f0f 0%, #0d0d0d 60%),
              url('images/hero-bg.jpg') center/cover no-repeat;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(212, 175, 55, 0.12), transparent 60%);
}

.hero-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-content {
  flex: 1;
  min-width: 300px;
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 60px 0;
}

.hero-badge {
  display: inline-block;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--border);
  color: var(--gold);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  margin-bottom: 18px;
  letter-spacing: 1px;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.2;
  margin-bottom: 18px;
  background: linear-gradient(90deg, #fff 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 28px;
  max-width: 540px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-item .num {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
}

.stat-item .label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-image {
  flex: 0 0 380px;
  max-width: 100%;
  position: relative;
  z-index: 2;
}

.hero-image img {
  width: 100%;
  border-radius: 16px;
  border: 2px solid var(--border);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  object-fit: cover;
  height: 520px;
}

.btn-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #111;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.35);
  color: #111;
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
}

.btn-outline:hover {
  background: rgba(212, 175, 55, 0.1);
}

.btn-sm {
  width: 100%;
  justify-content: center;
  padding: 10px;
  font-size: 0.85rem;
}

/* ========== SECTIONS COMMON ========== */
.section {
  padding: 70px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 14px;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
}

.section-title span {
  color: var(--gold);
}

.section-sub {
  text-align: center;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 48px;
  font-size: 1.05rem;
}

/* ========== TOP BOOKING TIERS ========== */
.tiers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

.tier-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.tier-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.15);
}

.tier-card.popular::before {
  content: 'MOST LOVED';
  position: absolute;
  top: 12px;
  right: -28px;
  background: var(--gold);
  color: #111;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 36px;
  transform: rotate(45deg);
}

.tier-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--gold-light);
}

.tier-card .price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.tier-card .desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ========== CATEGORIES ========== */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.cat-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.3s;
}

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

.cat-card .img-wrap {
  height: 180px;
  background: linear-gradient(135deg, #2a1a1a, #1a1a1a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--gold);
  position: relative;
}

.cat-card .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cat-card .body {
  padding: 18px 20px;
}

.cat-card h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.cat-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.cat-card .link {
  font-size: 0.9rem;
  font-weight: 600;
}

/* ========== NEW PREMIUM ESCORTS ========== */
.escorts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}

.escort-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.35s;
  position: relative;
}

.escort-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.escort-card .badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: #111;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  z-index: 2;
  text-transform: uppercase;
}

.escort-card .img-wrap {
  height: 260px;
  background: linear-gradient(180deg, #2a1f1f, #1a1212);
  position: relative;
  overflow: hidden;
}

.escort-card .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.escort-card:hover .img-wrap img {
  transform: scale(1.06);
}

.escort-card .info {
  padding: 16px 18px 20px;
}

.escort-card h3 {
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.escort-card .meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.escort-card .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.escort-card .tag {
  font-size: 0.75rem;
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold);
  padding: 3px 8px;
  border-radius: 4px;
}

/* ========== PREMIUM SERVICES ========== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all 0.3s;
}

.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.service-card .icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
  color: var(--gold);
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--gold-light);
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ========== LOCATIONS ========== */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.loc-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  transition: all 0.3s;
}

.loc-card:hover {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.05);
}

.loc-card h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.loc-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.locations-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 10px;
  list-style: none;
  padding: 0;
  max-width: 1000px;
  margin: 0 auto;
}

.locations-list li a {
  display: block;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: all 0.25s;
}

.locations-list li a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212, 175, 55, 0.06);
}

/* ========== FOOTER ========== */
.site-footer {
  background: #0a0a0a;
  border-top: 1px solid var(--border);
  padding: 50px 0 30px;
  margin-top: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .logo {
  display: inline-block;
  margin-bottom: 14px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 1rem;
  margin-bottom: 16px;
  color: var(--gold);
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ========== FLOATING WHATSAPP ========== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  min-width: 60px;
  height: 60px;
  padding: 0 18px;
  background: #25d366;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: transform 0.3s;
  color: #fff !important;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  color: #fff !important;
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}

/* ========== AGE GATE ========== */
.age-gate {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.age-gate.hidden {
  display: none;
}

.age-box {
  background: linear-gradient(145deg, #1a1212, #0d0d0d);
  border: 1px solid var(--gold);
  border-radius: 16px;
  padding: 40px 36px;
  max-width: 480px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.age-box h2 {
  color: var(--gold);
  margin-bottom: 16px;
  font-size: 1.6rem;
}

.age-box p {
  color: var(--text-muted);
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.age-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========== TABLES (rate charts) ========== */
table {
  width: 100%;
  border-collapse: collapse;
}

table th,
table td {
  padding: 10px 12px;
  text-align: left;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

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

  .hero-inner {
    flex-direction: column;
  }

  .hero-image {
    flex: none;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
  }

  .hero-image img {
    height: 320px;
  }
}

@media (max-width: 600px) {
  .hero-stats {
    gap: 18px;
  }

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

  .header-cta {
    display: none;
  }

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

  .escort-card .img-wrap {
    height: 200px;
  }

  .section {
    padding: 50px 0;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 16px;
    height: 52px;
    min-width: 52px;
    font-size: 0.8rem;
    padding: 0 14px;
  }
}


/* ========== FAQ Accordion - FIXED ========== */
.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 14px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  color: var(--gold-light);
  padding: 20px 24px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Playfair Display', Georgia, serif;
}

.faq-question:hover {
  background: rgba(212, 175, 55, 0.08);
}

.faq-icon {
  font-size: 1.6rem;
  color: var(--gold);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;               /* important */
  padding: 0 24px 20px;
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 1rem;
}

.faq-item.active .faq-answer {
  display: block;              /* important */
}

.faq-answer p {
  margin-bottom: 12px;
}

.faq-answer ul {
  margin: 8px 0 12px 18px;
  padding: 0;
}

.faq-answer li {
  margin-bottom: 6px;
}