/* --- General & Modern CSS --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root {
    --primary-color: #0d47a1;
    --secondary-color: #1a237e;
    --accent-color: #ffb74d;
    --text-dark: #212121;
    --text-light: #fafafa;
    --bg-light: #f5f5f5;
    --bg-dark: #121212;
    --card-bg: #212121;
    --link-hover: #ff9800;
    --section-padding: clamp(15px, 3vw, 30px);
}

html {
    scroll-behavior: smooth;
}

body {
    line-height: 1.6;
    background-color: #f0f2f5;
    color: var(--text-dark);
    font-size: 1rem;
    padding: 0 10px;
}

main {
    background-color: transparent;
    max-width: 1240px;
    margin: 10px auto;
    overflow: hidden;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 1.5rem;
}

/* --- H1, H2, and Paragraph Styling --- */
h1, h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    text-align: left !important;
    margin-bottom: 10px !important;
    color: #4CAF50 !important;
    padding: 0 !important;
}

h2 {
    font-size: clamp(2rem, 5vw, 2.5rem);
    color: #2196F3 !important;
}

p {
    text-align: left !important;
    max-width: 100% !important;
    font-size: 1rem !important;
    line-height: 1.8 !important;
    margin-bottom: 10px !important;
}

body p,
.intro-section-1 p,
.disclaimer-section p,
.new-gallery-details p {
    color: #555 !important;
}

.intro-section-2 p,
.intro-section-3 p,
.profile-details p,
.profile-details-custom p,
.faq-section p {
    color: #ccc !important;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: clamp(2rem, 5vw, 2.5rem);
    text-align: center;
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* NEW: Disclaimer Section CSS */
.disclaimer-section {
    background-color: #ffffff;
    color: var(--primary-color);
    padding: 20px 1.5rem;
    text-align: center;
    border-top: 5px solid var(--accent-color);
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.05);
}

.disclaimer-section p {
    font-size: 0.9rem;
    margin: 0 auto;
    max-width: 900px;
    line-height: 1.6;
}
.disclaimer-section p strong {
    color: var(--secondary-color);
}

/* --- Header & Navigation (UPDATED) --- */
.main-header {
    background-color: var(--bg-dark);
    color: var(--text-light);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.75rem 1.5rem;
}

.logo a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

.navbar .nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.navbar .nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 16px;
    padding: 0.5rem 0;
    transition: color 0.3s ease, transform 0.3s ease;
}

.navbar .nav-links a:hover {
    color: var(--link-hover);
    transform: translateY(-2px);
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--bg-dark);
    min-width: 180px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.4);
    z-index: 1;
    border-radius: 5px;
    overflow: hidden;
    top: 100%;
    left: 0;
    transition: all 0.3s ease-in-out;
}

.dropdown-content a {
    color: var(--text-light) !important;
    padding: 10px 15px;
    display: block;
    transition: background-color 0.3s ease;
}

.dropdown-content a:hover {
    background-color: #333;
    color: var(--accent-color) !important;
}

.dropdown:hover .dropdown-content {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 2rem;
    color: var(--text-light);
    transition: transform 0.3s ease;
}

.hamburger.active {
    transform: rotate(90deg);
    color: var(--accent-color);
}

/* --- Marquee/Scrolling Text (Modern CSS) --- */
.scrolling-banner {
    background-color: var(--accent-color);
    padding: 0.5rem 0;
    overflow: hidden;
    white-space: nowrap;
}

.scrolling-text {
    color: var(--text-dark);
    font-size: 0.9rem;
    display: inline-block;
    padding-left: 100%;
    animation: scroll-left 25s linear infinite;
}

@keyframes scroll-left {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-100%); }
}

/* --- Hero Section & Search Bar --- */
.hero-video-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: var(--bg-dark);
}

.video-wrapper {
    position: relative;
    padding-top: 56.25%;
    height: 0;
    overflow: hidden;
}

#hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    z-index: 1;
}

.search-bar-section {
    position: relative;
    z-index: 2;
}

.search-container-flex {
    display: flex;
    justify-content: center;
    align-items: center;
}

.search-box {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 700px;
    height: 50px;
    background: var(--bg-dark);
    border: 1px solid var(--accent-color);
    border-radius: 40px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    margin-top: -25px;
}

.search-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 1.2rem;
    padding: 0 15px;
}

.search-dropdown {
    flex-grow: 1;
    height: 100%;
    border: none;
    outline: none;
    background-color: transparent;
    color: var(--text-light);
    font-size: 1rem;
    padding: 0 10px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
}

.search-dropdown option {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

/* --- New Tags Section CSS --- */
.tag-section, .location-section {
    padding: var(--section-padding) 0;
    text-align: center;
}

.tag-buttons, .location-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
}

