body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000;
    color: #fff;
}

.navbar {
    background-color: #54005e;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.logo {
    font-size: 1.5em;
    font-style: italic;
    color: #d32f2f;
}

.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #ff69b4;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    height: 4px;
    width: 30px;
    background-color: white;
    margin: 5px 0;
    transition: 0.4s;
}

header {
    position: relative;
    margin-top: 70px;
    text-align: center;
}

.banner-video {
    width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #000;
}

h1 {
    color: #fff;
    text-align: center;
    margin-top: 20px; /* Space after video */
}

h2 {
    color: #fff;
}

.services-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    color: #fff;
}

.services-table th, .services-table td {
    border: 1px solid #333;
    padding: 8px;
    text-align: center;
}

.services-table th {
    background-color: #54005e;
}

.profiles {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 20px 0;
}

.profile-card {
    background: #000;
    border: none;
    border-radius: 8px;
    text-align: center;
    padding: 0;
    position: relative;
}

.image-wrapper {
    position: relative;
}

.profile-card img {
    width: 100%;
    height: auto;
    border-radius: 8px 8px 0 0;
}

.watermark {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #d32f2f;
    font-size: 1.2em;
    font-weight: bold;
    text-shadow: 1px 1px 2px #000;
}

.profile-card h3 {
    color: #fff;
    margin: 10px 0 5px;
}

.stars {
    color: #ffd700;
    margin: 0;
    font-size: 1.2em;
}

.contact-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
	 justify-content: center;
    gap: 10px;
    background-color: #000; /* Match theme */
    padding: 10px 0;
    z-index: 1000;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.2);
}

.btn {
    padding: 12px 25px;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: transform 0.2s;
}

.btn:hover {
    transform: scale(1.05);
}

.call { background-color: #4caf50; }
.whatsapp { background-color: #25d366; }


footer {
    background-color: #000;
    color: white;
    text-align: center;
    padding: 20px 10px 70px; /* Space for fixed buttons */
    border-top: 1px solid #333;
}

footer a {
    color: #ffeb3b;
    text-decoration: none;
    margin: 0 5px;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 70px;
        left: 0;
        background-color: #000;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        text-align: center;
        margin: 20px 0;
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .profiles {
        grid-template-columns: 1fr;
    }

    .contact-buttons {
        flex-direction: row; /* Keep row if space allows, or column if needed */
        gap: 5px;
        padding: 5px;
    }

    .btn {
        padding: 8px 15px; /* Smaller on mobile */
    }

    h1 {
        font-size: 1.5em;
    }
}
/* ... previous styles ... */

.models-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    color: #fff;
}

.models-table th {
    background-color: #d32f2f; /* Red header */
    color: white;
    padding: 10px;
    text-align: left;
}

.models-table td {
    background-color: #000;
    padding: 10px;
    border-bottom: 1px solid #333; /* Subtle row separator */
    text-align: left;
}
/* ... previous styles ... */

.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
}

.faq-item h3 {
    color: #ff69b4;
    cursor: pointer; /* For potential accordion */
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.testimonial-card {
    background: #222;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.testimonial-card p {
    font-style: italic;
}

.testimonial-card h4 {
    margin: 10px 0;
    color: #fff;
}

.testimonial-card .stars {
    color: #ffd700;
}
/* ... previous styles ... */

footer {
    background-color: #000;
    color: white;
    text-align: center;
    padding: 20px 10px 70px; /* Space for buttons */
    border-top: 1px solid #333;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.locations-grid a {
    color: #ffffff; /* Goldish */
    text-decoration: none;
    font-weight: bold;
    background-color: #54005e; /* Darker bg for each cell */
    padding: 10px;
    border-radius: 4px;
    display: block;
}

.locations-grid a:hover {
    background-color: #222;
}

@media (max-width: 768px) {
    .locations-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on mobile */
    }
}
.gallery {
            display: flex;
            flex-direction: column;
            gap: 20px;
            align-items: center;
        }
        .card {
            width: 100%;
            max-width: 800px;
            display: flex;
            flex-direction: row;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            transition: transform 0.3s;
            background: #54005e;
        }
        .card:hover {
            transform: scale(1.05);
        }
        .card img {
            width: 40%;
            height: auto;
            object-fit: cover;
        }
        .card-details {
            width: 60%;
            padding: 15px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .card-name {
            font-size: 1.2em;
            margin: 5px 0;
        }
        .card-rating {
            color: #ffc107;
            margin: 5px 0;
        }
        .card-content {
            font-size: 0.9em;
            color: #ffffff;
            margin: 10px 0;
        }
        .card-info {
            display: flex;
            justify-content: flex-start;
            gap: 10px;
            margin: 10px 0;
        }
        .card-info button {
            padding: 8px 12px;
            border: none;
            border-radius: 20px;
            color: white;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 0.9em;
        }
        .location-btn {
            background: #2196f3;
        }
        .age-btn {
            background: #ff9800;
        }
        .online-btn {
            background: #4caf50;
        }
        .online-btn i {
            color: #fff;
        }
        .card-actions {
            display: flex;
            justify-content: flex-start;
            gap: 20px;
            padding: 10px 0;
        }
        .card-actions a {
            color: #fbf8f8;
            text-decoration: none;
            font-weight: bold;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        .card-actions a:hover {
            color: #c2185b;
        }
        @media (max-width: 768px) {
            .card {
                flex-direction: column;
                align-items: center;
            }
            .card img {
                width: 100%;
            }
            .card-details {
                width: 100%;
                text-align: center;
            }
            .card-info {
                justify-content: center;
            }
            .card-actions {
                justify-content: center;
            }
        }
		/* Tags Section */
        .tags-section {
            margin-bottom: 20px;
        }
        .tag {
            display: inline-block;
            background-color: #54005e;
            padding: 5px 10px;
            margin: 5px;
            border-radius: 5px;
            font-size: 14px;
        }
        .tag i {
            margin-right: 5px;
        }
        /* Location Tag */
        .location-tag {
            display: inline-block;
            background-color: #4CAF50;
            color: white;
            padding: 10px 15px;
            border-radius: 5px;
            font-size: 16px;
            margin: 5px;
        }
        .location-tag i {
            margin-right: 8px;
        }
        /* Locations Section */
        .locations-section {
            margin-bottom: 20px;
        }
	/* ====================== Rate Table ====================== */
.rates-table {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    border-collapse: collapse;
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(217, 30, 24, 0.4);
}

.rates-table th {
    background: #54005e;
    color: white;
    padding: 18px 15px;
    font-size: 1.1rem;
    text-align: center;
    font-weight: 600;
}

.rates-table td {
    padding: 18px 15px;
    text-align: center;
    border-bottom: 1px solid #333;
    color: #e0e0e0;
    font-size: 1.02rem;
}

.rates-table tr:last-child td {
    border-bottom: none;
}

.rates-table tr:hover {
    background: rgba(255, 51, 102, 0.1);
}

.rates-table td strong {
    color: var(--gold);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .rates-table th,
    .rates-table td {
        padding: 14px 8px;
        font-size: 0.95rem;
    }
    
    .rates-table {
        font-size: 0.92rem;
    }
}	