/* ============================================================
   katyapetrova – Goa Escorts Directory
   Color palette: dark bg, hot pink accent (#e91e8c / #ff2d87)
   ============================================================ */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --pink: #e91e8c;
  --pink2: #ff2d87;
  --pink-dark: #b5166d;
  --dark: #111115;
  --dark2: #1a1a22;
  --dark3: #22222e;
  --card-bg: #1e1e28;
  --text: #e2e2e6;
  --muted: #888899;
  --white: #ffffff;
  --green: #25d366;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(233, 30, 140, .18);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.65;
  font-size: 15px;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--pink), var(--pink2));
  color: #fff;
  padding: 11px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .3px;
  transition: all .25s;
  box-shadow: 0 4px 18px rgba(233, 30, 140, .35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--pink2), var(--pink));
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(233, 30, 140, .45);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--pink2);
  border: 2px solid var(--pink2);
  padding: 9px 26px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  transition: all .25s;
}

.btn-outline:hover {
  background: var(--pink2);
  color: #fff;
  transform: translateY(-2px);
}

.btn-wa-large {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  padding: 11px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  transition: all .25s;
  box-shadow: 0 4px 18px rgba(37, 211, 102, .3);
}

.btn-wa-large:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, .45);
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(17, 17, 21, .95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(233, 30, 140, .2);
  padding: 14px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-nik {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
}

.logo-girl {
  font-size: 26px;
  font-weight: 700;
  color: var(--pink2);
  margin-left: -2px;
}

.logo small {
  font-size: 9px;
  color: var(--muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  gap: 28px;
  margin-left: 32px;
  flex: 1;
}

.main-nav a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--muted);
  transition: color .2s;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--pink);
  transform: scaleX(0);
  transition: transform .25s;
}

.main-nav a:hover {
  color: #fff;
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.header-cta {
  margin-left: auto;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
  padding: 70px 0 60px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(233, 30, 140, .22) 0%, transparent 65%),
    radial-gradient(ellipse at 10% 80%, rgba(255, 45, 135, .12) 0%, transparent 50%),
    linear-gradient(135deg, #0d0d13 0%, #16101f 100%);
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23e91e8c' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  display: flex;
  align-items: center;
  gap: 60px;
}

.hero-text {
  flex: 1;
}

.badge-top {
  display: inline-block;
  background: rgba(233, 30, 140, .15);
  border: 1px solid rgba(233, 30, 140, .4);
  color: var(--pink2);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .8px;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero-text h1 {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.18;
  color: #fff;
  margin-bottom: 18px;
}

.hero-text h1 .accent {
  color: var(--pink2);
}

.hero-text p {
  font-size: 15.5px;
  color: var(--muted);
  margin-bottom: 30px;
  max-width: 480px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 32px;
}

.hero-stats .stat strong {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: var(--pink2);
}

.hero-stats .stat span {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .6px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-image {
  flex-shrink: 0;
}

.placeholder-hero {
  width: 320px;
  height: 420px;
  background: linear-gradient(135deg, #1e1e2e 0%, #2a1a2e 100%);
  border: 2px solid rgba(233, 30, 140, .3);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: rgba(233, 30, 140, .4);
  font-size: 13px;
  position: relative;
  overflow: hidden;
}

.placeholder-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(233, 30, 140, .08) 0%, transparent 70%);
}

.placeholder-hero i {
  font-size: 80px;
  opacity: .35;
}

.placeholder-hero span {
  font-weight: 600;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
  padding: 70px 0;
}

.section-alt {
  background: var(--dark2);
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.section-header h2 .accent {
  color: var(--pink2);
}

.section-header p {
  color: var(--muted);
  font-size: 14.5px;
}

/* ============================================================
   PROFILE GRID & CARDS
   ============================================================ */
.profile-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}

.profile-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .07);
  transition: transform .25s, box-shadow .25s, border-color .25s;
  position: relative;
}

