* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #0F0F0F;
    color: #F0F0F0;
    line-height: 1.6;
}

/* Navbar */
.navbar {
    background: rgba(15, 15, 15, 0.98);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #333;
}

.logo {
    font-size: 2.2rem;
    color: #FFD700;
    font-weight: bold;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #FFD700;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.2rem;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #FFD700;
}

.call-btn {
    background: #C8102E;
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
}

/* Hero */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(15,15,15,0.75), rgba(15,15,15,0.75)), 
                url('images/rkescorts-banner.webp') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-content h1 {
    font-size: 3.4rem;
    margin-bottom: 1rem;
}

.hero-content h1 span {
    color: #C8102E;
}

.price {
    font-size: 1.8rem;
    color: #FFD700;
    margin: 20px 0;
}

.cta-btn {
    background: #C8102E;
    color: white;
    padding: 18px 55px;
    font-size: 1.4rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
    transition: all 0.4s;
}

.cta-btn:hover {
    background: #FFD700;
    color: #0F0F0F;
    transform: scale(1.05);
}

/* Section Common */
.section {
    padding: 80px 8%;
    text-align: center;
}

.section h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #FFD700;
}

/* Categories & Profiles Grid */
.categories-grid, .profiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 75px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 75px);
        background: #0F0F0F;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 50px;
        gap: 30px;
        transition: 0.4s ease;
        z-index: 999;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .hero-content h1 {
        font-size: 2.6rem;
    }
}

/* Two Column Content Section */
.content-section {
    padding: 100px 8%;
    background: #03002e;
}

.container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

.left-column h1 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    color: #FFD700;
}

.left-column p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: #CCCCCC;
}

.features {
    list-style: none;
    margin: 30px 0;
}

.features li {
    padding: 10px 0;
    font-size: 1.15rem;
}

.right-column img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(200, 16, 46, 0.4);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .left-column h1 {
        font-size: 2.2rem;
    }
}
/* Profiles Section */
.profiles-section {
    padding: 80px 8%;
    background: #0F0F0F;
}

.section-header h2 {
    font-size: 2.8rem;
    color: #FFD700;
    margin-bottom: 10px;
}

.profiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.profile-card {
    background: #03002e;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s;
    border: 1px solid #333;
}

.profile-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 35px rgba(200, 16, 46, 0.5);
}

.profile-card img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

.profile-info {
    padding: 20px;
}

.profile-info h3 {
    color: #FFD700;
    margin-bottom: 5px;
}

.profile-info .age {
    color: #C8102E;
    font-weight: bold;
}

.profile-info .category {
    color: #aaa;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.profile-desc {
    font-size: 0.98rem;
    line-height: 1.5;
    color: #ddd;
    margin-bottom: 18px;
}

.book-btn {
    background: #C8102E;
    color: white;
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.book-btn:hover {
    background: #FFD700;
    color: #0F0F0F;
}
.content-section {
    padding: 100px 8%;
    background: #03002e;
}

.container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

.left-column h2 {
    font-size: 2.8rem;
    color: #FFD700;
    margin-bottom: 15px;
}

.left-column h3 {
    font-size: 1.8rem;
    color: #C8102E;
    margin: 25px 0 15px 0;
}

.left-column p {
    font-size: 1.15rem;
    color: #CCCCCC;
    margin-bottom: 20px;
}

.features {
    list-style: none;
    margin: 25px 0;
}

.features li {
    padding: 8px 0;
    font-size: 1.1rem;
}

.right-column img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(200, 16, 46, 0.4);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .left-column h2 {
        font-size: 2.3rem;
    }
}
/* Content Section - Single Column */
.content-section {
    padding: 90px 8%;
    background: #03002e;
    text-align: center;
}

.content-container {
    max-width: 1000px;
    margin: 0 auto;
}

.content-container h2 {
    font-size: 2.8rem;
    color: #FFD700;
    margin-bottom: 20px;
}

.content-container h3 {
    font-size: 1.9rem;
    color: #C8102E;
    margin: 35px 0 15px 0;
}

