* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a 

{
 color: #ff2d95;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background: #0f0a1f;
    color: #fff;
    line-height: 1.6;
}

/* Navbar */
.navbar {
    background: #1a1233;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    flex-wrap: wrap;
}

.logo {
    font-size: 26px;
    font-weight: bold;
    color: #ff2d95;
}
.logo span { color: #fff; }

.navbar ul {
    list-style: none;
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.navbar ul li {
    cursor: pointer;
    transition: 0.3s;
    padding: 5px 0;
}
.navbar ul li:hover { color: #ff2d95; }

.age-warning {
    background: #ff2d95;
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: bold;
    white-space: nowrap;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.85)), 
                url('images/juhijain-banner.jpg') center/cover;
    text-align: center;
    padding: 120px 20px 80px;
}

.hero h1 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #ff2d95;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 25px;
}

.search-box {
    max-width: 90%;
    margin: 0 auto;
    display: flex;
    background: #fff;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.search-box input {
    flex: 1;
    border: none;
    padding: 18px 20px;
    font-size: 1.1rem;
    color: #000;
    outline: none;
}

.search-box button {
    background: #ff2d95;
    color: #fff;
    border: none;
    padding: 0 30px;
    font-size: 1.1rem;
    cursor: pointer;
}

/* Categories & Areas */
.categories, .areas {
    padding: 60px 5%;
    max-width: 1400px;
    margin: 0 auto;
}
h1 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #ff2d95;
}
h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 40px;
    color: #ff2d95;
}

h4 {
    font-size: 1.5rem;
    margin: 12px 0;
	color: #ff2d95;
}

.category-grid, .area-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.category-card, .area-card {
    background: #1a1233;
    border-radius: 20px;
    padding: 25px 20px;
    text-align: center;
    transition: 0.4s;
    cursor: pointer;
    border: 2px solid transparent;
}

.category-card:hover, .area-card:hover {
    transform: translateY(-10px);
    border-color: #ff2d95;
    box-shadow: 0 15px 30px rgba(255, 45, 149, 0.3);
}

.category-card h3 {
    font-size: 1.5rem;
    margin: 12px 0;
	color: #ff2d95;
}

footer {
    text-align: center;
    padding: 30px 10px;
    background: #0a0719;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ====================== MOBILE RESPONSIVE ====================== */

@media (max-width: 768px) {
    .navbar {
        padding: 12px 5%;
    }
    
    .navbar ul {
        gap: 15px;
        font-size: 0.95rem;
    }

    .hero {
        padding: 90px 15px 60px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .search-box input {
        padding: 15px 15px;
        font-size: 1rem;
    }
    
    .search-box button {
        padding: 0 25px;
    }

    .category-card, .area-card {
        padding: 20px 15px;
    }
}

@media (max-width: 480px) {
    .navbar {
        flex-direction: column;
        gap: 12px;
    }
    
    .navbar ul {
        justify-content: center;
        width: 100%;
    }

    .logo {
        font-size: 24px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .category-grid, .area-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}
/* ====================== NAVBAR ====================== */
.navbar {
    background: #1a1233;
    padding: 12px 5%;           /* Height kam ki */
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    min-height: 65px;           /* Fixed minimum height */
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: bold;
    color: #ff2d95;
}

.logo-img {
    height: 42px;               /* Logo size kam kiya */
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 6px rgba(255, 45, 149, 0.5));
}

/* Age Warning */
.age-warning {
    background: #ff2d95;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: bold;
    white-space: nowrap;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .navbar {
        padding: 10px 5%;
        min-height: 60px;
    }
    
    .logo-img {
        height: 36px;
    }
    
    .logo {
        font-size: 19px;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 8px 5%;
        min-height: 55px;
    }
    
    .logo-img {
        height: 32px;
    }
    
    .logo {
        font-size: 17px;
    }
}
/* ====================== PROFILES SECTION ====================== */
.profiles {
    padding: 70px 5%;
    background: #0f0a1f;
    max-width: 1400px;
    margin: 0 auto;
}

.profiles h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 50px;
    color: #ff2d95;
}

.profiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 25px;
}

