:root {
    --pink: #ff1493;
    --gold: #ffd700;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background: #111111;
    color: #fff;
}
p{
   
    line-height: 1.6;
    color:#ffffffba;
    font-size:16px;
    font-weight: 500;

}
strong{
    color:#d4d5c2;
}
.navbar {
    background: rgba(0, 0, 0, 0.95) !important;
    backdrop-filter: blur(10px);
}

.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.8));
}

.text-pink { color: var(--pink); }
.text-gold { color: var(--gold); }
.btn-pink {
    background: var(--pink);
    color: white;
    border: none;
}
.btn-pink:hover {
    background: #ff69b4;
    transform: scale(1.05);
}

.card {
    transition: all 0.3s;
    background: #1a1a1a;
}
.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 20, 147, 0.3);
}

/* Additional luxury styles */
.section-title {
    position: relative;
}
.section-title:after {
    content: '';
    width: 80px;
    height: 3px;
    background: var(--gold);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}/* Girls Profile Cards */
.girl-card {
    background: linear-gradient(145deg, #1a1a1a, #222);
    border: 1px solid #333;
    overflow: hidden;
    transition: all 0.4s ease;
}

.girl-card:hover {
    transform: translateY(-15px);
    border-color: #ff1493;
    box-shadow: 0 15px 35px rgba(255, 20, 147, 0.25);
}

.girl-card img {
    object-fit: cover;
    transition: all 0.5s ease;
}

.girl-card:hover img {
    transform: scale(1.08);
}

.girl-info {
    padding: 15px;
    text-align: center;
}

.girl-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 5px;
}

.girl-age {
    color: #ff1493;
    font-weight: 600;
}

.girl-desc {
    font-size: 0.95rem;
    color: #ccc;
    margin: 10px 0;
    line-height: 1.4;
}

.btn-book {
    background: #ff1493;
    color: white;
    font-size: 0.9rem;
    padding: 8px 20px;
    border: none;
    border-radius: 30px;
}

.btn-book:hover {
    background: #ff69b4;
}
/* Service Cards - Round Icon Style */
.service-card {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-12px);
    border-color: #ff1493;
    box-shadow: 0 15px 30px rgba(255, 20, 147, 0.25);
}

.service-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(145deg, #ff1493, #c71585);
    color: white;
    font-size: 2.2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 20px rgba(255, 20, 147, 0.4);
    transition: all 0.4s;
}

.service-card:hover .service-icon {
    transform: scale(1.12) rotate(8deg);
}

.service-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 12px;
}

.service-desc {
    color: #ccc;
    font-size: 0.98rem;
    line-height: 1.5;
}
/* Updated Categories Section with Circle Images */
.category-card {
    background: rgba(26, 26, 26, 0.95);
    border: 1px solid #444;
    border-radius: 20px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
    overflow: hidden;
}

.category-card:hover {
    transform: translateY(-12px);
    border-color: #ff1493;
    box-shadow: 0 20px 40px rgba(255, 20, 147, 0.35);
}

.category-image {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #ff1493;
    box-shadow: 0 0 25px rgba(255, 20, 147, 0.6);
    margin: 0 auto 20px;
    transition: all 0.5s ease;
}

.category-card:hover .category-image {
    transform: scale(1.08);
    border-color: #ffd700;
    box-shadow: 0 0 35px rgba(255, 215, 0, 0.7);
}

.category-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 10px;
}

.category-desc {
    color: #ccc;
    font-size: 0.97rem;
    line-height: 1.5;
}
/* Stylish Rates Table */
.stylish-rate-table {
    background: #1a1a1a;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #444;
}

