@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Roboto:wght@400;500&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: radial-gradient(#000, rgba(185, 28, 28, 0.5));
    color: #fff8f8;
    line-height: 1.7;
}

p a {
    color: red;
    background: white;
    text-decoration: none;
    padding: 2px;
    border-radius: 5px;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 10px 20px;
}

/* ==================== TOP BAR ==================== */
.topbar {
    background: #f87171;
    text-align: center;
    padding: 10px 0;
    font-size: 0.92rem;
    color: #fff5d1;
    border-bottom: 1px solid #451616;
}

/* ==================== NAVBAR ==================== */
.navbar {
    background: radial-gradient(black, transparent);
    border-bottom: 2px solid #451616;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 16px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    font-size: 1.85rem;
    font-weight: 700;
    color: #f00;
    letter-spacing: -0.5px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 28px;
    height: 2.5px;
    background: #111;
    transition: all 0.35s ease;
}

/* Desktop Navigation */
.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #c00;
}

/* Appointment Button */
.appointment-btn {
    background: #c00;
    color: white;
    padding: 13px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(204, 0, 0, 0.2);
}

.appointment-btn:hover {
    background: #a00;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(204, 0, 0, 0.3);
}

/* Mobile Menu */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #451616;
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        z-index: 999;
        animation: slideDown 0.4s ease forwards;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 16px 25px;
        font-size: 1.08rem;
        border-bottom: 1px solid #f5f5f5;
    }

    .nav-links .appointment-btn {
        margin: 15px 25px 5px;
        text-align: center;
        padding: 15px;
        border-radius: 6px;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== BANNER ==================== */
.banner {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.banner-img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    filter: brightness(0.92);
}

@media (max-width: 768px) {
    .banner-img {
        height: 280px;
    }
}

/* ==================== GIRLS GRID ==================== */
.girls-grid {
    display: grid;
    gap: 28px;
    padding: 50px 0;
}

.girl-card {
    background: radial-gradient(#f87171, #f8f8f8);
    border: 1px solid #0067cc;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgb(2 19 17 / 25%);
}

.girl-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.08);
    border-color: #ddd;
}

.photo-container {
    position: relative;
    padding-top: 100%;
}

.photo-container img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 78%;
    height: 78%;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #fff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.verified-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    background: #97006e;
    color: white;
    padding: 6px 14px;
    border-radius: 10px;
    font-size: 0.78rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 200, 83, 0.3);
}

.card-info {
    padding: 0px 15px;
    text-align: center;
    color: #666;
}

.card-info h3 {
    margin-bottom: 6px;
    color: #8600d7;
    font-size: 1.22rem;
}

/* ==================== MODAL ==================== */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.modal-content {
    background: rgba(0, 0, 0, 0.4);
    max-width: 460px;
    width: 100%;
    border-radius: 10px;
    padding: 25px 22px 30px;
    text-align: center;
    color: #fff;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
    max-height: 92vh;
    overflow-y: auto;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 22px;
    font-size: 2.6rem;
    cursor: pointer;
    color: #aaa;
    line-height: 1;
}

.close-modal:hover {
    color: #666;
}