.tag-btn, .location-btn {
    padding: 6px 12px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-light);
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tag-btn:hover, .location-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Tag Button Colors */
.tag-btn.c1 { background-color: #f44336; }
.tag-btn.c2 { background-color: #e91e63; }
.tag-btn.c3 { background-color: #9c27b0; }
.tag-btn.c4 { background-color: #673ab7; }
.tag-btn.c5 { background-color: #3f51b5; }
.tag-btn.c6 { background-color: #2196f3; }
.tag-btn.c7 { background-color: #03a9f4; }
.tag-btn.c8 { background-color: #00bcd4; }

/* Location Button Colors */
.location-btn.c9 { background-color: #009688; }
.location-btn.c10 { background-color: #4caf50; }
.location-btn.c11 { background-color: #8bc34a; }
.location-btn.c12 { background-color: #cddc39; }
.location-btn.c13 { background-color: #ffeb3b; color: #333; }
.location-btn.c14 { background-color: #ffc107; color: #333; }
.location-btn.c15 { background-color: #ff9800; }
.location-btn.c16 { background-color: #ff5722; }
.location-btn.c17 { background-color: #795548; }
.location-btn.c18 { background-color: #607d8b; }
.location-btn.c19 { background-color: #9e9e9e; }
.location-btn.c20 { background-color: #4a4a4a; }

/* --- Other Sections & Cards --- */
.intro-section, .profile-section, .faq-section {
    padding: var(--section-padding) 0;
}

/* UPDATED: New Gallery Section CSS */
.new-gallery-section {
    background-color: var(--bg-light);
    padding: var(--section-padding) 0;
}

.new-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 15px;
    justify-content: center;
}

.new-gallery-card {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.new-gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.new-gallery-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.new-gallery-details {
    padding: 10px;
}

.new-gallery-details h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
    color: #333;
}

.new-gallery-details p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

.intro-section-1 {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.section-paragraph {
    max-width: 900px;
    margin: 0 auto 10px;
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.8;
    color: #555;
    text-align: center;
}

/* NEW: Style for the new section */
.intro-section-3 {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.intro-section-3 .section-title {
    color: var(--text-light);
}

.intro-section-3 .section-paragraph {
    color: #ccc;
}

.intro-section-2 {
    background-color: var(--secondary-color);
    color: var(--text-light);
}

.intro-section-2 .section-title {
    color: var(--text-light);
}

.intro-section-2 .section-paragraph {
    color: #ccc;
}

.profile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    margin-top: 15px;
}

.profile-block {
    background-color: var(--card-bg);
    color: var(--text-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.profile-block:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.profile-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.profile-block:hover .profile-image {
    transform: scale(1.05);
}

.profile-details {
    padding: 1rem;
    text-align: left;
}

.profile-details h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.profile-details .profile-bio {
    font-size: 0.95rem;
    color: #b0b0b0;
    margin-bottom: 0.5rem;
}

.profile-buttons {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.profile-buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    padding: 0.6rem 0.8rem;
    border-radius: 5px;
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.call-button { background-color: #ff9800; }
.whatsapp-button { background-color: #25d366; }

/* --- New Custom Profiles Section --- */
.exclusive-profiles-section {
    background-color: #ffffff;
    padding: var(--section-padding) 0;
}

.exclusive-profiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    margin-top: 15px;
}

.profile-card-custom {
    position: relative;
    background-color: #e56d30;
    color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-card-custom:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Fix image size */
.profile-card-custom .profile-image {
    width: 100%;
    height: 250px;
    object-fit: contain;
    display: block;
    background-color: #f0f0f0;
}

.profile-details-custom {
    padding: 10px;
}

.profile-details-custom h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.profile-details-custom p {
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0;
}

.verified-badge {
    position: absolute;
    top: 10px;
    left: -15px;
    background-color: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 5px 25px;
    border-radius: 4px;
    transform: rotate(-45deg);
    z-index: 10;
}

.verified-badge i {
    margin-right: 5px;
    color: #ffc107;
}

/* --- FAQ Section --- */
.faq-section {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.faq-section .section-title {
    color: var(--text-light);
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 0.5rem;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
}

.accordion-button {
    width: 100%;
    text-align: left;
    background-color: var(--card-bg);
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 500;
    padding: 1rem 1.5rem;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-button i {
    transition: transform 0.3s ease;
}

.accordion-button.active i {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
    padding: 0 1.5rem;
}

.accordion-content p {
    padding: 1rem 0;
    color: #ccc;
}

/* --- Footer Section (Revised) --- */
.main-footer {
    background-color: var(--bg-dark);
    color: #b0b0b0;
    padding: 25px 1.5rem;
    text-align: center;
}

.footer-links {
    margin-bottom: 15px;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    margin: 0 10px;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--link-hover);
}

.copyright {
    font-size: 0.9rem;
    color: #888;
}

/* --- Back to Top Button --- */
#back-to-top-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    background-color: var(--primary-color);
    color: var(--text-light);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: background-color 0.3s ease, transform 0.3s ease;
    z-index: 999;
}

#back-to-top-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

/* --- Price Table Styling (UPDATED) --- */
.price-table-container {
    padding: 15px;
    display: flex;
    justify-content: center;
    background-color: #1f2a3a;
}

.price-table {
    border-collapse: collapse;
    width: 100%;
    max-width: 900px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border: 1px solid #4b5563;
    color: #fff;
    background-color: #1f2a3a;
}

.price-table th, .price-table td {
    padding: 10px;
    text-align: center;
    border: 1px solid #4b5563;
}

.price-table th {
    background-color: #f59e0b;
    font-size: 1.2em;
    font-weight: bold;
}

.price-table thead th:first-child {
    background-color: #f59e0b;
}

.price-table tbody tr:nth-child(even) {
    background-color: #2d3748;
}

.price-table tbody tr:nth-child(odd) {
    background-color: #1f2a3a;
}

.price-table td:first-child {
    text-align: left;
    font-weight: bold;
}

/* --- Responsive Styles for Mobile Table (UPDATED) --- */
@media (max-width: 768px) {
    /* Mobile Menu fix and style */
    .navbar {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: var(--bg-dark);
        position: absolute;
        top: 100%;
        left: 0;
        transform: translateY(-100%);
        transition: transform 0.4s ease-in-out;
    }

    .navbar.active {
        display: flex;
        transform: translateY(0);
    }

    .hamburger {
        display: block;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding: 15px 0;
        background: linear-gradient(180deg, var(--bg-dark), #1a1a1a);
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        margin: 5px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        padding: 10px 0;
        display: block;
        transition: background-color 0.3s ease, color 0.3s ease;
    }

    .nav-links a:hover {
        background-color: #2a2a2a;
        color: var(--accent-color);
    }

    /* Mobile dropdown fix and style */
    .dropdown {
        position: static;
        width: 100%;
    }

    .dropdown-content {
        position: static;
        display: none;
        width: 100%;
        background-color: #1a1a1a;
        box-shadow: none;
        border-radius: 0;
        padding-bottom: 5px;
    }

    .dropdown.active .dropdown-content {
        display: block;
    }

    .dropdown-content a {
        padding: 8px 0;
        background-color: transparent !important;
    }

    .dropdown-content a:hover {
        background-color: #333 !important;
    }

    .dropdown > a {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .price-table thead {
        display: none;
    }

    .price-table, .price-table tbody, .price-table tr, .price-table td {
        display: block;
        width: 100%;
    }

    .price-table tr {
        margin-bottom: 10px;
        border: 1px solid #4b5563;
        border-radius: 8px;
        overflow: hidden;
    }

    .price-table td {
        text-align: right !important;
        position: relative;
        padding-left: 50%;
    }

    .price-table td::before {
        content: attr(data-label);
        position: absolute;
        left: 0;
        width: 50%;
        padding-left: 15px;
        text-align: left;
        font-weight: bold;
        color: #fff;
        background-color: #1f2a3a;
    }

    .price-table tr:nth-child(1) td:first-child::before { content: "Service Type"; background-color: transparent;}
    .price-table tr:nth-child(1) td:nth-child(2)::before { content: "2 Hours"; }
    .price-table tr:nth-child(1) td:nth-child(3)::before { content: "4 Hours"; }
    .price-table tr:nth-child(1) td:nth-child(4)::before { content: "Full Night"; }
    
    .price-table tr:nth-child(2) td:first-child::before { content: "Service Type"; background-color: transparent;}
    .price-table tr:nth-child(2) td:nth-child(2)::before { content: "2 Hours"; }
    .price-table tr:nth-child(2) td:nth-child(3)::before { content: "4 Hours"; }
    .price-table tr:nth-child(2) td:nth-child(4)::before { content: "Full Night"; }
    
    .price-table tr:nth-child(3) td:first-child::before { content: "Service Type"; background-color: transparent;}
    .price-table tr:nth-child(3) td:nth-child(2)::before { content: "2 Hours"; }
    .price-table tr:nth-child(3) td:nth-child(3)::before { content: "4 Hours"; }
    .price-table tr:nth-child(3) td:nth-child(4)::before { content: "Full Night"; }

    .price-table tr:nth-child(4) td:first-child::before { content: "Service Type"; background-color: transparent;}
    .price-table tr:nth-child(4) td:nth-child(2)::before { content: "2 Hours"; }
    .price-table tr:nth-child(4) td:nth-child(3)::before { content: "4 Hours"; }
    .price-table tr:nth-child(4) td:nth-child(4)::before { content: "Full Night"; }
}

@media (min-width: 769px) {
    .profile-grid {
        grid-template-columns: 1fr 1fr;
    }

    .profile-block {
        display: flex;
        flex-direction: row;
        min-height: 250px;
        text-align: left;
    }

    .profile-image {
        width: 40%;
        height: 100%;
        object-fit: cover;
    }

    .profile-details {
        width: 60%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
    }
}

/* NEW: Responsive Image class */
.responsive-img {
    max-width: 100%;
    height: auto;
    display: block;
}