html, body {
  height: 100%;
  overflow-x: hidden;
}

.city-list a {
  text-decoration: none;       /* Remove underline */
  color: inherit;              /* Inherit normal text color */
}

.city-list a:hover {
  color: #ff0033;              /* Optional: Red color on hover */
}


/* Global Reset */
body {
  background-color: #fff4f0;
  font-family: 'Poppins', sans-serif;
  font-size: 17.6px;
  color: #3d3d3d;
  line-height: 1.7;
}

h2, h3, h4 {
  color: #ff0033;
  font-weight: 600;
  margin-bottom: 20px;
}

p {
  margin-bottom: 15px;
}

ul.custom-check-list li::before {
  color: #ff0033;
}

/* Section Box */
.section-box {
  padding: 40px 20px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 0 12px rgba(255, 94, 120, 0.15);
}

/* Split Section */
.split-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  margin-bottom: 50px;
}

.split-section .text-content {
  flex: 0 0 75%;
}

.split-section .image-content {
  flex: 0 0 25%;
}

.split-section .image-content img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(255, 94, 120, 0.3);
}

@media (max-width: 768px) {
  .split-section {
    flex-direction: column;
  }
  .split-section .text-content,
  .split-section .image-content {
    flex: 0 0 100%;
  }
}

/* Coral Glow Button */
.btn-glow {
  background: linear-gradient(45deg, #ff0033, #ff2d55);
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 30px;
  box-shadow: 0 0 15px rgba(255, 94, 120, 0.4);
  transition: 0.3s ease;
  font-weight: 500;
}

.btn-glow:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(255, 94, 120, 0.6);
}

/* Navbar */
.blush-navbar {
  background: #fff0ec;
  box-shadow: 0 4px 12px rgba(255, 105, 130, 0.2);
}

.blush-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: #e14b6d;
}

.nav-link {
  color: #c54260 !important;
  font-weight: 500;
  margin-left: 15px;
}

.nav-link:hover {
  color: #ff0033 !important;
}

/* Call Button */
.call-button {
  background: #ff8fa5;
  color: white !important;
  padding: 8px 20px;
  border-radius: 30px;
  box-shadow: 0 0 10px #ffc4cd;
  transition: 0.3s;
}

.call-button:hover {
  background: #ff0033;
  box-shadow: 0 0 15px #ff8fa5;
}

.hero-section {
    background: linear-gradient(rgba(255,244,240,0.95), rgba(255,244,240,0.95)), url('your-bg.jpg') center/cover no-repeat;
    font-family: 'Poppins', sans-serif;
}

.hero-section h1 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ff0033;
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 1.05rem;
    color: #4b2c2c;
    max-width: 800px;
    margin: 0 auto 30px;
}


.hero-content strong,
.hero-content span {
  color: #e14b6d;
  font-weight: 600;
}

.simple-escort-cards {
  background-color: #fff4f0;
}

.girl-card {
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 10px rgba(255, 94, 120, 0.1);
}

.girl-card:hover {
  transform: scale(1.03);
  box-shadow: 0 0 20px rgba(255, 94, 120, 0.3);
}

.girl-card img {
  width: 100%;
  height: 300px;
  object-position: top;
  object-fit: cover;
  display: block;
}

.girl-card h6 {
  margin: 0;
  padding: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  color: #ff0033;
  background-color: #fff0f0;
}

/* Full Content */
.blush-full-content {
  background: #fff4f0;
  color: #3d3d3d;
}

.blush-heading {
  font-size: 2rem;
  font-weight: 700;
  color: #ff0033;
  margin-bottom: 1.5rem;
}

.blush-text {
  max-width: 900px;
  margin: 0 auto 1rem;
  font-size: 1rem;
  line-height: 1.8;
  color: #4a4a4a;
}

.highlight {
  color: #ff0033;
  font-weight: 600;
}

/* Features */
.blush-features {
  padding: 2rem 0;
}

.blush-box {
  background: #fff;
  padding: 0.5rem;
  border-radius: 14px;
  text-align: center;
  border: 1px solid #ffccd6;
  box-shadow: 0 0 10px rgba(255, 94, 120, 0.1);
  color: #e14b6d;
  transition: 0.3s;
}

