* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #ff1493;
  color: #fff;
  overflow-x: hidden;
}

/* HEADER */
.header {
  background: #000;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
}

.logo {
  font-size: 18px;
  font-weight: bold;
}

.logo small {
  display: block;
  font-size: 11px;
  color: #ff69b4;
}

/* Mobile Menu Button */
.menu-toggle {
  display: none;
  background: #ff1493;
  border: none;
  color: #fff;
  font-size: 24px;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  z-index: 1001;
}

.nav {
  display: flex;
  gap: 10px;
}

.nav a {
  background: #ff1493;
  padding: 8px 18px;
  border-radius: 20px;
  text-decoration: none;
  color: #fff;
  font-size: 13px;
  font-weight: bold;
}

.nav a.active {
  background: #ff2f92;
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #000;
    flex-direction: column;
    padding: 15px;
    gap: 10px;
    z-index: 1000;
  }

  .nav.active {
    display: flex;
  }

  .nav a {
    padding: 12px 20px;
    text-align: center;
  }
}

/* HERO */
.hero {
  width: 97%;
  margin: 20px auto;
  border-radius: 10px;
  overflow: hidden;
}

.hero video {
  width: 100%;
  display: block;
}

/* TITLE */
.section-title {
  text-align: center;
  margin: 20px;
  font-size: 25px;
  color: #fff;
}

.profiles {
  max-width: 1200px;
  margin: 40px auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  padding: 20px;
}

.escort-card {
  background: linear-gradient(145deg, #05161d, #07242f);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 230px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .45);
}

/* RIGHT SIDE IMAGE FOR EVEN CARDS */
.escort-card:nth-child(even) {
  flex-direction: row-reverse;
}

.escort-img {
  width: 170px;
  height: 210px;
  object-fit: cover;
  border-radius: 14px;
  flex-shrink: 0;
}

.escort-content {
  flex: 1;
}

.escort-content h3 {
  color: #ff2f92;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  border-bottom: 1px solid #ff2f92;
  padding-bottom: 6px;
}

.meta {
  display: flex;
  gap: 14px;
  font-size: 12px;
  color: #cfd8dc;
  margin-bottom: 18px;
}

.meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.actions {
  display: flex;
  gap: 14px;
}

.btn {
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.phone {
  background: #ff1493;
}

.whatsapp {
  background: #25d366;
}

/* MOBILE */
@media(max-width:900px) {
  .profiles {
    grid-template-columns: 1fr;
  }

  .escort-card,
  .escort-card:nth-child(even) {
    flex-direction: column;
    text-align: left;
  }

  .escort-img {
    width: 100%;
    height: 320px;
  }
}



.why-escort-wrapper {
  width: 100%;
  background: #000;
  padding: 60px 20px;
  clear: both;
}

.why-escort-container {
  max-width: 1200px;
  margin: auto;
}

.why-escort-top {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: flex-start;
}

.why-escort-image {
  position: relative;
}

.why-escort-image img {
  width: 70%;
  border-radius: 14px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, .6);
}

.image-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #ff2f92;
}

.image-overlay p {
  font-size: 26px;
  font-weight: 700;
}

.image-overlay span {
  display: block;
  font-size: 18px;
}

.image-overlay strong {
  display: block;
  font-size: 32px;
}

.why-escort-content h2 {
  color: #ff2f92;
  font-size: 20px;
  margin-bottom: 15px;
  border-bottom: 1px solid #ff2f92;
  padding-bottom: 6px;
}

.why-escort-content h3 {
  color: #ff2f92;
  margin-top: 25px;
  margin-bottom: 10px;
  border-bottom: 1px solid #ff2f92;
  padding-bottom: 5px;
}

.why-escort-content p {
  color: #ddd;
  font-size: 14px;
  line-height: 1.7;
}

.why-escort-content ul {
  margin-top: 12px;
  padding-left: 0;
  list-style: none;
}

.why-escort-content ul li {
  color: #eee;
  font-size: 14px;
  margin-bottom: 8px;
  padding-left: 22px;
  position: relative;
}

.why-escort-content ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #25d366;
}

/* BOTTOM BOXES */
.escort-bottom-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 50px;
}

.escort-box {
  background: #fff;
  border-radius: 12px;
  padding: 15px;
}

.escort-box h4 {
  background: #ff1493;
  color: #fff;
  padding: 10px;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 10px;
}

.escort-box ul {
  list-style: none;
  padding-left: 0;
}

.escort-box ul li {
  font-size: 13px;
  color: #000;
  margin-bottom: 6px;
}

