
/* Gradient Navbar */
a{
  text-decoration: none;
}
.custom-navbar {
        background: linear-gradient(135deg, #951e53, #9f1c5b);
}

.navbar-brand {
    font-size: 26px;
    font-weight: 700;
    color: #fff !important;
}

.nav-link {
    color: #fff !important;
    font-weight: 500;
    margin-left: 15px;
}

.nav-link:hover {
    color: #000 !important;
}

/* Bottom Bar */
.bottom-bar {
    background: #9f1c5b;
    padding: 12px 0;
}

/* Flex Wrapper - ALWAYS ROW */
.contact-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

/* Common Button Style */
.contact-wrapper a {
    flex: 1;                  /* Equal width */
    text-align: center;
    padding: 10px 5px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    color: #fff;
    font-size: 14px;
    white-space: nowrap;
}

/* Call Button */
.call-btn {
    background: #000000;
}

/* Telegram Button */
.telegram-btn {
    background: #d4980c;
}

/* WhatsApp Button */
.whatsapp-btn {
    background: #25D366;
}

/* Remove stacking on mobile */
@media (max-width: 576px) {
    .contact-wrapper {
        flex-direction: row;   /* Force row */
    }
}


@media (max-width: 991px) {
    .nav-link {
        margin-left: 0;
        padding: 10px 0;
    }
}


/* ===== PREMIUM MIXED BANNER ===== */

.area-premium-banner {
    position: relative;
    background: url('../imagess/banner\ city.webp') center/cover no-repeat;
    min-height: 77vh;              /* Full screen height */
    display: flex;
    align-items: center;            /* Vertical center */
    padding: 80px 0;
    color: #fff;
    overflow: hidden;
}

.area-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.75);
}

.area-banner-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    z-index: 2;
}

/* Left Gallery */
.area-banner-gallery {
    display: flex;
    gap: 20px;
}