.blush-box:hover {
  background: #ffedf1;
  color: #ff2d55;
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(255, 94, 120, 0.2);
}

/* Split Section + City Table */
.city-table {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(255, 94, 120, 0.1);
  border-left: 4px solid #ff0033;
}

.city-heading {
  color: #ff0033;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
  text-align: center;
}

.city-list li {
  font-size: 1rem;
  border-bottom: 1px solid #f5dada;
  color: #3d3d3d;
  display: flex;
  align-items: center;
  gap: 10px;
}

.city-list li i {
  color: #ff0033;
  font-size: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .blush-text-content {
    padding-top: 2rem;
  }
}

.category-card-with-img {
  background-color: #fff;
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 4px 12px rgba(255, 94, 120, 0.1);
  position: relative;
  overflow: hidden;
  transition: 0.3s ease;
}

.category-card-with-img img {
  border-radius: 12px;
  width: 100%;
  height: auto;
}

.category-card-with-img p {
  font-size: 15px;
  font-weight: 600;
  color: #ff5e78;
  margin-top: 10px;
}

.icon-overlay {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #ff5e78;
  color: #fff;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 14px;
  z-index: 2;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.category-box {
  background-color: #f13f3f;
  color: white;
  padding: 25px 10px;
  border-radius: 10px;
  text-align: center;
  transition: 0.3s ease-in-out;
}
.category-box i {
  font-size: 28px;
  margin-bottom: 10px;
}
.category-box p {
  font-size: 15px;
  margin: 0;
  font-weight: 500;
}
.category-box:hover {
  background-color: #ff5e78;
  color: white;
}

.red-girls-box {
  background-color: #c50f0f;
  border-radius: 10px;
}
.red-girls-box .red-link {
  color: #fff4f0;
  display: block;
  padding: 6px 0;
  font-size: 15px;
  text-decoration: none;
}
.red-girls-box .red-link:hover {
  text-decoration: underline;
  color: #ffe1e1;
}

.bottom-box {
  background-color: #a60000;
  border-radius: 10px;
}
.bottom-box h6 {
  font-size: 16px;
}
.bottom-box p {
  font-size: 14px;
}
.bottom-box .btn {
  background-color: #fff4f0;
  color: #a60000;
  font-weight: bold;
  padding: 5px 15px;
}
.bottom-box .btn:hover {
  background-color: #ffe1e1;
  color: #a60000;
}

body {
  padding-bottom: 80px; /* Prevent content underlap */
}

/* Floating Bar Container */
.floating-buttons {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  display: flex;
  background-color: #fff4f0;
  z-index: 999999;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.2);
  border-top: 1px solid rgba(255, 0, 51, 0.2);
  will-change: transform; /* Fix for scroll jump bugs */
}

/* Button Base */
.float-btn {
  flex: 1;
  text-align: center;
  padding: 14px 0;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Icons */
.float-btn i {
  margin-right: 8px;
  font-size: 18px;
}

/* Call */
.call-btn {
  background-color: #ff3366;
  box-shadow: 0 0 10px #ff3366;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

/* WhatsApp */
.whatsapp-btn {
  background-color: #25D366;
  box-shadow: 0 0 10px #25D366;
}

/* Hide old PC buttons on mobile */
@media (max-width: 768px) {
  .old-pc-floating-buttons {
    display: none !important;
  }

  .floating-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
  }
}

.site-footer {
  background-color: #fff4f0;
  color: #444;
  padding: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  border-top: 2px solid #ff5e78;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  max-width: 1100px;
  margin: auto;
}

.footer-section {
  flex: 1 1 250px;
  min-width: 220px;
}

.footer-section h4 {
  color: #ff3366;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 600;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 6px;
}

.footer-section a {
  color: #444;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #ff3366;
}

.footer-section i {
  color: #ff3366;
  margin-right: 8px;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  color: #777;
  border-top: 1px solid #ffccc9;
  padding-top: 15px;
}