.modal-content img {
    width: 100%;
    max-height: 340px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.modal-name {
    font-size: 1.45rem;
    margin: 10px 0 6px;
    color: #111;
    font-weight: 700;
}

.modal-details {
    font-size: 1.05rem;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* ==================== MODAL BUTTONS - UPDATED ==================== */
.modal-buttons {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.modal-btn {
    flex: 1;
    padding: 15px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    color: #c00;
    font-size: 1.02rem;
    transition: all 0.3s ease;
}

.modal-btn.call {
    background: #222;
    color: white;
}

.modal-btn.call:hover {
    background: #000;
}

.modal-btn.whatsapp {
    background: #6b0000;
    color: white;
}

.modal-btn.whatsapp:hover {
    background: #20b358;
}

/* Mobile mein buttons ek ke neeche ek */
@media (max-width: 768px) {
    .modal-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .modal-btn {
        padding: 16px 20px;
        /* Mobile ke liye thoda bada padding */
    }
}

/* ==================== FOOTER ==================== */
footer {
    background: #0f0f0f;
    color: #bbb;
    padding: 80px 0 45px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 45px;
    margin-bottom: 60px;
}

.footer-col h3 {
    color: #fff;
    margin-bottom: 22px;
    font-size: 1.25rem;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 11px;
}

.footer-col ul li a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #222;
    padding-top: 28px;
    text-align: center;
    color: #777;
    font-size: 0.9rem;
}

/* Responsive Grid */
@media (min-width: 769px) and (max-width: 1199px) {
    .girls-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1200px) {
    .girls-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 10px 15px;
    }
}

/* ==================== WHY CHOOSE US ==================== */
.why-us {
    padding: 30px 10px;
    background: radial-gradient(#6b0000, transparent);
    margin: 10px 10px 10px 10px;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 35px;
}

.why-card {
    background: #6b0000;
    padding: 30px 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.why-card h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
    color: #fff2f2;
}

.why-card p {
    color: #ff4577;
    line-height: 1.6;
}

/* ==================== SERVICES ==================== */
.services {
    padding: 30px 10px;
    margin: 10px 10px 10px 10px;
}

.section-desc {
    font-size: 1.1rem;
    color: #444;
    max-width: 800px;
    margin: 20px auto 0;
    text-align: center;
}

/* ==================== HOW TO BOOK ==================== */
.how-to-book {
    padding: 30px 10px;
    background: radial-gradient(#6b0000, transparent);
    margin: 10px 10px 10px 10px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.step {
    background: radial-gradient(#fffff6, #ffafaf);
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
}

.step span {
    display: inline-block;
    width: 55px;
    height: 55px;
    background: #c00;
    color: white;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 55px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.step h3 {
    margin-bottom: 12px;
    color: #222;
    font-size: 1.25rem;
}

.step p {
    color: #666;
    line-height: 1.65;
}

/* ==================== POPULAR AREAS ==================== */
.areas {
    padding: 30px 10px;
    margin: 10px 10px 10px 10px;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.area-item {
    background: #ffdada;
    border: 1px solid #eee;
    padding: 18px 20px;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    color: #333;
    transition: all 0.3s ease;
}

.area-item:hover {
    background: #c00;
    color: white;
    border-color: #c00;
    transform: translateY(-3px);
}

/* ==================== TESTIMONIALS ==================== */
.testimonials {
    padding: 30px 10px;
    background: radial-gradient(#dde9d2, transparent);
    margin: 10px 10px 10px 10px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.testimonial-card p {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-card strong {
    color: #c00;
    font-weight: 600;
}

/* ==================== FAQ SECTION ==================== */
.faq-section {
    background: #f9f9f930;
    padding: 30px 10px;
    margin: 10px 10px 10px 10px;
    border-radius: 5px;
}

.faq-main-title {
    color: #fff;
    margin-bottom: 2rem;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 12px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    background: white;
}

.faq-question {
    width: 100%;
    padding: 18px 24px;
    background: white;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #222;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8f8f8;
}

.faq-icon {
    font-size: 1.6rem;
    font-weight: 300;
    color: #c00;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: white;
}

.faq-answer p {
    padding-bottom: 20px;
    color: #555;
    line-height: 1.7;
}

/* Active state (optional) */
.faq-item.active .faq-question {
    background: #fff5f5;
}

/* ==================== FINAL CTA SECTION WITH BACKGROUND IMAGE ==================== */
.cta-final {
    padding: 90px 20px;
    position: relative;
    overflow: hidden;
    color: white;
    text-align: center;
    min-height: 380px;
    display: flex;
    align-items: center;
    margin: 10px 10px 10px 10px;
    border-radius: 5px;
}

/* Background Image */
.cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../img/cta-bg.webp');
    /* ← Yahan apni image daal do */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.65) contrast(1.1);
    /* Darker aur rich look ke liye */
    z-index: 1;
}

/* Dark Overlay for better text visibility */
.cta-final::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(204, 0, 0, 0.65));
    z-index: 2;
}

.cta-final>.container {
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
}

.cta-final h2 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 16px;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.6);
}

.cta-final p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 30px;
    opacity: 0.95;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.cta-final .appointment-btn {
    background: white;
    color: #c00;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-final .appointment-btn:hover {
    background: #c00;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(204, 0, 0, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .cta-final {
        padding: 70px 15px;
        min-height: 340px;
    }

    .cta-final h2 {
        font-size: 2rem;
    }

    .cta-final p {
        font-size: 1.05rem;
    }
}

/* ==================== ABOUT ME SECTION ==================== */
.about-section {
    background: rgb(255 252 239);
    margin: 10px 10px 10px 10px;
    border-radius: 5px;
}

.about-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.about-image {
    width: 100%;
    max-width: 520px;
}

.about-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    object-fit: cover;
}

.about-content {
    width: 100%;
}

.about-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-desc {
    font-size: 1.08rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
    margin: 25px 0;
}

.feature-item {
    background: #f8f8f8;
    padding: 14px 18px;
    border-radius: 10px;
    font-weight: 500;
    color: #222;
    border-left: 4px solid #c00;
}

/* Desktop Layout */
@media (min-width: 992px) {
    .about-wrapper {
        flex-direction: row;
        gap: 70px;
        align-items: flex-start;
    }

    .about-image {
        width: 45%;
    }

    .about-content {
        width: 55%;
    }

    .about-title {
        font-size: 2.5rem;
    }
}

/* Mobile */
@media (max-width: 991px) {
    .about-title {
        font-size: 1.9rem;
    }
}