.content-container p {
    font-size: 1.15rem;
    color: #CCCCCC;
    margin-bottom: 25px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.features-list {
    list-style: none;
    display: inline-block;
    text-align: left;
    margin: 30px 0;
}

.features-list li {
    padding: 10px 0;
    font-size: 1.1rem;
    color: #ddd;
}

.content-container .cta-btn {
    margin-top: 30px;
}
/* Services Section */
.services-section {
    padding: 80px 8%;
    background: #111;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.8rem;
    color: #FFD700;
    margin-bottom: 10px;
}

.section-header p {
    font-size: 1.2rem;
    color: #aaa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.service-card {
    background: #03002e;
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.4s;
    border: 1px solid #333;
}

.service-card:hover {
    transform: translateY(-12px);
    border-color: #C8102E;
    box-shadow: 0 15px 30px rgba(200, 16, 46, 0.3);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.service-card h3 {
    color: #FFD700;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.service-card p {
    color: #ccc;
    line-height: 1.6;
}
/* Categories Section */
.categories-section {
    padding: 80px 8%;
    background: #03002e;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.category-card {
    background: #111;
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.category-card:hover {
    transform: translateY(-10px);
    border-color: #C8102E;
    background: #222;
}

.circle-icon {
    width: 90px;
    height: 90px;
    background: #C8102E;
    color: white;
    font-size: 2.8rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 20px rgba(200, 16, 46, 0.4);
}

.category-card h3 {
    color: #FFD700;
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.category-card p {
    color: #ccc;
    font-size: 1rem;
}
/* Gallery Section */
.gallery-section {
    padding: 80px 8%;
    background: #0F0F0F;
}

.carousel-container {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    overflow: hidden;
}

.carousel {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
}

.gallery-card {
    min-width: 280px;
    background: #03002e;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.6);
}

.gallery-card img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(15,15,15,0.95));
    padding: 25px 15px 20px;
    text-align: center;
    color: white;
}

.gallery-card h3 {
    color: #FFD700;
    margin-bottom: 5px;
}

.gallery-card .info {
    color: #C8102E;
    font-weight: bold;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(200, 16, 46, 0.85);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 10;
    transition: 0.3s;
}

.carousel-btn:hover {
    background: #FFD700;
    color: #0F0F0F;
}

.prev-btn { left: 10px; }
.next-btn { right: 10px; }

/* Mobile Responsive */
@media (max-width: 768px) {
    .gallery-card {
        min-width: 240px;
    }
    .gallery-card img {
        height: 320px;
    }
}
/* Single Column Content Section */
.content-section-single {
    padding: 80px 8%;
    background: #03002e;
    text-align: center;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.content-wrapper h2 {
    font-size: 2.4rem;
    color: #FFD700;
    margin-bottom: 15px;
}
.content-wrapper h3 {
    font-size: 2.1rem;
    color: #C8102E;
    margin-bottom: 15px;
}
.content-wrapper h4 {
    font-size: 2.0rem;
    color: #C8102E;
    margin-bottom: 15px;
}

.content-wrapper h5 {
    font-size: 1.85rem;
    color: #C8102E;
    margin: 35px 0 15px 0;
}

.content-wrapper h6 {
    font-size: 1.5rem;
    color: #ddd;
    margin: 25px 0 12px 0;
}

.content-wrapper p {
    font-size: 1.15rem;
    color: #CCCCCC;
    margin-bottom: 20px;
}

.content-wrapper ul {
    list-style: none;
    display: inline-block;
    text-align: left;
    margin: 20px 0;
}

.content-wrapper ul li {
    padding: 8px 0;
    font-size: 1.1rem;
}
.tag-card {
    transition: all 0.3s ease;
}

.tag-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(200, 16, 46, 0.3);
}
/* Features / Tag Section */
.features-section {
    padding: 80px 8%;
    background: #111111;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 40px auto 0;
}

.feature-tag {
    background: #03002e;
    padding: 30px 20px;
    border-radius: 15px;
    transition: all 0.4s ease;
    border: 1px solid #333;
}

.feature-tag:hover {
    transform: translateY(-8px);
    border-color: #C8102E;
    box-shadow: 0 10px 25px rgba(200, 16, 46, 0.3);
}

.tag-icon {
    font-size: 3rem;
    margin-bottom: 18px;
    display: block;
}

.feature-tag h4 {
    color: #FFD700;
    margin-bottom: 12px;
    font-size: 1.35rem;
}

.feature-tag p {
    color: #CCCCCC;
    font-size: 1.05rem;
}
/* Premium Rate Table */
.rates-section {
    padding: 80px 8%;
    background: #0F0F0F;
    text-align: center;
}

.rate-table-container {
    max-width: 900px;
    margin: 40px auto;
}

.rate-table {
    width: 100%;
    border-collapse: collapse;
    background: #03002e;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

.rate-table th,
.rate-table td {
    padding: 18px 15px;
    text-align: center;
    border-bottom: 1px solid #333;
}

.rate-table th {
    background: #C8102E;
    color: white;
    font-size: 1.2rem;
}

.rate-table tr:hover {
    background: #222;
}

.rate-table td strong {
    color: #FFD700;
}

.rate-table td:first-child {
    text-align: left;
    font-weight: 500;
    color: #ddd;
}

.note {
    margin-top: 25px;
    color: #aaa;
    font-size: 1rem;
    font-style: italic;
}
/* FAQ Section */
.faq-section {
    padding: 80px 8%;
    background: #0F0F0F;
}

.faq-controls {
    text-align: center;
    margin-bottom: 40px;
}

.faq-btn {
    padding: 12px 25px;
    margin: 0 10px;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    cursor: pointer;
}

.expand-btn {
    background: #C8102E;
    color: white;
}

.collapse-btn {
    background: #333;
    color: #FFD700;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.faq-item {
    background: #03002e;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #333;
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: transparent;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0 20px 20px;
    color: #ccc;
    display: none;
    line-height: 1.6;
}

.faq-question.active + .faq-answer {
    display: block;
}

/* Mobile */
@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}
/* Reviews Section */
.reviews-section {
    padding: 80px 8%;
    background: #111;
    text-align: center;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto 0;
}

.review-card {
    background: #03002e;
    padding: 35px 25px;
    border-radius: 15px;
    border: 1px solid #333;
    transition: all 0.4s;
    height: 100%;
}

.review-card:hover {
    transform: translateY(-10px);
    border-color: #C8102E;
    box-shadow: 0 15px 30px rgba(200, 16, 46, 0.3);
}

.stars {
    font-size: 1.8rem;
    color: #FFD700;
    margin-bottom: 20px;
}

.review-text {
    font-size: 1.1rem;
    color: #CCCCCC;
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
}

.reviewer {
    color: #aaa;
    font-size: 0.95rem;
}

.reviewer strong {
    color: #FFD700;
}
/* Contact Section */
.contact-section {
    padding: 80px 8%;
    background: #0F0F0F;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.map-column, .form-column {
    background: #03002e;
    padding: 30px;
    border-radius: 15px;
}

.map-column h3, .form-column h3 {
    color: #FFD700;
    margin-bottom: 20px;
}

.form-column input,
.form-column textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    background: #222;
    border: 1px solid #444;
    border-radius: 8px;
    color: white;
    font-size: 1rem;
}

.form-column input:focus,
.form-column textarea:focus {
    border-color: #C8102E;
    outline: none;
}

.submit-btn {
    background: #C8102E;
    color: white;
    padding: 16px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    cursor: pointer;
    width: 100%;
    margin-top: 10px;
    transition: 0.4s;
}

.submit-btn:hover {
    background: #FFD700;
    color: #0F0F0F;
}

.contact-info {
    margin-top: 25px;
    color: #ccc;
    font-size: 1.1rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
/* Footer */
.footer {
    background: #0A0A0A;
    color: #aaa;
    padding: 60px 8% 20px;
    border-top: 1px solid #333;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-column h4 {
    color: #FFD700;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #C8102E;
}

.footer-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #222;
    color: #777;
    font-size: 0.95rem;
}

/* Mobile */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
/* Very Compact Spacing */
.section, 
.hero, 
.content-section, 
.content-section-single, 
.services-section, 
.categories-section, 
.profiles-section, 
.gallery-section, 
.rates-section, 
.reviews-section, 
.faq-section, 
.contact-section {
    padding: 40px 8% !important;
}

/* First Hero Section ko thoda bada rakh sakte hain */
.hero {
    padding: 0 !important;
    height: 90vh;
}
/* 1. Unvisited link */
a:link {
  color: #CCCCCC;
text-decoration:none;  
}

/* 3. Mouse hover */
a:hover {
  color: #FFD700; 
}

.book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    /* baaki aapka existing style */
}