/* MOBILE */
@media(max-width:900px) {
  .why-escort-top {
    grid-template-columns: 1fr;
  }

  .escort-bottom-boxes {
    grid-template-columns: 1fr;
  }
}

/* ====== MAIN WRAPPER ====== */
.scroll-section {
  width: 100%;
  background: #000;
  padding: 40px 0;
}

.scroll-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 20px;
  padding: 0 15px;
}

/* ====== CARD ====== */
.scroll-card {
  flex: 1;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(255, 0, 120, 0.4);
}

/* ====== CARD HEADER ====== */
.scroll-card h3 {
  margin: 0;
  padding: 14px;
  background: #ff1e8a;
  color: #fff;
  font-size: 18px;
  text-align: center;
  font-weight: bold;
}

/* ====== SCROLL AREA ====== */
.scroll-body {
  height: 320px;
  overflow-y: auto;
  padding: 10px 15px;
}

/* ====== LIST STYLE ====== */
.scroll-body ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.scroll-body li {
  padding: 10px 0;
  border-bottom: 1px solid #ff5aa5;
  font-size: 14px;
  color: #000;
}

.scroll-body li::before {
  content: "✔ ";
  color: #ff1e8a;
  font-weight: bold;
}

/* ====== SCROLLBAR ====== */
.scroll-body::-webkit-scrollbar {
  width: 6px;
}

.scroll-body::-webkit-scrollbar-thumb {
  background: #ff1e8a;
  border-radius: 10px;
}

/* ====== MOBILE ====== */
@media (max-width: 768px) {
  .scroll-container {
    flex-direction: column;
  }
}

/* ===== GALLERY WRAPPER ===== */
.gallery-section {
  width: 100%;
  background: #000;
  padding: 40px 0;
}

.gallery-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 15px;
}

/* ===== GRID ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
}

/* ===== CARD ===== */
.gallery-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 0 15px rgba(255, 0, 120, 0.35);
}

/* ===== IMAGE ===== */
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.4s ease;
}

.gallery-card:hover img {
  transform: scale(1.05);
}

/* ===== NAME TAG ===== */
.gallery-name {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  padding: 4px 10px;
  font-size: 13px;
  border-radius: 6px;
  font-weight: 600;
}

