* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0a0a0a;
    color: #f1f1f1;
}

.navbar {
    background: #0a0a0a;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    border-bottom: 1px solid #333;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo h2 {
    color: #ff4444;
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-menu a {
    color: #ff4444;
    text-decoration: none;
    font-size: 1.1rem;
}

.hamburger {
    font-size: 28px;
    color: #ff4444;
    cursor: pointer;
    display: none;
}

/* Mobile */
@media (max-width: 768px) {
    .hamburger { display: block; }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: #0a0a0a;
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
        gap: 30px;
        transition: 0.4s;
    }
    
    .nav-menu.active {
        left: 0;
    }
}

/* Hero */
.hero {
    background: linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.9)), 
                url('img/banner.jpg') center/cover no-repeat fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    margin-top: 70px;
}

/* Rest of your previous CSS remains same */
.hero-content, .gallery-section, .rates-section, footer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Previous styles (hero-content, call-btn, gallery etc.) */
.tagline { font-size: 2.2rem; color: #ff4444; margin: 15px 0; }
.areas { font-size: 1.4rem; margin-bottom: 40px; color: #ddd; }

.call-btn {
    background-color: #dc2626;
    color: white;
    font-size: 1.6rem;
    font-weight: bold;
    padding: 18px 50px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 20px rgba(220, 38, 38, 0.4);
}

.call-btn:hover { background-color: #b91c1c; transform: scale(1.05); }

/* Gallery */
.gallery-section {
    padding: 25px 20px;
    background-color: #111;
    text-align: center;
}

.gallery-section h2 {
    font-size: 2.8rem;
    margin-bottom: 50px;
    color: #ff4444;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 10px;
}

.girl-card {
    background-color: #1a1a1a;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.girl-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
}

.girl-card img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

.girl-info {
    padding: 18px;
    text-align: center;
}

.girl-info h3 {
    font-size: 1.55rem;
    margin-bottom: 4px;
}

.girl-info p {
    color: #aaa;
}

/* Rates Section */
.rates-section {
    padding: 25px 20px;
    background-color: #111111;
    text-align: center;
}

.rates-container {
    max-width: 900px;
    margin: 0 auto;
}

.rates-section h2 {
    font-size: 2.8rem;
    margin-bottom: 40px;
    color: #ff4444;
}

.rates-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.rates-table th, .rates-table td {
    padding: 22px 15px;
    text-align: center;
    border-bottom: 1px solid #333;
}

.rates-table th {
    background-color: #222222;
    font-size: 1.25rem;
    color: #ffdddd;
}

.rates-table td {
    font-size: 1.3rem;
}

.rates-table tr:last-child td {
    border-bottom: none;
}

.rates-table strong {
    color: #ff6666;
    font-size: 1.4rem;
}

.note {
    margin-top: 30px;
    font-size: 1.1rem;
    color: #aaa;
    font-style: italic;
}

/* City Pages - 1 Row 4 Columns */
.footer-links {
    margin-bottom: 50px;
}

.footer-links h3 {
    text-align: center;
    color: #ff8888;
    margin-bottom: 25px;
    font-size: 1.6rem;
}

.city-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);   /* 4 Columns */
    gap: 15px;
    max-width: 1100px;
    margin: 0 auto;
}

.city-grid a {
    background-color: #1f1f1f;
    color: #ddd;
    text-decoration: none;
    padding: 16px 10px;
    border-radius: 10px;
    text-align: center;
    font-size: 1.05rem;
    transition: all 0.3s;
}

.city-grid a:hover {
    background-color: #ff4444;
    color: white;
    transform: translateY(-3px);
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .city-grid {
        grid-template-columns: repeat(2, 1fr);   /* 2 Columns on tablet */
    }
}

@media (max-width: 600px) {
    .city-grid {
        grid-template-columns: 1fr;   /* 1 Column on mobile */
    }
}

/* Mobile Responsive Navbar */
@media (max-width: 768px) {
    .hamburger { display: block; }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: #0a0a0a;
        flex-direction: column;
        align-items: center;
        justify-content: start;
        padding-top: 50px;
        transition: 0.4s;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero h1 { font-size: 3rem; }
    .tagline { font-size: 1.8rem; }
}
/* New Content Section */
.content-section {
    background-color: #111111;
    text-align: center;
}

.content-container {
    max-width: 1000px;
    margin: 0 auto;
}

.content-section h1 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: #ff4444;
}

.content-section p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #ccc;
    line-height: 1.8;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.feature-item {
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
}

.feature-item i {
    color: #ff4444;
    font-size: 1.5rem;
}
/* H2 Content Section */
.h2-content-section {
    
    background-color: #0f0f0f;
    text-align: center;
}

.h2-content-section .content-container {
    max-width: 1100px;
    margin: 0 auto;
}

.h2-content-section h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: #ff4444;
}

.h2-content-section > p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 50px;
    color: #ccc;
    line-height: 1.8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.feature-box {
    background-color: #1a1a1a;
    padding: 30px 20px;
    border-radius: 12px;
    transition: 0.3s;
}

.feature-box:hover {
    background-color: #222;
    transform: translateY(-5px);
}

.feature-box h3 {
    color: #ff6666;
    margin-bottom: 12px;
    font-size: 1.35rem;
}
/* H3 Content Section */
.h3-content-section {
    padding: 25px 20px;
    background-color: #0a0a0a;
    text-align: center;
}