.area-banner-gallery img {
    width: 160px;
    height: 220px;
    object-fit: cover;
    border: 6px solid #e2d51c;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

/* Text Section */
.area-banner-text {
    max-width: 600px;
}

.area-subtitle {
    letter-spacing: 2px;
    font-size: 14px;
    color: #f5b942;
}

.area-banner-text h1 {
    font-size: 48px;
    font-weight: 700;
}

.area-banner-text h2 {
    font-size: 42px;
    color: #ff3d6d;
    font-weight: 800;
    margin-bottom: 20px;
}

.area-description {
    font-size: 16px;
    margin-bottom: 30px;
    color: #ddd;
}


/* Responsive */
@media(max-width: 991px) {

    .area-banner-content {
        flex-direction: column;
        text-align: center;
    }

    .area-banner-gallery {
        justify-content: center;
    }

    .area-banner-text h1 {
        font-size: 34px;
    }

    .area-banner-text h2 {
        font-size: 30px;
    }
}

/* ===== GOLDEN DIVIDER START ===== */

.area-golden-divider {
    height: 4px;
    background: linear-gradient(90deg, #d4af37, #f5d76e, #d4af37);
    width: 100%;
}

/* ===== GOLDEN DIVIDER END ===== */



/* ===== PREMIUM INFO SECTION START ===== */

.area-info-section {
    background: #000;
    color: #ddd;
}

.area-main-title {
    color: #ff3d6d;
    font-weight: 700;
    font-size: 36px;
}

.area-sub-title {
    color: #fffefe;
    font-weight: 600;
    font-size: 28px;
}

.area-main-desc,
.area-sub-desc {
    max-width: 900px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.8;
}

.area-feature-box {
    background: #fbfaf9;
    padding: 30px;
    border-radius: 10px;
    height: 100%;
    transition: 0.3s;
}

.area-feature-box h4 {
    color: #ff3d6d;
    margin-bottom: 15px;
}

.area-feature-box p {
    color: #0f0d0b;
    margin-bottom: 15px;
}

.area-feature-box:hover {
    background: #9f1c5b;
    transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 768px) {
    .area-main-title {
        font-size: 26px;
    }

    .area-sub-title {
        font-size: 22px;
    }
}

/* ===== PREMIUM INFO SECTION END ===== */


/* ===== FLIP CARD SECTION ===== */

.flip-section {
  background: linear-gradient(135deg, #8e1b53, #b02c6a);
}

.flip-card {
  perspective: 1000px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 400px;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 25px;
  padding: 5px;
  backface-visibility: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* FRONT */
.flip-card-front {
  background: #9f2c62;
  color: #fff;
}

/* BACK */
.flip-card-back {
  background: linear-gradient(135deg, #ff2d6f, #ff0055);
  color: #fff;
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Image */
.card-img-wrapper {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
  border-radius: 20px;
}

.card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Name Overlay */
.card-name {
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-weight: 700;
  font-size: 22px;
  background: rgba(0,0,0,0.5);
  padding: 3px 7px;
  border-radius: 30px;
}

/* Area Badge */
.card-area {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: #ffcc00;
  color: #000;
  font-size: 13px;
  padding: 5px 12px;
  border-radius: 20px;
  font-weight: 600;
}

/* Info Badges */
.info-badge {
  background: #ffc107;
  color: #000;
  padding: 6px 12px;
  font-size: 13px;
  border-radius: 8px;
  font-weight: 600;
}





/* ===== AREA STACK SECTION START ===== */

.area-stack-section {
    background: linear-gradient(135deg, #9f1c5b, #9f1c5b);
    color: #fff;
}

.area-stack-wrapper {
    position: relative;
    min-height: 750px;
    overflow: hidden;
}

.area-img-bottom {
    top: 380px;
    left: 120px;
}



/* Common Image Style */
.area-img {
    position: absolute;
    border-radius: 15px;
    padding: 8px;
    background: rgba(255,255,255,0.05);
    box-shadow: 0 0 25px rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
}

.area-img img {
    width: 260px;
    height: auto;
    border-radius: 12px;
    display: block;
}

/* Positioning */

/* First image (Top left) */
.area-img-top {
    top: 0;
    left: 0;
}

/* Second image (Middle left) */
.area-img-middle {
    top: 274px;
    left: 0;
}

/* Third image (Shifted right) */
.area-img-bottom {
    top: 420px;
    left: 120px;
}

/* Title */
.area-stack-title {
    font-size: 34px;
    font-weight: 700;
}

/* Text */
.area-stack-text {
    font-size: 16px;
    line-height: 1.8;
    color: #f2f2f2;
}

/* Responsive */
@media (max-width: 768px) {

    .area-stack-wrapper {
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .area-img {
        position: relative;
        left: 0 !important;
        top: 0 !important;
    }

    .area-img img {
        width: 100%;
    }
}

/* ===== AREA STACK SECTION END ===== */




/* ===== MIXED ESCORT SECTION ===== */

.escort-mixed-card {
  background: #111;
  padding: 30px;
  border-radius: 25px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.6);
}

/* FIXED HEIGHT 400px */
.escort-mixed-card > .col-lg-5,
.escort-mixed-card > .col-lg-7 {
  display: flex;
  height: 300px;
}

/* Image wrapper */
.escort-image-card {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
}

/* Image fill 400px */
.escort-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Verified badge */
.verified-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #00c853;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

/* Right card 400px */
.escort-content-card {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ff4da6, #d63384);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Responsive (mobile auto height) */
@media (max-width: 991px) {

  .escort-mixed-card > .col-lg-5,
  .escort-mixed-card > .col-lg-7 {
    height: auto;
    display: block;
  }

  .escort-image-card {
    height: 400px;
  }
}



/* ===== AREA COVERAGE SECTION START ===== */

.area-coverage-section {
  background: #f2c037;
  color: #ddd;
}


.area-coverage-title {
  font-size: 40px;
  font-weight: 700;
  color: #d42b7f;
}

.area-coverage-title span {
  color: #fffffe;
}

.area-coverage-desc {
  max-width: 850px;
  margin: 20px auto 0;
  line-height: 1.8;
  color: #fffffe;
}



.area-coverage-card {
  background: #0b0b0b;
  border: 1px solid rgba(212,175,55,0.4);
  padding: 35px;
  border-radius: 20px;
  height: 100%;
  transition: 0.3s ease;
}

.area-coverage-card h4 {
  color: #f5c542;
  font-weight: 600;
  margin-bottom: 15px;
}

.area-coverage-card p {
  color: #ccc;
  line-height: 1.7;
}

/* Hover Effect */

.area-coverage-card:hover {
  transform: translateY(-6px);
  border-color: #d4af37;
  box-shadow: 0 0 20px rgba(212,175,55,0.2);
}



@media (max-width: 768px) {
  .area-coverage-title {
    font-size: 28px;
  }
}



/* ===== AREA COVERAGE SECTION END ===== */




/* ===== WHY SECTION ===== */

.why-section {
  background: linear-gradient(90deg, #2f2f2f, #3b3b3b);
  color: #ddd;
}

/* Image */
.why-img-wrapper {
  border-radius: 20px;
  overflow: hidden;
}

.why-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

/* Content */
.why-content {
  padding: 20px 40px;
}

/* Top Label */
.top-label {
  color: #ffc107;
  font-size: 14px;
  letter-spacing: 3px;
  font-weight: 600;
  display: block;
  margin-bottom: 15px;
}

/* Heading */
.why-heading {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.highlight {
  color: #ffc107;
}

/* Paragraph */
.why-content p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* List */
.why-list {
  list-style: none;
  padding: 0;
}

.why-list li {
  margin-bottom: 12px;
  font-size: 16px;
}

.why-list i {
  color: #9c6bff;
  margin-right: 10px;
}





/* ===== MIXED PRICING SECTION start ===== */

.pricing-section {
  background: linear-gradient(135deg, #ab2a67, #ab2a67);
  color: #fff;
}

/* Heading */
.pricing-title {
  font-size: 40px;
  font-weight: 700;
  color: #ffc107;
}

.pricing-subtitle {
  color: #ddd;
  font-size: 16px;
}

/* Table */
.pricing-table {
  border-collapse: separate;
  border-spacing: 0;
  min-width: 800px; /* mobile scroll enable */
}

/* Header */
.pricing-table thead {
  background: #c62828;
  color: #fff;
  font-size: 16px;
}

/* Red Column Divider Lines */
.pricing-table th,
.pricing-table td {
  padding: 14px;
  font-weight: 500;
  border-right: 2px solid #c62828;
  border-radius: 10px;
}

.pricing-table th:last-child,
.pricing-table td:last-child {
  border-right: none;
}

/* Row Colors */
.pricing-table tbody tr:nth-child(odd) {
  background: #8bc34a;
  color: #222;
}

.pricing-table tbody tr:nth-child(even) {
  background: #f4d35e;
  color: #222;
}

/* Hover */
.pricing-table tbody tr:hover {
  background: #ffc107;
  transition: 0.3s;
}


/* ===== MOBILE STACK TABLE ===== */
@media (max-width: 768px) {

  .pricing-table {
    min-width: 100%;
  }

  .pricing-table thead {
    display: none; /* hide header */
  }

  .pricing-table,
  .pricing-table tbody,
  .pricing-table tr,
  .pricing-table td {
    display: block;
    width: 100%;
  }

  .pricing-table tr {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
  }

  .pricing-table tbody tr:nth-child(odd) {
    background: #8bc34a;
  }

  .pricing-table tbody tr:nth-child(even) {
    background: #f4d35e;
  }

  .pricing-table td {
    text-align: left;
    padding: 10px 15px;
    border-right: none;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    position: relative;
  }

  .pricing-table td:last-child {
    border-bottom: none;
  }

  /* Label Before Each Data */
  .pricing-table td::before {
    content: attr(data-label);
    font-weight: 600;
    display: block;
    margin-bottom: 3px;
    color: #333;
  }

  .pricing-title {
    font-size: 26px;
  }
}
/* ===== MIXED PRICING SECTION end ===== */




/* ===== PREMIUM FAQ SECTION ===== */

.premium-faq {
  background: linear-gradient(135deg, #000000, #2b1b00);
  color: #fff;
}

.faq-title {
  font-size: 38px;
  font-weight: 700;
  color: #ffc107;
}

.faq-subtitle {
  color: #ccc;
  font-size: 16px;
}

/* Accordion Styling */
.custom-accordion .accordion-item {
  background: #0b0b0f;
  border: 1px solid rgba(255, 0, 128, 0.4);
  border-radius: 18px;
  margin-bottom: 18px;
  overflow: hidden;
  transition: 0.3s;
}

.custom-accordion .accordion-button {
  background: transparent;
  color: #ffc107;
  font-weight: 600;
  font-size: 17px;
  padding: 18px 20px;
  box-shadow: none;
}

.custom-accordion .accordion-button::after {
  filter: invert(1);
}

.custom-accordion .accordion-button:not(.collapsed) {
  background: linear-gradient(90deg, #ab2a67, #8b0056);
  color: #fff;
  border-bottom: 1px solid #ff007f;
}

.custom-accordion .accordion-body {
  background: #000;
  color: #ddd;
  font-size: 15px;
  line-height: 1.7;
  padding: 18px 20px;
}

/* Hover */
.custom-accordion .accordion-item:hover {
  border-color: #ffc107;
  transform: translateY(-2px);
}

/* Mobile */
@media (max-width: 768px) {
  .faq-title {
    font-size: 26px;
  }

  .custom-accordion .accordion-button {
    font-size: 15px;
  }
}



/* ===== DELHI LOCATION SECTION ===== */

.delhi-location-section {
  background: linear-gradient(135deg, #000000, #2b1b00);
  color: #fff;
}

.location-title {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
}

.location-subtitle {
  max-width: 750px;
  font-size: 16px;
  color: #ccc;
  line-height: 1.8;
}

/* Location Links */
.location-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.location-links a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  position: relative;
  padding-bottom: 5px;
  transition: 0.3s;
}

/* Underline Effect */
.location-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #ffc107;
  transform: scaleX(0.6);
  transition: 0.3s;
}

.location-links a:hover {
  color: #ffc107;
}

.location-links a:hover::after {
  transform: scaleX(1);
}

/* Extra Line */
.extra-line {
  font-size: 16px;
  color: #ddd;
}

.extra-line i {
  color: #ffc107;
  margin-right: 8px;
}

/* Mobile Responsive */
@media (max-width: 768px) {

  .location-title {
    font-size: 26px;
  }

  .location-subtitle {
    font-size: 14px;
    padding: 0 10px;
  }

  .location-links {
    gap: 15px;
  }

  .location-links a {
    font-size: 14px;
  }
}



/* ===== PREMIUM FOOTER ===== */

.premium-footer {
  background: linear-gradient(135deg, #000000, #1a0d1f);
  color: #ccc;
}

/* Logo */
.footer-logo {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
}

.footer-logo span {
  color: #ff007f;
}

/* Text */
.footer-text {
  font-size: 15px;
  line-height: 1.7;
  margin-top: 15px;
}

/* Badges */
.badge-box span {
  display: inline-block;
  border: 1px solid #ffc107;
  color: #ffc107;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 13px;
  margin: 5px 5px 0 0;
}

/* Titles */
.footer-title {
  color: #ffc107;
  font-weight: 600;
  margin-bottom: 15px;
}

/* Links */
.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #ffc107;
}

/* Contact */
.footer-contact p {
  font-size: 14px;
  margin-bottom: 8px;
}

.footer-contact i {
  color: #ffc107;
  margin-right: 8px;
}

/* Newsletter */
.newsletter-box {
  display: flex;
  overflow: hidden;
  border-radius: 8px;
}

.newsletter-box input {
  flex: 1;
  padding: 10px;
  border: none;
  outline: none;
}

.newsletter-box button {
  background: #ffc107;
  border: none;
  padding: 10px 18px;
  font-weight: 600;
  cursor: pointer;
}

.newsletter-box button:hover {
  background: #e6a800;
}

/* Social */
.social-icons a {
  width: 42px;
  height: 42px;
  background: #ffc107;
  color: #000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 8px;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #ff007f;
  color: #fff;
}

/* Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {

  .footer-logo {
    font-size: 22px;
  }

  .newsletter-box {
    flex-direction: column;
  }

  .newsletter-box button {
    width: 100%;
  }

}







/* ===== FIXED BOTTOM CONTACT BAR START ===== */

.area-bottom-bar {
    position: fixed;      /* Always fixed */
    bottom: 0;            /* Stick to bottom */
    left: 0;
    width: 100%;
    background: #9f1c5b;
    padding: 12px 0;
    z-index: 9999;        /* Above everything */
}

.area-contact-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

.area-contact-wrapper a {
    flex: 1;
    text-align: center;
    padding: 10px 5px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    color: #fff;
    font-size: 14px;
    white-space: nowrap;
}

/* Individual Buttons */

.area-call-btn {
    background: #101210;
}

.area-telegram-btn {
    background: #d4980c;
}

.area-whatsapp-btn {
    background: #25D366;
}

/* Prevent content hiding behind fixed bar */
body {
    padding-bottom: 65px;   /* Same height as bottom bar */
}

/* ===== FIXED BOTTOM CONTACT BAR END ===== */