.stylish-rate-table th {
    background: linear-gradient(to right, #ff1493, #c71585);
    color: white;
    font-weight: 700;
    padding: 18px 15px;
    text-align: center;
    font-size: 1.1rem;
}

.stylish-rate-table td {
    padding: 18px 15px;
    color: #ddd;
    border-bottom: 1px solid #333;
    vertical-align: middle;
}

.stylish-rate-table tr:hover {
    background: rgba(255, 20, 147, 0.15);
}

.stylish-rate-table strong {
    color: #ffd700;
    font-size: 1.15rem;
}

.stylish-rate-table td:first-child {
    font-weight: 600;
    color: #fff;
}
/* Stylish FAQ Accordion */
.stylish-accordion .accordion-item {
    background: #1a1a1a;
    border: 1px solid #444;
    margin-bottom: 12px;
    border-radius: 12px;
    overflow: hidden;
}

.stylish-accordion .accordion-button {
    background: #222;
    color: #ffd700;
    font-weight: 600;
    padding: 18px 25px;
    font-size: 1.05rem;
}

.stylish-accordion .accordion-button:not(.collapsed) {
    background: #ff1493;
    color: white;
    box-shadow: none;
}

.stylish-accordion .accordion-button:hover {
    background: #333;
}

.stylish-accordion .accordion-body {
    background: #1a1a1a;
    color: #ddd;
    padding: 20px 25px;
    line-height: 1.7;
    font-size: 1rem;
}
/* Reviews Carousel Styling */
.review-card {
    background: linear-gradient(145deg, #1f1f1f, #2a2a2a);
    border: 1px solid #444;
    border-radius: 16px;
    padding: 25px;
    height: 100%;
    transition: all 0.3s;
}

.review-card:hover {
    border-color: #ff1493;
    transform: translateY(-5px);
}

.review-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #ddd;
    font-style: italic;
}

.review-author {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-author img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 2px solid #ff1493;
}

.review-name {
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 3px;
}

.review-location {
    color: #aaa;
    font-size: 0.95rem;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 20, 147, 0.8);
    border-radius: 50%;
    top: 45%;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: #ff1493;
}
/* Contact Section with Fixed Background */
.contact-section {
    position: relative;
    overflow: hidden;
}

.bg-fixed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/bustychennaiescort-banner.jpg') center/cover no-repeat;
    background-attachment: fixed;
    filter: brightness(0.65);
    z-index: 1;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.75));
    z-index: 2;
}

.map-wrapper, .contact-form-wrapper {
    position: relative;
    z-index: 3;
    background: rgba(26, 26, 26, 0.95);
    padding: 35px;
    border-radius: 20px;
    border: 1px solid #444;
    backdrop-filter: blur(10px);
}

.contact-form-wrapper {
    height: 100%;
}

.form-control, .form-select {
    background: #222;
    border: 1px solid #555;
    color: #fff;
    padding: 12px 18px;
}

.form-control:focus, .form-select:focus {
    background: #2a2a2a;
    border-color: #ff1493;
    box-shadow: 0 0 0 0.2rem rgba(255, 20, 147, 0.25);
    color: #fff;
}

.btn-pink {
    background: linear-gradient(to right, #ff1493, #c71585);
    border: none;
    transition: all 0.3s;
}

.btn-pink:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 20, 147, 0.4);
}
/* Footer Styling */
footer {
    background: #0a0a0a;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: #ff1493;
    padding-left: 8px;
}

.footer-disclaimer {
    background: rgba(255, 20, 147, 0.08);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 20, 147, 0.2);
}

.smallest {
    font-size: 0.78rem;
}

.border-pink {
    border-color: #ff1493 !important;
}
/* Tags Section */
.tag-item {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 50px;
    padding: 14px 22px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s ease;
    color: #ddd;
}

.tag-item:hover {
    background: #222;
    border-color: #ff1493;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 20, 147, 0.2);
}

.tag-icon {
    width: 38px;
    height: 38px;
    background: rgba(255, 20, 147, 0.15);
    color: #ff1493;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.tag-text {
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
}
.related-girl-card {
            background: #1a1a1a;
            border: 1px solid #333;
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.4s;
        }
        .related-girl-card:hover {
            transform: translateY(-10px);
            border-color: #ff1493;
            box-shadow: 0 15px 30px rgba(255, 20, 147, 0.3);
        }
        .related-girl-card img {
            height: 280px;
            object-fit: cover;
        }
        .related-girl-info {
            padding: 15px;
            text-align: center;
        }
        .related-girl-name {
            color: #ffd700;
            font-weight: 700;
            font-size: 1.1rem;
        }
        .carousel-control-prev, .carousel-control-next {
            background: rgba(255,20,147,0.8);
            width: 45px;
            height: 45px;
            border-radius: 50%;
            top: 45%;
        }
		/* Two Buttons Styling */
