/* --- Root Colors & Background --- */
:root {
    --bg-dark: #050a18;
    --accent-orange: #ff8c00;
    --btn-red: #a30000;
    --text-white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

 
header {
    background: rgba(10, 20, 32, 0.95);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 { font-size: 24px; font-weight: 800; letter-spacing: 1px; }
.logo span { color: var(--accent-orange); }

nav ul { display: flex; list-style: none; gap: 20px; }
nav ul li a { text-decoration: none; color: white; font-size: 14px; transition: 0.3s; }
nav ul li a.active, nav ul li a:hover { color: var(--accent-orange); border-bottom: 2px solid var(--accent-orange); padding-bottom: 5px; }

.menu-toggle { display: none; font-size: 24px; cursor: pointer; }

 
.hero {
    height:70vh;
    width: 100%;
    /* Image path yahan set hai */
    background: linear-gradient(rgba(5, 10, 24, 0.8), rgba(5, 10, 24, 0.8)), 
                url('images/bannerescort.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-content { max-width:1200px; }
.tagline { color: var(--accent-orange); font-weight: 700; margin-bottom: 10px; font-size: 14px; }
.hero-content h1 { font-size: 52px; line-height: 1.1; margin-bottom: 20px; font-weight: 800; }
.description { color: #b0b8c1; margin-bottom: 40px; font-size: 17px; }

 
.cta-buttons { display: flex; gap: 20px; }
.btn { 
    padding: 15px 35px; 
    border-radius: 50px; 
    text-decoration: none; 
    color: white; 
    font-weight: 700; 
    display: inline-flex; 
    align-items: center; 
    gap: 10px; 
    transition: 0.3s; 
}
.btn-call1 { background-color: var(--btn-red); }
.btn-telegram { background-color: var(--accent-orange); }
.btn:hover { transform: translateY(-3px); filter: brightness(1.2); }

 
@media screen and (max-width: 768px) {
    .menu-toggle { display: block; }
    nav { display: none; position: absolute; top: 100%; left: 0; width: 100%; background: #0a1420; padding: 20px; }
    nav.active { display: block; }
    nav ul { flex-direction: column; text-align: center; }
    .hero-content h1 { font-size: 36px; }
    .cta-buttons { flex-direction: column; }
    .btn { width: 100%; justify-content: center; }
}





 
.info-section {
    background-color: #111;  
    padding: 60px 0;
    color: #ffffff;
}

.section-title {
    color: #ffcc00;  
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    font-weight: 700;
    line-height: 1.3;
}

.info-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #cccccc;  
    margin-bottom: 20px;
    text-align: justify;
}

.info-content p strong {
    color: #ffffff;
    font-weight: 600;
}

 

.info-content p a {
    color: #ffcc00; 
    text-decoration: none;  
    font-weight: 600;
    border-bottom: 1px dashed #ffcc00;  
    transition: all 0.3s ease;  
}

.info-content p a:hover {
    color: #ffffff;  
    border-bottom: 1px solid #ffffff;  
    background-color: rgba(255, 140, 0, 0.1);  
    padding: 0 2px;
}
 
@media screen and (max-width: 768px) {
    .section-title {
        font-size: 24px;
        padding: 0 10px;
    }
    
    .info-content p {
        text-align: left;
        font-size: 15px;
    }
}




 
.offer-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2d0b16 0%, #a30033 100%);
    color: #ffffff;
}

.offer-flex {
    display: flex;
    align-items: center;
    gap: 50px;
}

.offer-text {
    flex: 1.2;
}

.offer-text h2 {
    font-size: 30px;
    color: #ffcc00;  
    margin-bottom: 25px;
    line-height: 1.2;
    font-weight: 700;
}

.offer-text p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #f1f1f1;
}

 
.offer-text p a {
    color: #00aaff;  
    text-decoration: none;
    font-weight: 600;
}

.offer-text p a:hover {
    text-decoration: underline;
}

 
.offer-banner {
    flex: 0.8;
}

.banner-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    border: 2px solid rgba(255, 204, 0, 0.3);
}

.banner-card img {
    width: 100%;
    display: block;
    transition: transform 0.5s;
}

.banner-card:hover img {
    transform: scale(1.05);
}

 
.badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #ffffff;
    color: #000;
    padding: 10px 15px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 14px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

 
@media screen and (max-width: 992px) {
    .offer-flex {
        flex-direction: column;
        text-align: center;
    }
    
    .offer-text h2 {
        font-size: 28px;
    }

    .offer-banner {
        width: 100%;
        max-width: 500px;
    }
}




 
.profile-pricing-section {
    background-color: #0a0a0a;  
    padding: 60px 0;
    color: #ffffff;
}

.section-heading {
    color: #ffcc00;  
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.section-intro {
    color: #cccccc;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 900px;
}

 
.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);  
    gap: 20px;
    margin-bottom: 60px;
}

.cat-btn {
    padding: 18px 10px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    border-radius: 8px;
    transition: transform 0.3s ease, filter 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cat-btn:hover {
    transform: translateY(-5px);
    filter: brightness(1.2);
}

 
.btn-hotel { background-color: #2c2c2c; }
.btn-russian { background-color: #4b235a; }
.btn-mallu { background-color: #1a4a7a; }
.btn-desi { background-color: #7a432a; }
.btn-outcall { background-color: #2a5a4a; }
.btn-gfe { background-color: #3a2a8a; }

 
.price-range {
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 15px;
}

.pricing-content p {
    color: #cccccc;
    line-height: 1.8;
}

 
@media screen and (max-width: 992px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);  
    }
}

@media screen and (max-width: 600px) {
    .category-grid {
        grid-template-columns: 1fr;  
    }
    
    .section-heading {
        font-size: 22px;
    }
    
    .cat-btn {
        padding: 15px;
    }
}




 
.profile-gallery-section {
    padding: 80px 0;    
   background: linear-gradient(135deg, #2d0b16 0%, #a30033 100%);
    color: #ffffff;
    border-top: 1px solid rgba(255, 140, 0, 0.1);
    border-bottom: 1px solid rgba(255, 140, 0, 0.1);
}

.gallery-title {
    text-align: center;
    color: #ffcc00;  
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.gallery-subtitle {
    text-align: center;
    color: #a5acba;
    font-size: 16px;
    margin-bottom: 50px;
    letter-spacing: 0.5px;
}

 
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
 
.profile-card {
    background: rgba(255, 255, 255, 0.03); 
    backdrop-filter: blur(10px);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.profile-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    border-color: #ff8c00;
}

 
.profile-header {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    display: flex;
    justify-content: space-between;
    z-index: 5;
}

.badge {
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.badge.verified { 
    background: linear-gradient(45deg, #00b09b, #96c93d); 
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.badge.available { 
    background: linear-gradient(45deg, #ee0979, #ff6a00); 
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

 
.image-wrapper {
    width: 100%;
    height: 380px;
    overflow: hidden;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.profile-card:hover .image-wrapper img {
    transform: scale(1.1);
    filter: brightness(1.1);
}

/* Details Section */
.profile-details {
    padding: 20px 15px;
    text-align: center;
}

.profile-details h3 {
    font-size: 22px;
    color: #ffffff;
    margin-bottom: 5px;
}

.profile-sub-tag {
    color: #ff8c00;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
}

 
.card-action {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 15px 20px 15px;
    box-sizing: border-box; 
}

.btn-call {
    flex: 1;  
    background: linear-gradient(to right, #0F6104, #1EC707);
    color: white;
    text-decoration: none;
    padding: 12px 5px;  
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    text-align: center;
    white-space: nowrap;  
    box-shadow: 0 4px 15px rgba(163, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px;  
}

.btn-tele {
    background: #0088cc;
    color: white;
    width: 45px;     
    height: 45px;      
    border-radius: 50%; 
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;    
    text-decoration: none;
}

.btn-tele i, .btn-tele svg {
    font-size: 18px;  
}

 
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);  
        gap: 15px;
    }
    .image-wrapper { height: 320px; }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;  
        gap: 20px;
    }
    
    .card-action {
        padding: 0 10px 20px 10px;  
        gap: 8px;
    }

    .btn-call {
        font-size: 13px;
        padding: 10px 5px;
        height: 40px;
    }

    .btn-tele {
        width: 40px;
        height: 40px;
    }
}

 
@media (max-width: 1100px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .gallery-grid { grid-template-columns: 1fr; } }



 
.hotel-info-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #8a2b5f 0%, #4d1435 100%); /* Deep Magenta Gradient */
    color: #ffffff;
    overflow: hidden;
    position: relative;
}

.hotel-content-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.hotel-text {
    flex: 1;
    min-width: 300px;
}

.hotel-text h2 {
    font-size: 32px;
    color: #ffcc00;  
    margin-bottom: 25px;
    line-height: 1.3;
    font-weight: 800;
}

.hotel-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}


.hotel-text p a{
    color: #ffcc00;
    text-decoration: none;
    font-weight: 600;
}
.hotel-text p a:hover{
    color: #ffcc00;
    text-decoration: underline;
    font-weight: 600;
}


.hotel-text a {
    color: #000;
    text-decoration: underline;
    font-weight: 600;
}

.highlight-text {
    font-weight: 700;
	
    font-style: italic;
    border-left: 4px solid #ffcc00;
    padding-left: 15px;
    margin-top: 30px !important;

}

 
.hotel-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.image-shape {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 300px;
    border-radius: 100px 20px 100px 20px;  
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.4);
    border: 5px solid rgba(255, 255, 255, 0.1);
}

.image-shape img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-shape:hover img {
    transform: scale(1.1);
}

 
.btn-hotel-call {
    display: inline-block;
    padding: 15px 35px;
    background: #ffcc00;
    color: #4d1435;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 800;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-hotel-call:hover {
    background: #ffffff;
    transform: translateY(-3px);
}

 
@media (max-width: 768px) {
    .hotel-text h2 { font-size: 26px; }
    .hotel-content-wrapper { text-align: center; }
    .highlight-text { border-left: none; border-top: 2px solid #ffcc00; padding: 15px 0 0 0; }
}



.main-footer {
    background-color: #1a1a1a;  
    color: #ffffff;
    padding: 60px 0 20px;
    font-family: 'Poppins', sans-serif;
    border-top: 3px solid #ffcc00;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

.footer-column h3 {
    color: #ffcc00;
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    font-weight: 600;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 2px;
    background: #ffcc00;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
}

.footer-column ul li a:hover {
    color: #ffcc00;
    padding-left: 8px;
}

 
.footer-social {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: transform 0.3s;
}

.social-icon.telegram { background: #0088cc; }
.social-icon.whatsapp { background: #25d366; }

.social-icon:hover {
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 14px;
    color: #777;
}

.footer-bottom a{
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 14px;
    color: #ffcc00;
	text-decoration:none;
}

.footer-bottom a:hover{
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 14px;
    color: #ffcc00;
	text-decoration:underline;
}


 
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        text-align: left;
    }
}


 
#backToTop {
    display: none;  
    position: fixed; 
    bottom: 30px; 
    right: 30px; 
    z-index: 99; 
    border: none; 
    outline: none; 
    background: linear-gradient(135deg, #ff8c00 0%, #d90429 100%);  
    color: white; 
    cursor: pointer; 
    padding: 15px; 
    border-radius: 50%;  
    width: 50px;
    height: 50px;
    font-size: 20px; 
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

#backToTop:hover {
    transform: scale(1.1);
    background: linear-gradient(135deg, #d90429 0%, #ff8c00 100%);
}

 
@media (max-width: 480px) {
    #backToTop {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 16px;
        padding: 10px;
    }
}





 
.connection-creation-section {
    background-color: #0c0c0c;
    color: #ffffff;
    padding: 40px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

 
.button-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto 40px auto;
}

 
.btn {
    padding: 12px 15px;
    text-align: center;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, opacity 0.2s;
    font-size: 15px;
}

.btn:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

 
.btn-gold { background-color: #c09b50; color: #000; }
.btn-teal { background-color: #1a6d71; }
.btn-maroon { background-color: #7b1d3f; }
.btn-purple { background-color: #4a339b; }
.btn-dark-green { background-color: #2e5546; }
.btn-orange { background-color: #92532d; }
.btn-blue { background-color: #154673; }
.btn-deep-purple { background-color: #5d256d; }
.btn-yellow { background-color: #a67c00; }
.btn-grey { background-color: #333333; }
.btn-cyan { background-color: #006b5f; }
.btn-brown { background-color: #452b27; }

 
.content-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    text-align: left;
}

.main-heading {
    color: #e5c06d;  
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: bold;
}

.description {
    line-height: 1.6;
    font-size: 16px;
    margin-bottom: 15px;
    color: #fff;
	font-weight:500;
}

.highlight-text a {
    color: #2d89ef;
    text-decoration: none;
    font-weight: bold;
}

.highlight-text a:hover {
    text-decoration: underline;
}

 @media (max-width: 768px) {
    .main-heading { font-size: 20px; }
    .description { font-size: 14px; }
}



/* Gallery Container */
.connection-creation-gallery {
    background-color: #000; /* ब्लैक बैकग्राउंड */
    padding: 50px 20px;
}

/* Grid Layout */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* एक लाइन में 4 फोटो */
    gap: 20px; /* फोटो के बीच की दूरी */
    max-width: 1200px;
    margin: 0 auto;
}

/* Individual Item */
.gallery-item {
    border: 3px solid #ff3366; /* स्क्रीनशॉट जैसी पिंक बॉर्डर */
    border-radius: 8px;
    overflow: hidden;
    background-color: #1a1a1a;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Image Styling */
.gallery-item img {
    width: 100%;
    height: 300px; /* आप अपनी ज़रूरत के हिसाब से बदल सकते हैं */
    object-fit: cover; /* फोटो कटेगी नहीं, फ्रेम में फिट रहेगी */
    display: block;
    transition: transform 0.5s ease;
}

/* Hover Effect (जब माउस ऊपर जाएगा) */
.gallery-item:hover {
    transform: scale(1.03); /* हल्का सा बड़ा होगा */
    box-shadow: 0 10px 20px rgba(255, 51, 102, 0.4); /* पिंक ग्लो */
}

.gallery-item:hover img {
    transform: scale(1.1); /* इमेज ज़ूम होगी */
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr); /* टैबलेट पर 2 फोटो */
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr; /* मोबाइल पर 1 फोटो */
    }
}