/* ================= RESET ================= */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: Arial, sans-serif;
}

body{
  background:#000;
  color:#fff;
}

.container{
  max-width:1200px;
  margin:auto;
  padding:0 15px;
}

/* ================= HEADER (RED + BLACK) ================= */

.main-header{
  background: linear-gradient(90deg, #000000, #1a0000);
  padding:15px 0;
  position:sticky;
  top:0;
  z-index:9999;
  border-bottom:2px solid #b30000;
}

.main-header .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.logo a{
  text-decoration:none;
  font-size:28px;
  font-weight:700;
  letter-spacing:1px;
}

.logo-red{ color:#b30000; }
.logo-white{ color:#ffffff; }

/* NAV MENU */
.nav-menu ul{
  list-style:none;
  display:flex;
  align-items:center;
}

.nav-menu ul li{
  margin-left:25px;
}

.nav-menu ul li a{
  color:#ffffff;
  text-decoration:none;
  font-weight:500;
  position:relative;
  padding:5px 0;
  transition:0.3s;
}

.nav-menu ul li a:hover{
  color:#ff4d4d;
}

/* ================= HAMBURGER ================= */

.hamburger{
  display:none;
  flex-direction:column;
  cursor:pointer;
}

.hamburger span{
  height:3px;
  width:26px;
  background:#b30000;
  margin-bottom:5px;
  border-radius:2px;
}

/* ================= HOME PAGE ================= */

.hero{
  background: linear-gradient(180deg, #000, #1a0000);
  padding:80px 0;
  text-align:center;
}

.hero h1{
  font-size:42px;
  margin-bottom:15px;
  color:#fff;
}

.hero p{
  font-size:18px;
  color:#ccc;
}

/* CITY CARDS (future use) */
.city-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
  padding:40px 0;
}

.city-card{
  background:#111;
  border:1px solid #222;
  padding:20px;
  text-align:center;
  transition:0.3s;
}

.city-card:hover{
  border-color:#b30000;
  transform:translateY(-5px);
}

.city-card a{
  color:#fff;
  text-decoration:none;
}

/* ================= FOOTER ================= */

.main-footer{
  background:#111;
  padding:40px 0;
  margin-top:40px;
}

.footer-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.footer-box h3{
  color:#ff4d4d;
  margin-bottom:10px;
}

.footer-box p,
.footer-box a{
  color:#ccc;
  font-size:14px;
  text-decoration:none;
}

.footer-box ul{
  list-style:none;
}

.footer-box ul li{
  margin-bottom:8px;
}

.footer-bottom{
  text-align:center;
  margin-top:30px;
  padding-top:15px;
  border-top:1px solid #222;
  font-size:13px;
  color:#777;
}

/* ================= MOBILE RESPONSIVE ================= */

@media(max-width:992px){
  .city-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:768px){

  .hamburger{
    display:flex;
  }

  .nav-menu{
    position:absolute;
    top:70px;
    left:0;
    width:100%;
    background:#000;
    display:none;
    border-top:2px solid #b30000;
  }

  .nav-menu.active{
    display:block;
  }

  .nav-menu ul{
    flex-direction:column;
    padding:20px;
  }

  .nav-menu ul li{
    margin:15px 0;
    text-align:center;
  }

  .city-grid{
    grid-template-columns:1fr;
  }

  .footer-grid{
    grid-template-columns:1fr;
  }
}
/* ================= PREMIUM STICKY CONTACT BAR ================= */

.sticky-contact-premium {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  z-index: 9999;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.6);
}

/* common button */
.scp-btn {
  flex: 1;
  text-decoration: none;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 5px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* icon */
.scp-btn i {
  font-size: 20px;
  margin-bottom: 4px;
}

/* CALL – blue */
.scp-btn.call {
  background: linear-gradient(135deg, #1565c0, #0d47a1);
}

/* TELEGRAM – brand blue */
.scp-btn.telegram {
  background: linear-gradient(135deg, #1e96d4, #0088cc);
}

/* WHATSAPP – brand green */
.scp-btn.whatsapp {
  background: linear-gradient(135deg, #2ecc71, #25d366);
}

/* hover effect (desktop) */
@media (min-width: 768px) {
  .scp-btn:hover {
    opacity: 0.92;
  }
}

/* ================= HOME PAGE ================= */

/* HERO */
.hero-home{
  background: linear-gradient(135deg, #b30000, #000);
  padding: 90px 0;
  text-align: center;
}

.welcome-tag{
  display: inline-block;
  background: #b30000;
  color: #fff;
  padding: 6px 14px;
  font-size: 14px;
  margin-bottom: 15px;
}

.hero-home h1{
  font-size: 40px;
  margin-bottom: 15px;
}

.hero-home p{
  color: #ddd;
  max-width: 800px;
  margin: auto;
  font-size: 17px;
}

/* BROWSE STATES */
.browse-states{
  padding: 60px 0;
  background: #000;
}

.section-title{
  text-align: center;
  font-size: 30px;
  margin-bottom: 40px;
}

.section-title span{
  color: #b30000;
}

.state-grid{
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 25px;
}

.state-card{
  background: #111;
  border: 1px solid #222;
  padding: 25px;
  transition: 0.3s;
}

.state-card h3{
  color: #b30000;
  margin-bottom: 10px;
}

.state-card p{
  color: #ccc;
  font-size: 14px;
}

.state-card:hover{
  border-color: #b30000;
  transform: translateY(-5px);
}

/* SEO CONTENT */
.seo-content{
  padding: 70px 0;
  background: #0b0b0b;
}

.seo-content h2{
  color: #b30000;
  margin-bottom: 20px;
}

.seo-content p{
  color: #ccc;
  line-height: 1.7;
  margin-bottom: 15px;
  font-size: 15px;
}

/* RESPONSIVE */
@media(max-width: 992px){
  .state-grid{
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 600px){
  .state-grid{
    grid-template-columns: 1fr;
  }

  .hero-home h1{
    font-size: 30px;
  }
}
/* ===== CITY PAGE ===== */

.city-banner{
  background:linear-gradient(135deg,#b30000,#000);
  padding:70px 0;
  text-align:center;
}

.city-banner h1{font-size:34px}
.city-banner p{color:#ddd}

.city-intro{padding:40px 0;color:#ccc}

.profiles-section {
  padding: 30px 0;
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.profile-card {
  background: #0b0b0b;
  border: 1px solid #ff0000;
  overflow: hidden;
}

.profile-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.profile-info {
  padding: 10px;
  text-align: center;
  color: #fff;
}

.profile-info span {
  color: #00ff88;
  font-size: 13px;
}

@media(max-width:768px){
  .profile-grid {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width:480px){
  .profile-grid {
    grid-template-columns: 1fr;
  }
}


/* ===============================
   RESPONSIVE – MOBILE FRIENDLY
================================ */

@media (max-width: 992px) {
    .profile-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .profile-card img {
        height: 280px;
    }
}

@media (max-width: 576px) {
    .profile-grid {
        grid-template-columns: 1fr;
    }

    .profile-card img {
        height: 260px;
    }
}

/* MOBILE */
@media(max-width:768px){
  .profile-grid{
    grid-template-columns:1fr;
  }
}


.city-content{padding:50px 0;color:#ccc}

.nearby-cities{padding:50px 0}
.nearby-grid{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.nearby-btn{
  background:#b30000;
  color:#fff;
  padding:10px 18px;
  text-decoration:none;
}

.faq-section{padding:50px 0}
.faq-item h3{color:#fff}
.faq-item p{color:#ccc}

@media(max-width:768px){
  .profile-grid{grid-template-columns:1fr}
  .city-banner h1{font-size:26px}
}
/* ================= GLOBAL TEXT & HEADING COLORS ================= */

/* All normal text white */
body,
p,
span,
li,
div {
  color: #ffffff;
}

/* All headings red */
h1, h2, h3, h4, h5, h6 {
  color: #ff0000;
  letter-spacing: 1.5px;
}
/* ================= CITY PAGE ENHANCEMENTS ================= */

/* Section spacing */
section {
  margin-bottom: 50px;
}

/* Intro text thoda soft white */
.city-intro p,
.city-content p {
  color: #eaeaea;
  line-height: 1.8;
  font-size: 20px;
}

/* Section headings underline effect */
.profile-section h2,
.city-content h2,
.nearby-cities h2,
.faq-section h2 {
  position: relative;
  padding-bottom: 8px;
}

.profile-section h2::after,
.city-content h2::after,
.nearby-cities h2::after,
.faq-section h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 3px;
  background: #b30000;
}
/* ================= PROFILE TEXT COLORS ================= */

.profile-info {
  background: #0a0a0a;
}

.profile-name {
  color: #ffffff;
}

.profile-age {
  color: #cccccc;
}

.verified {
  color: #2ecc71;
  font-weight: 500;
}
/* ================= NEARBY CITY BUTTONS ================= */

.nearby-btn {
  background: linear-gradient(135deg, #b30000, #7a0000);
  border-radius: 4px;
  font-weight: 500;
  transition: 0.3s;
}

.nearby-btn:hover {
  background: #ff0000;
  transform: translateY(-2px);
}
/* ================= FORCE WHITE CONTENT TEXT ================= */

/* Force ALL text white */
body,
body p,
body span,
body li,
body a,
body div,
.city-content,
.city-content p,
.city-intro p,
.faq-section p,
.profile-section p,
.nearby-cities,
.nearby-cities a {
  color: #ffffff !important;
}

/* Force ALL headings red */
body h1,
body h2,
body h3,
body h4,
body h5,
body h6 {
  color: #b30000 !important;
  letter-spacing: 0.6px;
}
/* Better readability */
.city-content p,
.city-intro p,
.faq-section p {
  font-size: 20px;
  line-height: 1.9;
}

/* Section spacing */
section {
  margin-bottom: 55px;
}
.state-card {
    background: #0c0c0c;
    border: 1px solid #2a0000;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 6px;
}

.state-title {
    color: #ff0000;
    margin-bottom: 12px;
    font-size: 20px;
}

.city-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.city-btn {
    background: #1a0000;
    color: #fff;
    padding: 6px 12px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
}

.city-btn:hover {
    background: #ff0000;
    color: #000;
}
/* ===== STATE & CITY LIST CSS ===== */

.state-card {
    background: #0b0b0b;
    border: 1px solid #2a0000;
    margin-bottom: 25px;
    padding: 20px;
    border-radius: 8px;
}

.state-title {
    color: #ff0000;
    font-size: 22px;
    margin-bottom: 15px;
    text-transform: capitalize;
}

.city-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.city-btn {
    background: #1a0000;
    color: #ffffff !important;
    padding: 6px 14px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 1px solid #330000;
}

.city-btn:hover {
    background: #ff0000;
    color: #000000 !important;
}
/* ================= BASIC RESET ================= */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}
body{
  background:#000;
  color:#fff;
  font-family:Arial, Helvetica, sans-serif;
}
a{
  text-decoration:none;
  color:inherit;
}
.container{
  width:95%;
  max-width:1200px;
  margin:auto;
}

/* ================= BREADCRUMB ================= */
.breadcrumb{
  background:#0d0d0d;
  padding:12px 20px;
  font-size:14px;
}
.breadcrumb a{
  color:#ccc;
}
.breadcrumb span{
  color:#ff0000;
  margin:0 6px;
}
.breadcrumb .current{
  color:#ff0000;
  font-weight:600;
}

/* ================= CITY BANNER ================= */
.city-banner{
  background:linear-gradient(135deg,#2a0000,#000);
  padding:60px 15px;
  text-align:center;
}
.city-banner h1{
  font-size:36px;
  margin-bottom:10px;
}
.city-banner p{
  color:#ddd;
  font-size:16px;
}

/* ================= INTRO ================= */
.city-intro{
  margin:30px auto;
  font-size:16px;
  line-height:1.6;
  color:#ddd;
}

/* ================= PROFILE SECTION ================= */
.profile-section{
  margin:50px auto;
}
.profile-section h2{
  color:#ff0000;
  margin-bottom:20px;
  font-size:26px;
}
.profile-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:20px;
}
.profile-card{
  background:#0d0d0d;
  border:1px solid #2a0000;
  border-radius:8px;
  overflow:hidden;
  transition:.3s;
}
.profile-card:hover{
  transform:translateY(-5px);
  border-color:#ff0000;
}
.profile-card img{
  width:100%;
  height:260px;
  object-fit:cover;
}
.profile-info{
  padding:12px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-size:14px;
}
.profile-info span{
  display:block;
}
.verified{
  color:#00ff6a;
  font-size:13px;
}

/* ================= MAIN CONTENT ================= */
.city-content{
  margin:50px auto;
}
.city-content h2{
  color:#ff0000;
  margin-bottom:15px;
}
.city-content p{
  color:#ccc;
  line-height:1.7;
  margin-bottom:12px;
}

/* ================= FOOTER CITY CONTENT ================= */
.footer-city-content{
  margin:50px auto;
}
.footer-city-content h2{
  color:#ff0000;
  margin-bottom:10px;
}
.footer-city-content p{
  color:#ccc;
  line-height:1.6;
}

/* ===============================
   NEARBY CITIES – PREMIUM STYLE
================================ */

.nearby-cities {
  margin: 40px auto;
  padding: 30px 20px;
  background: #0d0d0d;
  border-radius: 12px;
  border: 1px solid #1f1f1f;
}

.nearby-cities h2 {
  color: #ff2b2b;
  text-align: center;
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: 700;
}

.nearby-city-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.nearby-city-list a {
  background: #1a1a1a;
  color: #ffffff;
  padding: 10px 16px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  border: 1px solid #2a2a2a;
}

.nearby-city-list a:hover {
  background: #ff2b2b;
  color: #ffffff;
  border-color: #ff2b2b;
  transform: translateY(-2px);
}

/* Mobile Friendly */
@media (max-width: 600px) {
  .nearby-city-list a {
    font-size: 13px;
    padding: 8px 14px;
  }
}


/* ================= FAQ ================= */
.faq-section{
  margin:50px auto;
}
.faq-section h2{
  color:#ff0000;
  margin-bottom:15px;
}
.faq-section h3{
  margin-top:10px;
  font-size:16px;
}
.faq-section p{
  color:#ccc;
  margin-top:5px;
  line-height:1.5;
}

/* ================= MOBILE ================= */
@media(max-width:768px){
  .city-banner h1{
    font-size:26px;
  }
  .profile-card img{
    height:220px;
  }
}
.contact-page {
  max-width: 900px;
  margin: 40px auto;
  color: #fff;
}

.alert-warning {
  background: #2a0000;
  border-left: 5px solid red;
  padding: 20px;
  margin-bottom: 30px;
}

.alert-warning h2 {
  color: red;
  margin-bottom: 10px;
}

.contact-info {
  background: #111;
  padding: 25px;
  margin-bottom: 30px;
  border-radius: 6px;
}

.contact-info h2 {
  color: red;
  margin-bottom: 10px;
}

.contact-form-box {
  background: #0d0d0d;
  padding: 30px;
  border-radius: 6px;
}

.contact-form-box h2 {
  color: red;
  margin-bottom: 20px;
}

.contact-form-box input,
.contact-form-box textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  background: #000;
  border: 1px solid #333;
  color: #fff;
}

.contact-form-box button {
  background: red;
  color: #fff;
  padding: 12px 25px;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

.contact-form-box button:hover {
  background: darkred;
}
/* ===== PROFILE GRID ===== */
.profile-section {
  margin: 40px 0;
}

.profile-section h2 {
  color: #e50914;
  margin-bottom: 20px;
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(3, 300px); /* fixed card width */
  gap: 20px;
  justify-content: center;   /* 🔥 MAIN FIX */
}


.profile-card {
  background: #111;
  border: 1px solid #e50914;
  border-radius: 8px;
  overflow: hidden;
}

.profile-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.profile-info {
  padding: 10px;
  display: flex;
  justify-content: space-between;
  color: #fff;
  font-size: 14px;
}

.profile-info .verified {
  color: #00ff88;
  font-weight: 600;
}

/* Mobile */
@media(max-width:768px){
  .profile-grid{
    grid-template-columns: repeat(2,1fr);
  }
}
@media(max-width:480px){
  .profile-grid{
    grid-template-columns: 1fr;
  }
}
.contact-form-box input,
.contact-form-box textarea{
  width:100%;
  padding:12px;
  margin-bottom:12px;
  background:#111;
  border:1px solid #333;
  color:#fff;
  border-radius:5px;
}

.btn-submit{
  background:#e50914;
  color:#fff;
  border:none;
  padding:12px;
  width:100%;
  cursor:pointer;
  border-radius:5px;
}

/* POPUP */
.popup-overlay{
  position:fixed;
  top:0;left:0;
  width:100%;height:100%;
  background:rgba(0,0,0,0.85);
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:9999;
}

.popup-box{
  background:#111;
  border:1px solid #e50914;
  padding:30px;
  border-radius:10px;
  text-align:center;
}

.popup-box h2{color:#e50914;}
.popup-box p{color:#ddd;}

.popup-box button{
  background:#e50914;
  border:none;
  color:#fff;
  padding:10px 20px;
  cursor:pointer;
}
<style>
.adult-overlay{
    position:fixed;
    top:0;left:0;
    width:100%;height:100%;
    background:rgba(0,0,0,0.9);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:99999;
}
.adult-box{
    background:#111;
    border:2px solid #b30000;
    max-width:520px;
    padding:30px;
    border-radius:10px;
    text-align:center;
    color:#eee;
    box-shadow:0 0 30px rgba(255,0,0,0.4);
}
.adult-box h2{
    color:#ff2b2b;
    margin-bottom:15px;
}
.adult-box ul{
    text-align:left;
    margin:15px 0;
}
.adult-buttons{
    margin-top:20px;
}
.adult-buttons button{
    padding:12px 20px;
    margin:5px;
    border:none;
    border-radius:5px;
    cursor:pointer;
    font-size:15px;
}
.adult-buttons button:first-child{
    background:#b30000;
    color:#fff;
}
.adult-buttons button.exit{
    background:#333;
    color:#ccc;
}
.adult-buttons button:hover{
    opacity:0.9;
}
/* ===== CENTER MAIN CITY CONTENT ===== */
.city-content,
.city-intro,
.footer-city-content,
.faq-section,
.city-conclusion {
    max-width: 1100px;
    margin: 0 auto;
    padding: 30px 20px;
}

/* Headings center thode gap ke sath */
.city-content h2,
.city-content h3,
.city-content h4 {
    text-align: left;
    margin-left: auto;
    margin-right: auto;
}

/* Paragraph readable spacing */
.city-content p {
    line-height: 1.8;
    font-size: 20px;
}

