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

body {
  background: #fff;
}

/* Navbar */
.navbar {
  width: 100%;
  border-bottom: 1px solid #ddd;
  background: #262b30;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 500;
}

.logo span {
  color: #fff;
  text-transform: uppercase;
  font-weight: bolder;
  letter-spacing: 1px;
}

.logo img {
  width: 100px;
}

/* Menu */
.menu {
  display: flex;
  gap: 30px;
}

.menu a {
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  letter-spacing: 2px;
  transition: 0.3s;
}

/* WhatsApp */
.whatsapp {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  letter-spacing: 2px;
}

.whatsapp img {
  width: 18px;
}

.menu-icon {
  display: none;
  width: 40px;
  height: 40px;
  background: #ff4f9a; /* Pink background */
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* SVG color */
.menu-icon svg rect {
  fill: #fff; /* White icon */
}
#menu-toggle:checked + .menu-icon {
  background: #e63b85;
}

/* Show only on mobile */
@media (max-width: 992px) {
  .menu-icon {
    display: flex;
  }
}

/* Responsive */
@media (max-width: 992px) {
  .menu {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 25px 0;
    display: none;
    border-top: 1px solid #ddd;
  }

  #menu-toggle:checked ~ .menu {
    display: flex;
  }

  .menu-icon {
    display: flex;
  }

  .whatsapp {
    display: none;
  }
}

/* HERO SECTION */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: url("logo/Ranchicallgirl.jpeg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  /* background: rgba(235, 99, 167, 0.747); */
}

/* Content */
.hero-content {
  position: relative;
  max-width: 1000px;
  padding: 20px;
  text-align: center;
  color: #fff;
  z-index: 2;
}

.hero-content h1 {
  font-size: 42px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 30px;
  color: #eaeaea;
}

/* Buttons */
.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  padding: 14px 32px;
  background: #f55e98;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 2px;
  transition: 0.3s;
}

.btn-outline {
  padding: 14px 32px;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 2px;
  transition: 0.3s;
}

.btn-outline:hover {
  background: #fff;
  color: #000;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero {
    height: 85vh;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .hero-content p {
    font-size: 16px;
  }
  .hero {
  position: relative;
  width: 100%;
  height: 50vh;
  background-image: url("logo/Ranchicallgirl.jpeg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 24px;
  }
}

/* SEO CONTENT SECTION */
.seo-section {
  padding: 50px 20px;
  background: #181616;
}

.seo-container {
  max-width: 1200px;
  margin: auto;
  color: #000;
  background-color: white;
  padding: 50px 20px;
}

.seo-container h1 {
  font-size: 25px;
  margin-bottom: 20px;
  line-height: 1.3;
  text-align: justify;
  color: #ff4f9a;
}
.seo-container h2 {
  font-size: 25px;
  margin-bottom: 20px;
  line-height: 1.3;
  text-align: justify;
  color: #ff4f9a;
}

.seo-container h3 {
  font-size: 24px;
  margin: 35px 0 15px;
}

.seo-container p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
  color: #000;
  text-align: justify;
}

/* Responsive */
@media (max-width: 768px) {
  .seo-container h2 {
    font-size: 26px;
  }
  .seo-container h3 {
    font-size: 22px;
  }
  .seo-container p {
    text-align: justify;
  }
}

/* MODELS SECTION */
.models-section {
  padding: 20px 20px;
  background: white;
}

.models-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* Card */
.model-card {
  text-align: left;
}

.model-img {
  position: relative;
  overflow: hidden;
}

.model-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

/* Info */
.model-info {
  margin-top: 12px;
}

.model-info span {
  display: block;
  font-size: 14px;
  color: black;
  margin-bottom: 6px;
}

.model-info p {
  font-size: 14px;
  color: #444;
}

/* Hover effect (optional but classy) */
.model-img img {
  transition: transform 0.4s ease;
}

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

/* ===== RESPONSIVE ===== */

/* Tablet (2 cards) */
@media (max-width: 991px) {
  .models-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .model-img img {
    height: 480px;
  }
}

