/* --- Global Resets & Base Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #ffffff;
    color: #333;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

/* --- Header / Navbar --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #382c54; /* Dark purple background matching the image */
    /*padding: 15px 40px;*/
    padding: 5px 40px;
    position: relative;
    z-index: 10;
}

.logo h2 {
    color: #ffffff;
    font-size: 1.8rem;
    font-style: italic;
    font-family: 'Brush Script MT', cursive; /* Approximation for the script font */
    font-weight: 400;
}

.logo span {
    color: #ff6b81; /* Pinkish accent */
}

.nav-links ul {
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: #ffffff;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #ff6b81;
}

.nav-buttons {
    display: flex;
    gap: 15px;
}

/* Button Styles */
.btn {
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(90deg, #ff758c 0%, #ff7eb3 100%);
    color: #ffffff;
    border: none;
}

.btn-outline {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* --- Hero Section --- */
.hero {
    position: relative;
    height: 70vh; /* Adjust as needed */
    min-height: 500px;
    /* Using the exact filename requested */
    background-image: url('../img/escorts-banner.webp'); 
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Dark overlay to make text readable */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(30, 20, 50, 0.6); /* Tint over the image */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
    max-width: 900px;
    padding: 20px;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

/* Search Box / Dropdown */
.search-box {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 5px;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.search-box select {
    width: 100%;
    padding: 15px 20px;
    border: none;
    outline: none;
    font-size: 1rem;
    color: #555;
    background-color: transparent;
    cursor: pointer;
    appearance: none; /* Removes default OS styling to look uniform */
    -webkit-appearance: none;
    -moz-appearance: none;
    /* Adding a custom dropdown arrow via background image */
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23333333%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 12px auto;
}

/* --- Below Hero Section --- */
.explore-cities {
    padding: 60px 20px;
    text-align: center;
}

.explore-cities h2 {
    font-size: 2.2rem;
    color: #333;
}

/* --- Floating Action Buttons --- */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 100;
}

.fab {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-size: 1.5rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: transform 0.2s;
}

.fab:hover {
    transform: scale(1.1);
}

.btn-whatsapp {
    background-color: #25D366; /* WhatsApp Green */
}

.btn-phone {
    background-color: #1877F2; /* Generic Phone Blue */
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .navbar {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }
    .hero-content h1 {
        font-size: 2.2rem;
    }
}



/* --- Global Resets --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}


a {
    text-decoration: none;
}

/* --- Section Title --- */
.explore-cities {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    color: #1a1a2e; /* Darker navy text */
    margin-bottom: 40px;
    font-weight: 600;
}

/* Underline effect for "Popular" */
.section-title .highlight {
    position: relative;
    display: inline-block;
}

.section-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 10%;
    width: 80%;
    height: 3px;
    background-color: #382c54; /* Dark purple underline */
    border-radius: 2px;
}

/* --- Grid Layout --- */
.city-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

/* --- City Cards --- */
.city-card {
    position: relative;
    height: 260px;
    border-radius: 12px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.city-card:hover {
    transform: translateY(-5px);
}

/* Placeholder backgrounds (Replace with actual image URLs) */
.mumbai-bg { background-color: #2c3e50;
    background-image: url('../img/mumbai.avif'); 


} 
.delhi-bg { background-color: #7f8c8d; 
 background-image: url('../img/delhi-bg.webp'); 
}
.lucknow-bg { background-color: #5d4037;
 background-image: url('../img/lucknow-bg.avif');  }
.banglore-bg { background-color: #1a1a2e;
 background-image: url('../img/banglore-bg.jpg'); 

}
.goa-bg { background-color: #2980b9;
 background-image: url('../img/geo-bg.jpg');  }
.pune-bg { background-color: #34495e;
 background-image: url('../img/pune-bg.jpg'); 
}

/* Dark gradient overlay for text readability */
.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: linear-gradient(to top, rgba(30, 20, 50, 0.9) 0%, rgba(30, 20, 50, 0) 100%);
    z-index: 1;
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    z-index: 2;
    color: #ffffff;
}

.card-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.card-content p {
    font-size: 0.9rem;
    margin-bottom: 15px;
    color: #e0e0e0;
}

/* --- Explore Button --- */
.btn-explore {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 25px;
    background: linear-gradient(90deg, #ff758c 0%, #b359f8 100%); /* Pink to Purple gradient */
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.btn-explore:hover {
    opacity: 0.9;
}

/* --- Floating Action Buttons --- */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 100;
}

.fab {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-size: 1.5rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: transform 0.2s;
}

.fab:hover {
    transform: scale(1.1);
}

.btn-whatsapp {
    background-color: #25D366; 
}

.btn-phone {
    background-color: #1877F2; 
}

.btn-top {
    background-color: #ff6b81; /* Pink back-to-top button */
    font-size: 1.2rem;
}




/* --- Base Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}


/* --- Section Layout --- */
.top-rated-section {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 40px;
    font-weight: 600;
}

/* Underline effect for "Companions" */
.section-title .highlight {
    position: relative;
    display: inline-block;
}

.section-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 5%;
    width: 90%;
    height: 3px;
    background-color: #382c54; /* Dark purple matching the theme */
    border-radius: 2px;
}

/* --- Grid System --- */
.companion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

/* --- Card Styling --- */
.companion-card {
    background-color: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.companion-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* --- Image Container & Overlays --- */
.card-image-container {
    position: relative;
    height: 320px;
    width: 100%;
    background-color: #f8f9fa;
}

.card-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.rating-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #ffc107; /* Yellow */
    color: #000;
    font-size: 0.85rem;
    font-weight: bold;
    padding: 4px 8px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-25deg);
    color: #0066ff;
    font-size: 1.8rem;
    font-weight: 800;
    opacity: 0.7;
    pointer-events: none; /* Prevents the text from interfering with image clicks */
    white-space: nowrap;
    text-shadow: 1px 1px 2px rgba(255,255,255,0.5); /* Helps it stand out on dark backgrounds */
}

/* --- Card Details --- */
.card-details {
    padding: 15px;
}

.card-details h3 {
    font-size: 1rem;
    color: #333;
    font-weight: 600;
    margin-bottom: 8px;
}

.pricing {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 15px;
}

/* --- Buttons --- */
.card-buttons {
    display: flex;
    gap: 10px;
}

.card-buttons button {
    flex: 1; /* Makes buttons take up equal space */
    padding: 8px 0;
    border: none;
    border-radius: 20px;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.card-buttons button:hover {
    opacity: 0.85;
}

.btn-view-more {
    background: linear-gradient(90deg, #ff758c 0%, #b359f8 100%); /* Pink to Purple */
}

.btn-view-profile {
    background-color: #6c757d; /* Slate Gray */
}



/* --- Global Resets & Base Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}



.container {
    max-width: 1200px;
    margin: 0 auto;
}

a {
    text-decoration: none;
}

/* --- Promotional Banner --- */
.promo-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to right, #1a2a42 0%, #7e4b78 60%, #e66a93 100%);
    border-radius: 16px;
    overflow: hidden;
    /*padding: 40px;*/
    padding: 1px 30px 1px;
    margin-bottom: 60px;
    color: #ffffff;
    min-height: 250px;
}

.promo-content {
    max-width: 60%;
}

.promo-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.promo-content p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 25px;
    opacity: 0.9;
}

.btn-explore {
    display: inline-block;
    padding: 10px 25px;
    background: linear-gradient(90deg, #ff758c 0%, #b359f8 100%);
    color: #ffffff;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: opacity 0.3s ease;
}

.btn-explore:hover {
    opacity: 0.9;
}

.promo-image {
    max-width: 35%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.promo-image img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- New Arrivals Section --- */
.new-arrivals-section {
    padding: 20px 0;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    color: #1a1a2e;
    margin-bottom: 40px;
    font-weight: 600;
}

/* Underline effect for "Arrivals" */
.section-title .highlight {
    position: relative;
    display: inline-block;
}

.section-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #382c54;
    border-radius: 2px;
}

/* --- Card Grid --- */
.arrivals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

/* --- Individual Cards --- */
.arrival-card {
    position: relative;
    height: 340px;
    border-radius: 12px;
    overflow: hidden;
    background-color: #f0f0f0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.arrival-card:hover {
    transform: translateY(-5px);
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --- Blue Diagonal Watermark --- */
.watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-25deg);
    color: #0066ff;
    font-size: 1.8rem;
    font-weight: 800;
    opacity: 0.75;
    pointer-events: none;
    white-space: nowrap;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.4);
    letter-spacing: 1px;
}