.profile-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(233, 30, 140, .35);
}

.card-img {
  width: 100%;
  aspect-ratio: 3/4;
  position: relative;
}

.placeholder-img {
  background: linear-gradient(145deg, #1e1e2e 0%, #28182e 50%, #1e2030 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(233, 30, 140, .25);
}

.placeholder-img i {
  font-size: 48px;
  opacity: .5;
}

.placeholder-img::after {
  content: 'Photo';
  display: block;
  font-size: 10px;
  color: rgba(255, 255, 255, .15);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 8px;
}

.card-info {
  padding: 10px 12px 12px;
  text-align: center;
}

.name-age {
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  margin-bottom: 9px;
}

.name-age .age {
  font-size: 12px;
  color: var(--pink);
  font-weight: 500;
  margin-left: 4px;
}

.card-btns {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.btn-call,
.btn-wa {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all .2s;
}

.btn-call {
  background: rgba(233, 30, 140, .15);
  color: var(--pink2);
  border: 1px solid rgba(233, 30, 140, .35);
}

.btn-call:hover {
  background: var(--pink2);
  color: #fff;
  transform: scale(1.1);
}

.btn-wa {
  background: rgba(37, 211, 102, .12);
  color: var(--green);
  border: 1px solid rgba(37, 211, 102, .3);
}

.btn-wa:hover {
  background: var(--green);
  color: #fff;
  transform: scale(1.1);
}

.view-all-wrap {
  text-align: center;
}

/* ============================================================
   SEO TEXT SECTIONS
   ============================================================ */
.seo-section {
  padding: 50px 0;
  background: var(--dark3);
  border-top: 1px solid rgba(255, 255, 255, .05);
  border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.seo-section h2 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
  position: relative;
  padding-left: 16px;
}

.seo-section h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 4px;
  background: var(--pink);
  border-radius: 2px;
}

.seo-section p {
  color: var(--muted);
  margin-bottom: 14px;
  max-width: 780px;
  font-size: 14.5px;
  line-height: 1.8;
}

/* ============================================================
   CATEGORIES GRID
   ============================================================ */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.cat-card {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: all .25s;
}

.cat-card:hover {
  border-color: var(--pink);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.cat-icon {
  width: 56px;
  height: 56px;
  background: rgba(233, 30, 140, .12);
  border: 1px solid rgba(233, 30, 140, .3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--pink2);
}

.cat-name {
  font-weight: 600;
  font-size: 15px;
  color: #fff;
}

.cat-count {
  font-size: 12px;
  color: var(--muted);
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, #1a0813 0%, #2a0e22 50%, #1a0813 100%);
  border-top: 1px solid rgba(233, 30, 140, .25);
  border-bottom: 1px solid rgba(233, 30, 140, .25);
  padding: 60px 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.cta-text h2 {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.cta-text p {
  color: var(--muted);
  font-size: 14px;
}

.cta-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--dark2);
  padding: 60px 0 0;
  border-top: 1px solid rgba(255, 255, 255, .07);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 50px;
}

.footer-brand p {
  color: var(--muted);
  font-size: 13.5px;
  margin-top: 14px;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: .8px;
}

.footer-links a {
  font-size: 13.5px;
  color: var(--muted);
  padding: 3px 0;
  transition: color .2s;
}

.footer-links a:hover {
  color: var(--pink2);
}

.footer-contact p {
  font-size: 13.5px;
  color: var(--muted);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-contact p i {
  color: var(--pink2);
  width: 16px;
}

.footer-bottom {
  background: rgba(0, 0, 0, .3);
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding: 16px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--muted);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .profile-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .hero-text h1 {
    font-size: 36px;
  }

  .placeholder-hero {
    width: 260px;
    height: 360px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-image {
    display: none;
  }

  .hero-stats {
    justify-content: center;
  }

  .profile-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .profile-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-text h1 {
    font-size: 28px;
  }

  .hero-btns {
    justify-content: center;
  }

  .categories-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================================================
   MEGA SEO SECTION
   ============================================================ */
.mega-seo {
  padding: 70px 0;
}

.mega-seo>.container>h2 {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  padding-left: 20px;
  border-left: 5px solid var(--pink);
  line-height: 1.3;
}

.mega-seo>.container>h2::before {
  display: none;
}

.seo-h3 {
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  margin: 36px 0 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.seo-h3::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(233, 30, 140, .3), transparent);
  margin-left: 8px;
}

.seo-list {
  color: var(--muted);
  padding-left: 0;
  list-style: none;
  margin-bottom: 16px;
}

.seo-list li {
  padding: 7px 0 7px 22px;
  font-size: 14.5px;
  line-height: 1.75;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, .04);
}

.seo-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--pink);
  font-size: 12px;
  top: 9px;
}