.profile-card {
    background: #1a1233;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    border: 2px solid transparent;
    transition: 0.4s;
}

.profile-card:hover {
    border-color: #ff2d95;
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 45, 149, 0.25);
}

.profile-img {
    width: 38%;
    position: relative;
}

.profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-info {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.profile-info h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
    color: #ff2d95;
}

.age {
    font-size: 1rem;
    color: #aaa;
    font-weight: normal;
}

.type {
    color: #ff2d95;
    font-weight: 600;
    margin-bottom: 12px;
}

.desc {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 15px;
    color: #ddd;
}

.buttons {
    display: flex;
    gap: 12px;
}

.call-btn, .whatsapp-btn {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.call-btn {
    background: #00cc66;
    color: white;
}

.whatsapp-btn {
    background: #25D366;
    color: white;
}

.call-btn:hover, .whatsapp-btn:hover {
    transform: scale(1.05);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .profiles-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .profile-card {
        flex-direction: column;
    }
    
    .profile-img {
        width: 100%;
        height: 480px;
    }
}
/* ====================== GALLERY SECTION ====================== */
.gallery {
    padding: 70px 5%;
    background: #0a0719;
}

.gallery h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 50px;
    color: #ff2d95;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
    max-width: 1600px;
    margin: 0 auto;
}

.gallery-card {
    background: #1a1233;
    border-radius: 15px;
    overflow: hidden;
    transition: 0.4s;
    cursor: pointer;
    border: 2px solid transparent;
}

.gallery-card:hover {
    transform: scale(1.05);
    border-color: #ff2d95;
    box-shadow: 0 15px 35px rgba(255, 45, 149, 0.3);
}

.gallery-img {
    height: 260px;
    overflow: hidden;
}

.gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.gallery-card:hover .gallery-img img {
    transform: scale(1.1);
}

.gallery-info {
    padding: 14px 12px;
    text-align: center;
    background: #1a1233;
}

.gallery-info h3 {
    font-size: 1.1rem;
    color: #ff2d95;
    margin-bottom: 4px;
}

.age {
    font-size: 0.95rem;
    color: #aaa;
}

.gallery-info p {
    color: #ff8ac4;
    font-size: 0.95rem;
    font-weight: 500;
}

/* ==================== MOBILE RESPONSIVE ==================== */
@media (max-width: 1200px) {
    .gallery-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
    .gallery-grid { 
        grid-template-columns: repeat(3, 1fr); 
        gap: 12px;
    }
    .gallery-img { height: 220px; }
}

@media (max-width: 480px) {
    .gallery-grid { 
        grid-template-columns: repeat(2, 1fr); 
    }
    .gallery-img { height: 200px; }
}
/* ====================== SERVICES SECTION ====================== */
.services {
    padding: 100px 5%;
    background: linear-gradient(rgba(15, 10, 31, 0.85), rgba(15, 10, 31, 0.9)), 
                url('images/juhijain-banner2.jpg') center/cover fixed;
    background-attachment: fixed;   /* Fixed background */
    position: relative;
}

.services-overlay {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.services h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 60px;
    color: #ff2d95;
    text-shadow: 0 4px 15px rgba(0,0,0,0.6);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.service-card {
    background: rgba(26, 18, 51, 0.95);
    border-radius: 20px;
    padding: 35px 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
}

.service-card:hover {
    transform: translateY(-15px);
    border-color: #ff2d95;
    box-shadow: 0 20px 40px rgba(255, 45, 149, 0.4);
}

.service-icon {
    font-size: 4.5rem;
    margin-bottom: 20px;
    display: block;
    transition: 0.4s;
}

.service-card:hover .service-icon {
    transform: scale(1.2);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #ff2d95;
}

.service-card p {
    color: #ddd;
    line-height: 1.6;
}

/* ==================== MOBILE RESPONSIVE ==================== */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .services {
        padding: 70px 5%;
    }
}
/* ====================== CONTENT SECTION ====================== */
.content-section {
    padding: 90px 5%;
    background: #0f0a1f;
}