/* --- Card Info & Overlay --- */
.card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 20px 20px 20px;
    background: linear-gradient(to top, rgba(60, 40, 80, 0.95) 0%, rgba(60, 40, 80, 0) 100%);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.card-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

/* --- Green New Arrival Badge --- */
.badge-new {
    background-color: #00c853; /* Vibrant green */
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: capitalize;
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .promo-banner {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    
    .promo-content {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .promo-image {
        max-width: 80%;
        justify-content: center;
    }
}




a {
    text-decoration: none;
}

ul {
    list-style: none;
}

/* --- Footer Main Styles --- */
.site-footer {
    background-color: #4b3d6b; /* Dark purple background matching the image */
    color: #ffffff;
    padding: 60px 0 20px 0;
    border-top: 20px solid #2a1f3d; /* Very dark top border as seen in the image header area */
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Footer Top Columns --- */
.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

/* Specific width for the first column to match the layout */
.brand-col {
    flex: 2;
    max-width: 350px;
    /*max-width: 450px;*/
}

/* --- Logo Styling --- */
.footer-logo {
    margin-bottom: 20px;
}

.footer-logo h2 {
    color: #ffffff;
    font-size: 2.5rem;
    font-style: italic;
    font-family: 'Brush Script MT', cursive;
    font-weight: 400;
}

.footer-logo span {
    color: #df6c94; /* Pinkish color for the second half of the logo */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.5rem;
    font-style: normal;
}

/* --- Typography & Text --- */
.brand-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #ffffff;
}

.col-heading {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #df6c94; /* Pinkish link color */
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* --- Footer Bottom (Divider & Disclaimer) --- */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2); /* Subtle divider line */
    padding-top: 25px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #ffffff;
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        gap: 30px;
    }

    .brand-col {
        max-width: 100%;
    }
}