.seo-ol {
  counter-reset: seo-counter;
}

.seo-ol li {
  counter-increment: seo-counter;
  padding-left: 36px;
}

.seo-ol li::before {
  content: counter(seo-counter);
  width: 22px;
  height: 22px;
  background: var(--pink);
  border-radius: 50%;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 8px;
}

/* ============================================================
   SERVICES TABLE
   ============================================================ */
.seo-table-wrap {
  overflow-x: auto;
  margin: 20px 0 8px;
  border-radius: var(--radius);
  border: 1px solid rgba(233, 30, 140, .2);
}

.seo-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 600px;
}

.seo-table thead tr {
  background: linear-gradient(135deg, rgba(233, 30, 140, .25), rgba(255, 45, 135, .15));
}

.seo-table th {
  padding: 14px 18px;
  text-align: left;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .6px;
  border-bottom: 1px solid rgba(233, 30, 140, .3);
}

.seo-table td {
  padding: 13px 18px;
  color: var(--muted);
  line-height: 1.6;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  vertical-align: top;
}

.seo-table td:first-child {
  color: #fff;
  font-weight: 600;
  font-size: 13.5px;
}

.seo-table td:last-child {
  color: var(--pink2);
  font-size: 12.5px;
  white-space: nowrap;
}

.seo-table tbody tr:hover {
  background: rgba(233, 30, 140, .05);
}

.seo-table tbody tr:last-child td {
  border-bottom: none;
}

/* ============================================================
   FAQ BLOCK
   ============================================================ */
.faq-block {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-q {
  font-weight: 700 !important;
  font-size: 15px !important;
  color: #fff !important;
  margin-bottom: 8px !important;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.faq-q::before {
  content: 'Q';
  background: var(--pink);
  color: #fff;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.faq-item p:last-child {
  color: var(--muted) !important;
  font-size: 14.5px !important;
  line-height: 1.75 !important;
  padding-left: 32px;
  margin: 0 !important;
}

/* ============================================================
   LOCATION CAPSULES SECTION
   ============================================================ */
.location-capsules-section {
  padding: 70px 0;
  background: var(--dark2);
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.capsule-group {
  margin-bottom: 32px;
}

.capsule-group:last-child {
  margin-bottom: 0;
}

.capsule-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  margin-bottom: 14px;
  padding: 4px 12px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 50px;
}

.capsules {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.capsule {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  background: rgba(233, 30, 140, .08);
  border: 1px solid rgba(233, 30, 140, .22);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  transition: all .22s;
  cursor: pointer;
  white-space: nowrap;
}

.capsule:hover {
  background: var(--pink);
  border-color: var(--pink);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(233, 30, 140, .3);
}

/* ============================================================
   RESPONSIVE ADDITIONS
   ============================================================ */
@media (max-width: 768px) {
  .mega-seo>.container>h2 {
    font-size: 20px;
  }

  .seo-h3 {
    font-size: 16px;
  }

  .seo-table-wrap {
    border-radius: 8px;
  }

  .capsule {
    font-size: 12px;
    padding: 6px 14px;
  }
}