.content-container {
    max-width: 1300px;
    margin: 0 auto;
}

.content-section h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 60px;
    color: #ff2d95;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-text {
    color: #ddd;
    font-size: 1.1rem;
    line-height: 1.8;
}

.content-text h3 {
    color: #ff2d95;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.content-text ul {
    margin: 25px 0;
    padding-left: 20px;
}

.content-text ul li {
    margin: 12px 0;
    list-style: none;
    position: relative;
}

.content-text ul li:before {
    content: "";
    position: absolute;
    left: -20px;
    color: #ff2d95;
}

.book-now-btn {
    display: inline-block;
    background: #ff2d95;
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
    transition: 0.3s;
}

.book-now-btn:hover {
    background: #ff4da6;
    transform: scale(1.05);
}

.content-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.feature-card {
    background: #1a1233;
    padding: 30px 20px;
    border-radius: 18px;
    text-align: center;
    transition: 0.4s;
    border: 2px solid transparent;
}

.feature-card:hover {
    border-color: #ff2d95;
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 3.2rem;
    margin-bottom: 15px;
}

.feature-card h4 {
    color: #ff2d95;
    margin-bottom: 10px;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 992px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .content-features {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .content-features {
        grid-template-columns: 1fr;
    }
}
/* ====================== CUSTOM CONTENT SECTION ====================== */
.custom-content {
    padding: 90px 5%;
    background: #0f0a1f;
}

.content-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.custom-content h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 50px;
    color: #ff2d95;
}

.content-body {
    background: #1a1233;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    color: #ddd;
    line-height: 1.8;
    font-size: 1.1rem;
}

.content-body h3 {
    color: #ff2d95;
    margin: 35px 0 15px 0;
    font-size: 1.6rem;
}

.content-body ul {
    margin: 20px 0;
    padding-left: 25px;
}

.content-body ul li {
    margin: 12px 0;
    position: relative;
}

.content-body ul li:before {
    content: "✓";
    color: #ff2d95;
    position: absolute;
    left: -20px;
}

/* Responsive */
@media (max-width: 768px) {
    .content-body {
        padding: 35px 20px;
    }
    
    .custom-content h2 {
        font-size: 1.8rem;
    }
    
    .content-body {
        font-size: 1.05rem;
    }
}
/* ====================== FAQ SECTION ====================== */
.faq-section {
    padding: 90px 5%;
    background: #0a0719;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-section h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 50px;
    color: #ff2d95;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    background: #1a1233;
    border: 1px solid #2a1f4d;
}

.faq-question {
    padding: 20px 25px;
    background: #1a1233;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    color: #fff;
    transition: 0.3s;
}

.faq-question:hover {
    background: #251c45;
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: #15102a;
}

.faq-answer p {
    padding: 20px 0;
    margin: 0;
    color: #ddd;
    line-height: 1.7;
}

.faq-icon {
    font-size: 1.6rem;
    font-weight: bold;
    color: #ff2d95;
    transition: 0.3s;
}

/* Mobile */
@media (max-width: 768px) {
    .faq-question {
        padding: 18px 20px;
        font-size: 1rem;
    }
}
/* ====================== CLIENT REVIEWS SECTION ====================== */
.reviews-section {
    padding: 90px 5%;
    background: #0f0a1f;
}

.reviews-container {
    max-width: 1300px;
    margin: 0 auto;
}

.reviews-section h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 60px;
    color: #ff2d95;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    background: #1a1233;
    border-radius: 20px;
    padding: 35px 25px;
    transition: 0.4s;
    border: 2px solid transparent;
}