/* Mobile (1 card) */
@media (max-width: 576px) {
  .models-container {
    grid-template-columns: 1fr;
  }

  .model-img img {
    height: 380px;
    object-fit: cover;
  }
}

/* FOOTER */
.footer {
  background: #262b30;
  color: #fff;
  padding: 60px 20px;
}

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

/* Top */
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 22px;
}

.footer-logo img {
  width: 32px;
}

/* Menu */
.footer-menu {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 2px;
}

/* Divider */
.footer hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 30px 0;
}

/* Middle */
.footer-middle {
  text-align: center;
}

.footer-middle .domain {
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.footer-middle .copyright {
  font-size: 13px;
  color: #ccc;
}

/* Tags */
.footer-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.footer-tags a {
  border: 1px solid #f55e98;
  padding: 8px 16px;
  border-radius: 2px;
  font-size: 13px;
  white-space: nowrap;
  text-transform: capitalize;
  text-decoration: none;
  color: white;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    text-align: center;
  }

  .footer-menu {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-tags span {
    font-size: 12px;
    padding: 7px 14px;
  }
}

/* FIXED CONTACT BUTTONS */
.fixed-contact {
  position: fixed;
  right: 18px;
  bottom: 10%;
  transform: translateY(50%);
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 999;
}

.contact-btn {
  width: 35px;
  height: 35px;
  border-radius: 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ff4f9a;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.contact-btn svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}

.contact-btn:hover {
  transform: scale(1.1);
}

/* Optional color difference */
.contact-btn.call {
  background: #ff2f8a;
}

/* Mobile spacing */
@media (max-width: 576px) {
  .fixed-contact {
    right: 12px;
  }
}

/* Rate Chart Css */
.rate-chart {
  max-width: 1300px;
  margin: 60px auto;
  padding: 0 15px;
  text-align: center;
}

.rate-chart h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.rate-note {
  font-size: 15px;
  color: #555;
  margin-bottom: 25px;
}

.table-wrapper {
  overflow-x: auto;
}

.rate-chart table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
}

.rate-chart th,
.rate-chart td {
  padding: 14px 16px;
  border-bottom: 1px solid #eaeaea;
  font-size: 15px;
}

.rate-chart th {
  background: #f3f3f3;
  font-weight: 600;
}

.rate-chart tr:last-child td {
  border-bottom: none;
}

/* FAQ section Css */
/* FAQ Title */
.faq-title {
  font-size: 30px;
  font-weight: 700;
  margin: 50px 0 25px;
  text-align: center;
  color: #ff2f8a;
}

/* FAQ Item */
.faq-item {
  background: #ffffff;
  border-radius: 10px;
  padding: 18px 22px;
  margin-bottom: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  border: 1px solid #eee;
  transition: all 0.3s ease;
}

/* Open State */
.faq-item[open] {
  border-color: #ff4d6d;
  box-shadow: 0 15px 35px rgba(255, 77, 109, 0.15);
}

/* Question */
.faq-item summary {
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 30px;
}

/* Remove default arrow */
.faq-item summary::-webkit-details-marker {
  display: none;
}

/* Custom + icon */
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 22px;
  font-weight: 600;
  color: #ff4d6d;
  transition: transform 0.3s ease;
}

/* Rotate icon when open */
.faq-item[open] summary::after {
  content: "−";
}

/* Answer */
.faq-item p {
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.7;
  color: #444;
}

/* Check Age Section css */
/* Overlay */
.age-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: 99999;
}

/* Popup Box */
.age-box {
  background: #ffffff;
  max-width: 420px;
  width: 90%;
  padding: 35px 30px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
  animation: popIn 0.4s ease;
}

.age-box h2 {
  font-size: 26px;
  margin-bottom: 12px;
  color: #111;
}

.age-box p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* Buttons */
.age-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.age-buttons button {
  padding: 12px 22px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* YES Button */
.btn-yes {
  background: #ff4d6d;
  color: #fff;
}

.btn-yes:hover {
  background: #e84362;
  transform: translateY(-2px);
}

/* NO Button */
.btn-no {
  background: #e0e0e0;
  color: #333;
}

.btn-no:hover {
  background: #d2d2d2;
}

/* Animation */
@keyframes popIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