/* ===== MOBILE ===== */
@media(max-width:768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* ===== FAQ SECTION ===== */
.faq-section {
  width: 100%;
  background: #000;
  padding: 40px 0;
}

.faq-container {
  max-width: 1100px;
  margin: auto;
  padding: 0 15px;
}

.faq-title {
  text-align: center;
  color: #ff2f92;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 25px;
}

/* ===== FAQ ITEM ===== */
.faq-item {
  background: linear-gradient(90deg, #7a1749, #9b1c5e);
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  padding: 15px 18px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question span {
  font-size: 18px;
  transition: 0.3s;
}

/* ===== ANSWER ===== */
.faq-answer {
  display: none;
  padding: 15px 18px;
  background: #111;
  color: #ddd;
  font-size: 15px;
  line-height: 1.6;
}

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

.faq-item.active .faq-question span {
  transform: rotate(180deg);
}

/* ===== MOBILE ===== */
@media(max-width:768px) {
  .faq-title {
    font-size: 22px;
  }

  .faq-question {
    font-size: 15px;
  }
}

/* ===== KEYWORD SECTION ===== */
.keyword-section {
  width: 100%;
  background: #000;
  padding: 40px 0;
}

.keyword-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 15px;
  text-align: center;
}

.keyword-title {
  color: #ff2f92;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

.keyword-desc {
  color: #ddd;
  font-size: 15px;
  margin-bottom: 25px;
}

.keyword-divider {
  height: 2px;
  width: 100%;
  background: linear-gradient(to right, #ff2f92, #ff66b2);
  margin-bottom: 25px;
}

/* ===== TAGS ===== */
.keyword-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.keyword-tags a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  transition: 0.3s;
  white-space: nowrap;
}

/* COLOR VARIANTS */
.tag-pink {
  background: #ff2f92;
}

.tag-green {
  background: #0fb96f;
}

.tag-purple {
  background: #8e44ad;
}

.tag-blue {
  background: #2980b9;
}

.tag-black {
  background: #111;
}

/* HOVER */
.keyword-tags a:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 10px rgba(255, 47, 146, 0.6);
}

/* MOBILE */
@media(max-width:768px) {
  .keyword-title {
    font-size: 22px;
  }

  .keyword-tags a {
    font-size: 12px;
  }
}

/* ===== INFO SECTION ===== */
.info-section {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  padding: 60px 20px;
}

.info-container {
  max-width: 1200px;
  margin: auto;
}

.info-title {
  color: #ff1493;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
  border-bottom: 2px solid #ff1493;
  padding-bottom: 10px;
  display: table;
  margin-left: auto;
  margin-right: auto;
}

.info-text {
  color: #ddd;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* Pink Links */
.pink-link {
  color: #ff1493 !important;
  text-decoration: none;
  font-weight: 600;
}

.pink-link:hover {
  text-decoration: underline;
}

.info-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.info-list li {
  color: #fff;
  font-size: 15px;
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  line-height: 1.6;
}

.info-list li::before {
  content: "✔";
  color: #25d366;
  font-weight: bold;
  font-size: 18px;
  position: absolute;
  left: 0;
}

.info-list li strong {
  color: #ff1493;
}

/* ===== STICKY BOTTOM BAR ===== */
.sticky-bottom-bar {
  position: fixed;
  bottom: 20px;
  left: 0;
  width: 100%;
  z-index: 9999;
  display: flex;
  justify-content: center;
  pointer-events: none;
  /* Let clicks pass through to container */
}

.contact-box-container {
  pointer-events: auto;
  /* Enable clicks on the box */
}

.contact-box {
  background: #fff;
  border: 2px solid #ff1493;
  border-radius: 50px;
  padding: 5px 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
}

.contact-box:hover {
  transform: scale(1.05);
}

.icon-circle {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
}

.phone-icon {
  background: #ff1493;
}

.whatsapp-icon {
  background: #0fb96f;
}

.contact-text {
  color: #000;
  font-weight: 700;
  font-size: 18px;
}

/* ===== BACK TO TOP ARROW ===== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  background: #ff1493;
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: background 0.3s;
}

.back-to-top:hover {
  background: #ff1e8a;
}

/* MOBILE ADJUSTMENTS FOR STICKY BAR */
@media (max-width: 600px) {
  .contact-text {
    font-size: 15px;
  }

  .icon-circle {
    width: 30px;
    height: 30px;
    font-size: 15px;
  }

  .back-to-top {
    right: 15px;
    bottom: 90px;
    /* Avoid overlap if needed, though they are usually separate */
  }
}

/* ===== PRICE TABLE SECTION ===== */
.price-table-section {
  background: #000;
  padding: 40px 20px;
}

.price-table-container {
  max-width: 1000px;
  margin: auto;
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(255, 20, 147, 0.3);
  padding: 10px;
}

.price-table-title {
  color: #ff1493;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  padding: 15px 0;
  border-bottom: 2px solid #ff1493;
  margin-bottom: 10px;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
}

.price-table thead th {
  background: #ff1493;
  color: #fff;
  padding: 15px;
  font-size: 16px;
  text-align: center;
}

.price-table tbody td {
  padding: 15px;
  border-bottom: 1px solid #eee;
  color: #333;
  text-align: center;
  font-weight: 500;
}

.price-table tbody tr:last-child td {
  border-bottom: none;
}

.price-table tbody td:first-child {
  text-align: left;
  padding-left: 30px;
  font-weight: 600;
}

/* MOBILE */
@media (max-width: 768px) {
  .price-table-container {
    overflow-x: auto;
  }

  .price-table thead th,
  .price-table tbody td {
    padding: 10px;
    font-size: 14px;
  }

  .price-table-title {
    font-size: 20px;
  }
}

/* ===== ADDITIONAL STYLES FOR NEW SECTIONS ===== */
.pink-link {
  color: #ff1493;
  text-decoration: none;
  font-weight: bold;
}

.pink-link:hover {
  text-decoration: underline;
}

.footer-section {
  background: #000;
  padding: 40px 20px;
  border-top: 1px solid #ff1493;
  text-align: center;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  list-style: none;
  padding: 0;
}

.footer-nav li a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.footer-nav li a:hover {
  color: #ff69b4;
}

.copyright {
  color: #ddd;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  border-top: 1px solid #333;
  padding-top: 20px;
}

/* Red Heading in Why Special Section */
.why-special-title {
  color: #ff1493 !important;
  text-align: center;
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 20px;
}

.check-list {
  list-style: none;
  padding: 0;
  max-width: 1100px;
  margin: auto;
  text-align: left;
}

.check-list li {
  color: #fff;
  font-size: 16px;
  margin-bottom: 12px;
  padding-left: 30px;
  position: relative;
  line-height: 1.6;
}

.check-list li::before {
  content: "✔";
  color: #25d366;
  font-weight: bold;
  position: absolute;
  left: 0;
  font-size: 18px;
}

.section-divider {
  height: 2px;
  background: #ff1493;
  width: 100%;
  margin: 30px 0;
}

.disclaimer-text {
  color: #ddd;
  font-size: 25px;
  line-height: 1.6;
  text-align: left;
  max-width: 1200px;
  margin: auto;
}

/* MOBILE ADJUSTMENTS FOR FOOTER */
@media (max-width: 768px) {
  .footer-nav {
    flex-direction: column;
    gap: 10px;
  }

  .copyright {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .header {
    padding: 10px 15px;
  }

  .logo {
    font-size: 16px;
  }

  .logo small {
    font-size: 10px;
  }

  .section-title {
    font-size: 14px;
    padding: 0 10px;
  }

  .disclaimer-text {
    font-size: 16px !important;
    padding: 0 15px;
  }

  .escort-content h3 {
    font-size: 14px;
  }

  .meta {
    flex-wrap: wrap;
    gap: 8px;
  }

  .actions {
    flex-direction: column;
    gap: 8px;
  }

  .btn {
    justify-content: center;
  }

  .why-escort-image img {
    width: 100%;
  }

  .image-overlay p {
    font-size: 20px;
  }

  .image-overlay span {
    font-size: 14px;
  }

  .image-overlay strong {
    font-size: 24px;
  }

  .why-escort-content h2 {
    font-size: 18px;
  }

  .why-escort-content h3 {
    font-size: 16px;
  }

  .info-title {
    font-size: 22px;
  }

  .info-text {
    font-size: 14px;
  }

  .keyword-title {
    font-size: 20px;
  }

  .keyword-desc {
    font-size: 13px;
  }

  .faq-title {
    font-size: 20px;
  }

  .faq-question {
    font-size: 14px;
    padding: 12px 15px;
  }

  .faq-answer {
    font-size: 13px;
    padding: 12px 15px;
  }

  .price-table-title {
    font-size: 18px;
  }

  .email-title {
    font-size: 22px;
  }

  .email-btn {
    padding: 12px 30px;
    font-size: 16px;
  }

  .disclaimer-title {
    font-size: 22px;
  }

  .disclaimer-content {
    font-size: 14px;
  }

  .contact-details-section h2 {
    font-size: 22px;
  }

  .contact-details-section p {
    font-size: 15px;
  }

  .why-special-title {
    font-size: 20px;
  }

  .check-list li {
    font-size: 14px;
  }

  .sticky-bottom-bar {
    bottom: 10px;
  }

  .contact-box {
    padding: 5px 12px;
  }

  .back-to-top {
    width: 40px;
    height: 40px;
    bottom: 80px;
    right: 15px;
  }
}

/* Additional responsive improvements */
@media (max-width: 360px) {
  .nav a {
    padding: 8px 12px;
    font-size: 12px;
  }

  .escort-card {
    padding: 12px;
  }

  .escort-img {
    width: 100%;
    height: 280px;
  }

  .gallery-grid {
    grid-template-columns: 1fr !important;
  }

  .keyword-tags a {
    font-size: 11px;
    padding: 5px 10px;
  }
}

/* ===== CONTACT PAGE SPECIFIC ===== */
.contact-details-section {
  text-align: center;
  padding: 40px 20px;
  background: #000;
  border-bottom: 2px solid #ff1493;
}

.contact-details-section h2 {
  color: #ff1493;
  font-size: 28px;
  margin-bottom: 20px;
}

.contact-details-section p {
  color: #ddd;
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto;
}

.contact-email-section {
  text-align: center;
  padding: 40px 20px;
  background: #000;
}

.email-title {
  color: #ff1493;
  font-size: 28px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.email-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ff1493;
  color: #fff;
  text-decoration: none;
  padding: 15px 40px;
  border-radius: 50px;
  font-size: 20px;
  font-weight: bold;
  box-shadow: 0 0 20px rgba(255, 20, 147, 0.5);
  transition: transform 0.3s, background 0.3s;
}

.email-btn:hover {
  transform: scale(1.05);
  background: #ff47a3;
}

.disclaimer-section {
  padding: 40px 20px;
  background: #000;
  border-top: 2px solid #fff;
  border-bottom: 2px solid #fff;
}

.disclaimer-title {
  color: #ff1493;
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}

.disclaimer-content {
  color: #fff;
  font-size: 16px;
  line-height: 1.6;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-bottom {
  padding: 20px;
  background: #000;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover {
  text-decoration: underline;
}