html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

@font-face {
  font-display: swap;
}

html { scroll-behavior: smooth; }

img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* ===============================
   GLOBAL
================================ */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto;
  background-color: #2c001f;
  color: #e0e0e0;
  line-height: 1.6;
}

/* ===============================
   HEADER
================================ */
header {
  background-color: #9a2929;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.5);
}

header {
  min-height: 140px;
}

header h1 {
  color: #ffd700;
  font-size: 2.2em;
  margin: 0;
}

/* City selector */
.city-selector {
  margin: 20px auto 0;
  max-width: 600px;
  position: relative;
}
.city-selector select {
  height: 48px;
}

.city-selector select {
  width: 100%;
  padding: 10px 38px 10px 14px;
  background-color: #2a2a2a;
  color: #e0e0e0;
  border: 1px solid #ffd700;
  border-radius: 6px;
  font-size: 15px;
  appearance: none;
  cursor: pointer;
}

.city-selector::after {
  content: "▾";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #ffd700;
  pointer-events: none;
}

/* ===============================
   CONTENT
================================ */
.content {
  max-width: 1200px;
  margin: 30px auto;
  padding: 20px;
}

.content h2,
.content h3 {
  color: #ffd700;
}

.content p {
  font-size: 16px;
  margin-bottom: 14px;
}

/* ===============================
   PROFILES GRID
================================ */
.profiles {
  max-width: 1200px;
  margin: 30px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

/* ===============================
   PROFILE CARD
================================ */
.profile {
  background-color: #1e1e1e;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0,0,0,0.5);
  transition: transform 0.3s ease;
  position: relative;
}

.profile:hover {
  transform: translateY(-5px);
}

.profile::before {
  content: "Verified";
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0,0,0,0.7);
  color: #ffd700;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 20px;
}

.profile img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: #000;
}

.profile-content {
  padding: 15px;
}

.profile-content h3 {
  color: #ffd700;
  margin-bottom: 6px;
  font-size: 20px;
}

.profile-content p {
  font-size: 15px;
}

/* ===============================
   BOOK BUTTON
================================ */
.book-now {
  display: block;
  margin-top: 12px;
  padding: 11px 0;
  text-align: center;
  background-color: #25D366;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 30px;
  transition: background-color 0.3s ease;
}

.book-now:hover {
  background-color: #1ebe5d;
}

/* ===============================
   FAQ
================================ */
.faq {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

.faq h2 {
  text-align: center;
  color: #ffd700;
  margin-bottom: 20px;
}

.faq-item {
  background-color: #1e1e1e;
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.faq-item h3 {
  color: #ffd700;
  margin-bottom: 8px;
}

/* ===============================
   FOOTER
================================ */
footer {
  background-color: #111;
  color: #ccc;
  text-align: center;
  padding: 25px 15px;
  margin-top: 40px;
}

footer a {
  color: #ff02bb;
  text-decoration: none;
  margin: 0 6px;
}

/* ===============================
   MOBILE FIXES
================================ */
@media (max-width: 768px) {

  header h1 {
    font-size: 1.8em;
  }

  .profiles {
    grid-template-columns: 1fr;
    padding: 0 12px;
  }

  .profile {
    width: 100%;
  }

  .content {
    padding: 16px;
  }

  .faq {
    padding: 0 12px;
  }

  .sticky-btn span {
    display: none;
  }

  .sticky-btn {
    padding: 14px;
    border-radius: 50%;
    justify-content: center;
  }
}

.collection {
  padding: 40px 15px;
  text-align: center;
  background: #2c001f;
}

.collection h2 {
  font-size: 26px;
  margin-bottom: 8px;
}

.collection-sub {
  font-size: 15px;
  color: #bbb;
  margin-bottom: 25px;
}

.collection-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

@media(min-width:768px){
  .collection-grid{
    grid-template-columns: repeat(3, 1fr);
  }
}

.girl-card {
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
}

.girl-card img{
  width:100%;
  height:260px;
  object-fit:cover;
  border-radius:8px;
}

.girl-card {
  overflow: hidden;
}

.girl-card img:hover {
  transform: scale(1.05);
  will-change: transform;
}

.seo-links {
  font-size: 11px;
  opacity: 0.5;
  margin-top: 15px;
}

.collection {
    margin-bottom: 20px; /* reduce space after images */
    padding-bottom: 0;
}

.content {
    margin-top: 0;       /* remove top gap */
    padding-top: 0;
}

.city-selector {
  min-height: 48px;
}

.profile {
  contain: content;
}

/* ===============================
   STICKY BUTTONS (FIXED)
================================ */

.sticky-buttons {
  position: fixed;
  right: 16px;
  bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

.sticky-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 50px;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 6px 15px rgba(0,0,0,0.4);
  white-space: nowrap;
}

.sticky-call { background: #111; }
.sticky-telegram { background: #0088cc; }
.sticky-whatsapp { background: #25d366; }


.sticky-btn {
  touch-action: manipulation;
}

/* FINAL MOBILE STICKY FIX */
@media (max-width: 768px) {
  .sticky-btn span {
    display: none;
  }

  .sticky-btn {
    width: 56px;
    height: 56px;
    padding: 0;
    border-radius: 50%;
    justify-content: center;
  }
}

.sticky-buttons { content-visibility: auto; contain-intrinsic-size: 60px; }

.site-footer{
  background:#000;
  color:#fff;
  text-align:center;
  padding:25px 15px;
}

.site-footer a{
  color:#ff2e9a;
  text-decoration:none;
  margin:0 6px;
  font-weight:600;
}

.site-footer a:hover{
  text-decoration:underline;
}

.footer-email{
  margin:12px 0;
  font-size:15px;
}

.footer-copy{
  font-size:14px;
  opacity:.8;
}

.page-layout {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* ===== CITY PILLS BEAUTIFUL DESIGN ===== */

.city-title{
  text-align:center;
  margin:40px 0 25px;
  color:#ffd700;
  font-size:26px;
}

.city-pills{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:16px;
  max-width:1200px;
  margin:0 auto 50px;
}

.city-pills a{
  background:#1e1e1e;
  color:#ffd700;
  padding:12px 22px;
  border-radius:40px;
  text-decoration:none;
  font-size:15px;
  font-weight:600;
  border:2px solid #ffd700;
  transition:all .25s ease;
  box-shadow:0 4px 10px rgba(0,0,0,0.4);
}

.city-pills a:hover{
  background:#ffd700;
  color:#1e1e1e;
  transform:translateY(-3px);
}

/* ===== REAL PAGE FLOW FIX ===== */

html, body{
  height:100%;
}

body{
  min-height:100vh;
}

/* Footer always stays at bottom naturally */
.site-footer{
  margin-top:40px;
}

/* City pills proper grid */
.city-pills{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:14px;
  max-width:1200px;
  margin:30px auto 40px;
}

.city-pills a{
  background:#111;
  color:#ffd700;
  padding:10px 18px;
  border-radius:30px;
  text-decoration:none;
  font-size:14px;
  font-weight:600;
  border:1px solid #ffd700;
  transition:all .2s ease;
}

.city-pills a:hover{
  background:#ffd700;
  color:#111;
}

/* FAQ spacing fix */
.faq{
  margin:40px auto;
}

/* Trust note spacing */
.trust-note{
  margin-top:40px;
}