.h3-content-section .content-container {
    max-width: 1100px;
    margin: 0 auto;
}

.h3-content-section h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #ff4444;
}

.h3-content-section > p {
    font-size: 1.25rem;
    color: #ccc;
    max-width: 700px;
    margin: 0 auto 50px;
}
/* FAQ Section */
.faq-section {
    padding: 25px 20px;
    background-color: #111;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.6rem;
    margin-bottom: 50px;
    color: #ff4444;
}

.faq-item {
    background-color: #1a1a1a;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 12px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item h4 {
    color: #ff6666;
    margin-bottom: 12px;
    font-size: 1.3rem;
}

/* Reviews Section */
.reviews-section {
    padding: 25px 20px;
    background-color: #0a0a0a;
    text-align: center;
}

.reviews-section h2 {
    font-size: 2.6rem;
    margin-bottom: 50px;
    color: #ff4444;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    background-color: #1a1a1a;
    padding: 35px 25px;
    border-radius: 15px;
    text-align: left;
}

.review-card p {
    font-size: 1.15rem;
    font-style: italic;
    margin-bottom: 20px;
    color: #ddd;
}

.review-card h4 {
    color: #ff8888;
    font-size: 1.1rem;
}
/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.float-btn {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
}

.float-btn:hover {
    transform: scale(1.15);
}

.call-btn {
    background: linear-gradient(135deg, #ff0000, #cc0000);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
}
/* Services Section with Icons */
.services-section {
    padding: 25px 20px;
    background-color: #111111;
    text-align: center;
}

.services-section h2 {
    font-size: 2.7rem;
    margin-bottom: 15px;
    color: #ff4444;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #aaa;
    max-width: 700px;
    margin: 0 auto 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background-color: #1a1a1a;
    padding: 40px 25px;
    border-radius: 16px;
    transition: all 0.4s;
}

.service-card:hover {
    transform: translateY(-15px);
    background-color: #222;
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: block;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ffdddd;
}

.service-card p {
    color: #ccc;
    line-height: 1.7;
}
/* 18+ Age Gate */
.age-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    color: white;
    text-align: center;
}

.age-gate-content {
    max-width: 600px;
    padding: 40px 20px;
}

.age-gate h1 {
    font-size: 4.5rem;
    color: #ff4444;
    margin-bottom: 20px;
}

.warning {
    font-size: 1.4rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

.age-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
}

.btn-exit, .btn-enter {
    padding: 16px 40px;
    font-size: 1.3rem;
    font-weight: bold;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-exit {
    background-color: #444;
    color: white;
}

.btn-exit:hover {
    background-color: #222;
}

.btn-enter {
    background-color: #ff4444;
    color: white;
}

.btn-enter:hover {
    background-color: #cc0000;
    transform: scale(1.1);
}

.disclaimer-small {
    font-size: 0.95rem;
    color: #888;
}
/* Why Choose Us Section with Bullet List */
.why-choose-section {
    background: linear-gradient(135deg, #1a1a1a, #111111);
    text-align: center;
}

.why-choose-section h2 {
    font-size: 1.8rem;
    color: #ff4444;
    margin-bottom: 20px;
}

.subtitle {
    font-size: 1.3rem;
    color: #ccc;
    max-width: 700px;
    margin: 0 auto 40px;
}

.features-list {
    max-width: 700px;
    margin: 0 auto 50px;
    text-align: left;
    display: inline-block;
}

.features-list li {
    font-size: 1.2rem;
    padding: 12px 0;
    color: #ddd;
    position: relative;
    padding-left: 35px;
}

.features-list li::before {
    content: "✔";
    color: #ff4444;
    position: absolute;
    left: 0;
    font-size: 1.4rem;
}

.bottom-text {
    font-size: 1.25rem;
    color: #ddd;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
}
/* H4 Content Section */
.h4-content-section {
    padding: 25px 20px;
    background-color: #111111;
    text-align: center;
}

.h4-content-section h4 {
    font-size: 1.6rem;
    color: #ff4444;
    margin-bottom: 15px;
}

.subtitle {
    font-size: 1.3rem;
    color: #ccc;
    max-width: 700px;
    margin: 0 auto 50px;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

.type-card {
    background-color: #1a1a1a;
    border-radius: 15px;
    transition: 0.4s;
}

.type-card:hover {
    transform: translateY(-10px);
    background-color: #222222;
}

.type-card h5 {
    font-size: 1.4rem;
    color: #ff6699;
    margin-bottom: 15px;
}

.type-card p {
    color: #bbb;
    line-height: 1.7;
}
/* Contact Form Section */
.contact-section {
    padding: 90px 20px;
    background-color: #0f0f0f;
    text-align: center;
}

.contact-section h2 {
    font-size: 2.8rem;
    color: #ff4444;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.3rem;
    color: #ccc;
    margin-bottom: 50px;
}

.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 10px;
    color: white;
    font-size: 1.1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #ff4444;
    outline: none;
}

.submit-btn {
    background-color: #ff4444;
    color: white;
    padding: 18px 40px;
    font-size: 1.3rem;
    font-weight: bold;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    margin-top: 10px;
    transition: 0.3s;
}

.submit-btn:hover {
    background-color: #cc0000;
    transform: scale(1.05);
}

.contact-info {
    margin-top: 50px;
    font-size: 1.3rem;
}

.contact-info a {
    color: #ff6666;
    text-decoration: none;
}