body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.card-hover {
    transition: all 0.3s ease;
}
.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgb(233 30 99);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-thumb {
    background: #e91e63;
    border-radius: 20px;
}
.pricing-card {
    transition: all 0.4s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card ul li {
    font-size: 15px;
}
/* Carousel */
.carousel-container {
    padding: 20px 0;
}

#girlsCarousel {
    display: flex;
    gap: 24px;
}

.carousel-card {
    min-width: 260px;
    background: #111827;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    transition: all 0.3s ease;
}

.carousel-card:hover {
    transform: scale(1.05);
}

.carousel-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.92));
    padding: 20px 15px 15px;
}

@keyframes autoScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Arrow Buttons */
button[onclick^="prev"], button[onclick^="next"] {
    backdrop-filter: blur(8px);
}
.tag-card {
    transition: all 0.3s ease;
}

.tag-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px -5px rgba(233, 30, 99, 0.2);
}
/* FAQ Accordion */
.faq-item {
    background: #111827;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #1f2937;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 20px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    color: #d1d5db;
}

.faq-answer.open {
    padding-bottom: 24px;
    max-height: 300px;
}

.faq-question:hover {
    background: #1f2937;
}
.review-card {
    transition: all 0.4s ease;
    height: 100%;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(233, 30, 99, 0.15);
}
footer a {
    transition: all 0.3s ease;
}

footer a:hover {
    padding-left: 4px;
}
/* Girl Profile Card - Compact Height */
.girl-card {
    min-height: 320px;           /* ← Yeh main change hai */
    transition: all 0.3s ease;
}

.girl-card:hover {
    transform: translateY(-5px);
    border-color: #e91e63;
}

.girl-card img {
    height: 100%;
    object-fit: cover;
}

/* Right side content adjustment */
.girl-card .content-side {
    padding: 20px;
}

/* Mobile pe aur compact */
@media (max-width: 768px) {
    .girl-card {
        min-height: 280px;
    }
    .girl-card img {
        height: 400px;
    }
}
/* ====================== TIGHT CONTENT SECTION CSS ====================== */

.content-section {
    padding-top: 60px;     /* Upar padding */
    padding-bottom: 60px;  /* Neeche padding */
    background: #0a0a0a;
}

.content-container {
    max-width: 1000px;     /* Column width */
    margin-left: auto;
    margin-right: auto;
    padding-left: 12px;    /* Left gap */
    padding-right: 12px;   /* Right gap */
}

.content-inner {
    padding-left: 8px;
    padding-right: 8px;
    font-size: 16.5px;
    line-height: 1.75;
    color: #d1d5db;
}

/* Heading */
.content-section h2 {
    margin-bottom: 40px;
}

/* Paragraph spacing */
.content-inner p {
    margin-bottom: 28px;
}

/* Optional: Agar border kam karna hai */
.content-section {
    border: none;
}

/* Agar aap aur tight karna chahein toh yeh classes use karo */
.tight-content {
    padding-top: 50px;
    padding-bottom: 50px;
}

.tight-content .content-container {
    padding-left: 10px;
    padding-right: 10px;
}

.tight-content .content-inner {
    padding-left: 5px;
    padding-right: 5px;
}
/* Floating Contact Buttons - RIGHT SIDE */
.floating-contact-right {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.floating-contact-right a {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    position: relative;
}

.floating-contact-right a:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.floating-contact-right svg {
    width: 26px;
    height: 26px;
    fill: #fff;
}

/* Button Colors */
.floating-call {
    background-color: #28d3fe;
}

.floating-whatsapp {
    background-color: #0ad45e;
}

/* Number Tooltip (appears on LEFT of button) */
.floating-contact-right a .number {
    position: absolute;
    left: 100%;
    margin-left: 12px;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.85);
    color: white;
    font-size: 14px;
    padding: 8px 14px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    pointer-events: none;
}

.floating-contact-right a:hover .number {
    opacity: 1;
    visibility: visible;
}

/* Responsive */
@media (max-width: 480px) {
    .floating-contact-right {
        right: 12px;
        bottom: 12px;
        gap: 10px;
    }
    .floating-contact-right a {
        width: 46px;
        height: 46px;
    }
}

@media (min-width: 1024px) {
    .floating-contact-right {
        right: 30px;
        bottom: 30px;
    }
}