.review-card:hover {
    transform: translateY(-10px);
    border-color: #ff2d95;
    box-shadow: 0 20px 40px rgba(255, 45, 149, 0.25);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.review-header img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ff2d95;
}

.review-header h3 {
    margin: 0;
    color: #ff2d95;
    font-size: 1.3rem;
}

.review-header p {
    margin: 0;
    color: #aaa;
    font-size: 0.95rem;
}

.stars {
    font-size: 1.5rem;
    margin: 15px 0;
    color: #ffd700;
}

.review-text {
    color: #ddd;
    line-height: 1.7;
    font-size: 1.05rem;
    font-style: italic;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 992px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}
/* ====================== FOOTER ====================== */
.main-footer {
    background: #0a0719;
    color: #ddd;
    padding: 70px 5% 30px;
    border-top: 1px solid #2a1f4d;
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-col h3 {
    color: #ff2d95;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin: 10px 0;
}

.footer-col a {
    color: #ddd;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col a:hover {
    color: #ff2d95;
    padding-left: 5px;
}

.footer-bottom {
    max-width: 1300px;
    margin: 50px auto 0;
    padding-top: 25px;
    border-top: 1px solid #2a1f4d;
    text-align: center;
    font-size: 0.9rem;
}

.dmca {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    opacity: 0.9;
}

.dmca img {
    filter: brightness(1.2);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-col {
        margin-bottom: 30px;
    }
}
/* ====================== CONTACT + MAP SECTION ====================== */
.contact-map-section {
    padding: 90px 5%;
    background: #0f0a1f;
}

.contact-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-map-section h2 {
    color: #ff2d95;
    margin-bottom: 25px;
    font-size: 1.8rem;
}

.map-wrapper {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 16px 20px;
    background: #1a1233;
    border: 1px solid #3a2a5f;
    border-radius: 10px;
    color: #fff;
    font-size: 1.05rem;
    outline: none;
    transition: 0.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: #ff2d95;
    box-shadow: 0 0 0 3px rgba(255, 45, 149, 0.2);
}

.submit-btn {
    background: #ff2d95;
    color: white;
    padding: 16px;
    border: none;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
}

.submit-btn:hover {
    background: #ff4da6;
    transform: translateY(-3px);
}

.contact-info {
    margin-top: 25px;
    padding: 20px;
    background: #1a1233;
    border-radius: 12px;
    font-size: 1.05rem;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .map-wrapper iframe {
        height: 380px;
    }
}
/* GLOBAL SECTION MARGIN REDUCTION */
.profiles, .gallery, .services, .content-section, 
.custom-content, .faq-section, .reviews-section, 
.contact-map-section {
    padding: 60px 5% !important;     /* Sab sections ke padding kam */
}

h2 {
    margin-bottom: 40px !important;
}
/* ====================== RATES / PRICING SECTION ====================== */
.rates-section {
    padding: 70px 5%;
    background: #0f0a1f;
}

.rates-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.rates-section h2 {
    font-size: 1.8rem;
    margin-bottom: 50px;
    color: #ff2d95;
}

.rates-table {
    background: #1a1233;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    border: 2px solid #3a2a5f;
}

.rates-table table {
    width: 100%;
    border-collapse: collapse;
}

.rates-table th {
    background: #251c45;
    color: #ff2d95;
    padding: 22px 15px;
    font-size: 1.2rem;
    text-align: left;
}

.rates-table td {
    padding: 18px 15px;
    border-bottom: 1px solid #2a1f4d;
    color: #ddd;
    font-size: 1.1rem;
    text-align: left;
}

.rates-table tr:last-child td {
    border-bottom: none;
}

.rates-table tr:hover {
    background: #251c45;
}

.note {
    margin-top: 30px;
    color: #aaa;
    font-size: 1rem;
    font-style: italic;
}

/* ==================== MOBILE RESPONSIVE ==================== */
@media (max-width: 768px) {
    .rates-section h2 {
        font-size: 2.1rem;
    }
    
    .rates-table th,
    .rates-table td {
        padding: 15px 10px;
        font-size: 1rem;
    }
    
    .rates-table {
        border-radius: 15px;
    }
}

@media (max-width: 480px) {
    .rates-table th,
    .rates-table td {
        font-size: 0.95rem;
    }
}
/* ====================== GIRLS CONTACT TABLE ====================== */
.contact-table-section {
    padding: 70px 5%;
    background: #0f0a1f;
}

.contact-table-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.contact-table-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #ff2d95;
}