.btn-book {
    background: linear-gradient(to right, #ff1493, #c71585);
    color: white;
    border: none;
    font-weight: 600;
    padding: 10px 0;
    border-radius: 30px;
    transition: all 0.3s;
}

.btn-book:hover {
    background: linear-gradient(to right, #ff69b4, #db2777);
    transform: scale(1.05);
}

.btn-view {
    background: transparent;
    color: #ffd700;
    border: 2px solid #ffd700;
    font-weight: 600;
    padding: 10px 0;
    border-radius: 30px;
    transition: all 0.3s;
}

.btn-view:hover {
    background: #ffd700;
    color: #111;
    transform: scale(1.05);
}

/* Girl Card Adjustment */
.girl-info {
    padding: 18px;
    text-align: center;
}

.girl-desc {
    margin: 10px 0 15px 0;
    min-height: 48px;
}
/* Improved Mobile Navbar */
.navbar {
    background: rgba(0, 0, 0, 0.95) !important;
    backdrop-filter: blur(10px);
    padding: 12px 0;
    z-index: 1050;
}

.navbar-toggler {
    border: none;
    padding: 8px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-nav .nav-link {
    padding: 10px 15px;
    font-weight: 500;
}

.navbar-nav .nav-link:hover {
    color: #ff1493 !important;
}

/* Mobile Menu Styling */
@media (max-width: 991px) {
    .navbar-collapse {
        background: #111;
        padding: 20px;
        border-radius: 10px;
        margin-top: 10px;
    }
    
    .navbar-nav {
        text-align: center;
    }
    
    .btn-pink {
        width: 100%;
        margin-top: 10px;
    }
}
/* ============== HERO BANNER ANIMATION ============== */
.hero {
    height: 100vh;
    min-height: 650px;
    background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.85));
    position: relative;
    overflow: hidden;
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Animation Classes */
.animate-fadeInUp {
    animation: fadeInUp 1s ease forwards;
}

.animate-scale {
    animation: scaleIn 0.8s ease forwards;
}

/* Hero Content Styling */
.hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 15px;
}

.hero-title {
    font-size: 3.5rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.9);
    margin-bottom: 20px;
}

.hero-subtitle {
    max-width: 780px;
    margin: 0 auto 30px;
    line-height: 1.4;
}

/* Mobile Responsive Adjustments */
@media (max-width: 576px) {

    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.05rem;
    }
    
    .btn-lg {
        padding: 14px 30px;
        font-size: 1.1rem;
        width: 100%;
        margin-bottom: 12px;
    }
}
/* Gallery Section Styling */
.gallery-card {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.gallery-card:hover {
    transform: translateY(-10px);
    border-color: #ff1493;
    box-shadow: 0 15px 35px rgba(255, 20, 147, 0.3);
}

.gallery-card img {
    height: 280px;
    object-fit: cover;
    width: 100%;
    transition: all 0.5s ease;
}

.gallery-card:hover img {
    transform: scale(1.08);
}

.gallery-info {
    padding: 15px 12px;
    text-align: center;
}

.gallery-name {
    color: #ffd700;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.gallery-category {
    color: #ff1493;
    font-size: 0.95rem;
    font-weight: 500;
}
/* Gallery Section Styles */
.gallery-section {
    background: #1a1a1a;
    padding: 80px 0;
    color: #fff;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 10px;
    color: #ff3366;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #ddd;
    margin-bottom: 50px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.6);
    transition: all 0.4s ease;
}

.gallery-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 30px rgba(255, 51, 102, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, transparent, rgba(0,0,0,0.85));
    padding: 25px 15px 20px;
    text-align: center;
}

.overlay h3 {
    margin: 0 0 6px 0;
    font-size: 1.1rem;
    color: #fff;
}

.overlay .category {
    margin: 0;
    font-size: 0.9rem;
    color: #ff99aa;
    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: 15px;
    }
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* सामान्य लिंक */
a {
  color: rgba(255, 255, 255, .5);
  text-decoration: none;
}


/* जब माउस लिंक पर जाए (Hover) */
a:hover {
  color: #ff1493;
}
/* 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: #fe2897;
}

.floating-whatsapp {
    background-color: #0ffd73;
}

/* 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;
    }
}