.table-wrapper {
    background: #1a1233;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
    border: 2px solid #3a2a5f;
}

.girls-contact-table {
    width: 100%;
    border-collapse: collapse;
}

.girls-contact-table th {
    background: #251c45;
    color: #ff2d95;
    padding: 20px 15px;
    text-align: left;
    font-size: 1.15rem;
}

.girls-contact-table td {
    padding: 18px 15px;
    border-bottom: 1px solid #2a1f4d;
    color: #ddd;
    text-align: left;
}

.girls-contact-table tr:hover {
    background: #251c45;
}

.girls-contact-table .age {
    color: #aaa;
    font-weight: normal;
}

.whatsapp-btn {
    background: #25D366;
    color: white;
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    font-weight: bold;
    transition: 0.3s;
}

.whatsapp-btn:hover {
    background: #1eb653;
    transform: scale(1.05);
}

.note {
    margin-top: 25px;
    color: #aaa;
    font-style: italic;
}

/* ==================== MOBILE RESPONSIVE ==================== */
@media (max-width: 768px) {
    .girls-contact-table th,
    .girls-contact-table td {
        padding: 14px 10px;
        font-size: 0.98rem;
    }
    
    .contact-table-section h2 {
        font-size: 1.8rem;
    }
    
    .whatsapp-btn {
        padding: 9px 12px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .girls-contact-table {
        font-size: 0.9rem;
    }
}
/* Video Hero Section */
.video-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 650px;
    overflow: hidden;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#heroVideo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.fallback-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.7));
    z-index: 1;
}

.video-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.content-wrapper {
    max-width: 900px;
}

.main-heading {
    font-size: 3.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.6);
}

.sub-heading {
    font-size: 1.4rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.book-now-btn {
    background: #e91e63;
    color: white;
    padding: 16px 40px;
    font-size: 1.3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

.book-now-btn:hover {
    background: #c2185b;
    transform: scale(1.05);
}

.whatsapp-btn {
    background: #25D366;
    color: white;
    padding: 16px 35px;
    font-size: 1.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    font-size: 1.1rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .main-heading {
        font-size: 2.6rem;
    }
    .sub-heading {
        font-size: 1.1rem;
    }
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}
/* ==================== BOTTOM CALL & WHATSAPP BAR (Mobile) ==================== */
.bottom-contact-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #1a1233;
    padding: 12px 10px;
    display: flex;
    gap: 10px;
    z-index: 99999;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.6);
    border-top: 2px solid #ff2d95;
}

.bottom-contact-bar a {
    flex: 1;
    padding: 16px 20px;
    text-align: center;
    font-weight: bold;
    font-size: 1.1rem;
    border-radius: 12px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s;
}

.call-me-btn {
    background: linear-gradient(45deg, #FF2D95, #E91E63);
    color: white;
}

.whatsapp-btn {
    background: linear-gradient(45deg, #25D366, #128C7E);
    color: white;
}

.bottom-contact-bar a:hover {
    transform: scale(1.05);
}

/* Hide old floating buttons on mobile */
.floating-buttons {
    display: none;
}

/* Desktop pe old floating buttons dikhao */
@media (min-width: 769px) {
    .floating-buttons {
        display: flex;
    }
    .bottom-contact-bar {
        display: none;
    }
}