* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background: url('../images/background-bg.webp') center/cover no-repeat fixed;
    color: #fff;
    line-height: 1.6;
}

/* Navbar */
.navbar {
    background: #1a1233;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    flex-wrap: wrap;
}

.logo {
    font-size: 26px;
    font-weight: bold;
    color: #ff2d95;
}
.logo span { color: #fff; }

.navbar ul {
    list-style: none;
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.navbar ul li {
    cursor: pointer;
    transition: 0.3s;
    padding: 5px 0;
}
.navbar ul li:hover { color: #ff2d95; }

.age-warning {
    background: #ff2d95;
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: bold;
    white-space: nowrap;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.85)), 
                url('../images/juhijain-banner.jpg') center/cover;
    text-align: center;
    padding: 120px 20px 80px;
}

.hero h1 {
    font-size: 3.2rem;
    margin-bottom: 15px;
    color: #ff2d95;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 25px;
}

.search-box {
    max-width: 90%;
    margin: 0 auto;
    display: flex;
    background: #fff;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.search-box input {
    flex: 1;
    border: none;
    padding: 18px 20px;
    font-size: 1.1rem;
    color: #000;
    outline: none;
}

.search-box button {
    background: #ff2d95;
    color: #fff;
    border: none;
    padding: 0 30px;
    font-size: 1.1rem;
    cursor: pointer;
}

/* Categories & Areas */
.categories, .areas {
    padding: 60px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

h2 {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 40px;
    color: #ff2d95;
}

h4 {
    font-size: 1.5rem;
    margin: 12px 0;
	color: #ff2d95;
}

.category-grid, .area-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.category-card, .area-card {
    background: #1a1233;
    border-radius: 20px;
    padding: 25px 20px;
    text-align: center;
    transition: 0.4s;
    cursor: pointer;
    border: 2px solid transparent;
}

.category-card:hover, .area-card:hover {
    transform: translateY(-10px);
    border-color: #ff2d95;
    box-shadow: 0 15px 30px rgba(255, 45, 149, 0.3);
}

.category-card h3 {
    font-size: 1.5rem;
    margin: 12px 0;
	color: #ff2d95;
}

footer {
    text-align: center;
    padding: 30px 10px;
    background: #0a0719;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ====================== MOBILE RESPONSIVE ====================== */

@media (max-width: 768px) {
    .navbar {
        padding: 12px 5%;
    }
    
    .navbar ul {
        gap: 15px;
        font-size: 0.95rem;
    }

    .hero {
        padding: 90px 15px 60px;
    }
    
    .hero h1 {
        font-size: 2.4rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }

    h2 {
        font-size: 2rem;
    }

    .search-box input {
        padding: 15px 15px;
        font-size: 1rem;
    }
    
    .search-box button {
        padding: 0 25px;
    }

    .category-card, .area-card {
        padding: 20px 15px;
    }
}

@media (max-width: 480px) {
    .navbar {
        flex-direction: column;
        gap: 12px;
    }
    
    .navbar ul {
        justify-content: center;
        width: 100%;
    }

    .logo {
        font-size: 24px;
    }

    .hero h1 {
        font-size: 2.1rem;
    }

    .category-grid, .area-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}
/* ====================== NAVBAR ====================== */
.navbar {
    background: #1a1233;
    padding: 12px 5%;           /* Height kam ki */
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    min-height: 65px;           /* Fixed minimum height */
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: bold;
    color: #ff2d95;
}

.logo-img {
    height: 42px;               /* Logo size kam kiya */
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 6px rgba(255, 45, 149, 0.5));
}

/* Age Warning */
.age-warning {
    background: #ff2d95;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: bold;
    white-space: nowrap;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .navbar {
        padding: 10px 5%;
        min-height: 60px;
    }
    
    .logo-img {
        height: 36px;
    }
    
    .logo {
        font-size: 19px;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 8px 5%;
        min-height: 55px;
    }
    
    .logo-img {
        height: 32px;
    }
    
    .logo {
        font-size: 17px;
    }
}
/* ====================== PROFILES SECTION ====================== */
.profiles {
    padding: 70px 5%;
    background: #0f0a1f;
    max-width: 1400px;
    margin: 0 auto;
}
.profiles h2 {
    text-align: center;
    font-size: 2.6rem;
    margin-bottom: 50px;
    color: #ff2d95;
}
.profiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 25px;
}
.profile-card {
    background: #1a1233;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    border: 2px solid transparent;
    transition: 0.4s;
}
.profile-card:hover {
    border-color: #ff2d95;
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 45, 149, 0.25);
}
.profile-img {
    width: 38%;
    position: relative;
}
.profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.profile-info {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
}
.profile-info h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
    color: #ff2d95;
}
.age {
    font-size: 1rem;
    color: #aaa;
    font-weight: normal;
}
.type {
    color: #ff2d95;
    font-weight: 600;
    margin-bottom: 12px;
}
.desc {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 15px;
    color: #ddd;
}
.buttons {
    display: flex;
    gap: 12px;
}
.call-btn, .whatsapp-btn {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}
.call-btn {
    background: #00cc66;
    color: white;
}
.whatsapp-btn {
    background: #25D366;
    color: white;
}
.call-btn:hover, .whatsapp-btn:hover {
    transform: scale(1.05);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .profiles-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .profile-card {
        flex-direction: column;
    }
    .profile-img {
        width: 100%;
        height: 380px;
    }
}

.premium-profiles {
    padding: 60px 5%;
    background: linear-gradient(180deg, rgba(18, 4, 4, 0.95), rgba(33, 11, 9, 0.98));
    border-bottom: 1px solid rgba(255, 210, 70, 0.08);
}

.profiles-header {
    max-width: 1280px;
    margin: 0 auto 35px;
    text-align: center;
}

.profiles-header .eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-size: 0.85rem;
}

.premium-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(240px, 1fr));
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.premium-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: rgba(19, 7, 7, 0.9);
    border: 1px solid rgba(255, 210, 70, 0.14);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22);
    display: flex;
    flex-direction: column;
    min-height: 430px;
    transform: translateY(0);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    animation: floatUp 1s ease var(--delay) both;
}

.premium-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(255, 210, 70, 0.08), transparent 35%);
    pointer-events: none;
}

.premium-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 36px 90px rgba(255, 170, 55, 0.24);
}

.premium-card-media {
    height: 220px;
    background: linear-gradient(135deg, rgba(255, 210, 70, 0.18), rgba(255, 255, 255, 0.05)), url('../images/1.webp') center/cover no-repeat;
    position: relative;
}

.status-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 210, 70, 0.95);
    color: #120100;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.premium-card-body {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 28px 24px 24px;
    z-index: 1;
}

.premium-card-category {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.82rem;
}

.premium-card h3 {
    margin: 0;
    font-size: 1.7rem;
    color: var(--accent-strong);
    line-height: 1.05;
}

.premium-card-desc {
    color: #e9dca7;
    line-height: 1.75;
    flex: 1;
    margin: 0;
    font-size: 0.98rem;
}

.premium-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

.premium-card-footer span {
    color: #f6e2a9;
    font-weight: 700;
}

.premium-card-footer .book-now-btn {
    padding: 12px 24px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), var(--accent-strong));
    color: #120100;
    font-weight: 700;
    box-shadow: 0 14px 32px rgba(255, 175, 45, 0.24);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.premium-card-footer .book-now-btn:hover {
    transform: translateY(-2px);
}

@media (max-width: 1200px) {
    .premium-grid {
        grid-template-columns: repeat(3, minmax(240px, 1fr));
    }
}

@media (max-width: 900px) {
    .premium-grid {
        grid-template-columns: repeat(2, minmax(240px, 1fr));
    }
}

@media (max-width: 650px) {
    .premium-grid {
        grid-template-columns: 1fr;
    }
    .premium-card-media {
        height: 200px;
    }
}

/* ====================== GALLERY SECTION ====================== */
.gallery {
    padding: 70px 5%;
    background: #0a0719;
}

.gallery h2 {
    text-align: center;
    font-size: 2.6rem;
    margin-bottom: 50px;
    color: #ff2d95;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
    max-width: 1600px;
    margin: 0 auto;
}

.gallery-card {
    background: #1a1233;
    border-radius: 15px;
    overflow: hidden;
    transition: 0.4s;
    cursor: pointer;
    border: 2px solid transparent;
}

.gallery-card:hover {
    transform: scale(1.05);
    border-color: #ff2d95;
    box-shadow: 0 15px 35px rgba(255, 45, 149, 0.3);
}

.gallery-img {
    height: 260px;
    overflow: hidden;
}

.gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.gallery-card:hover .gallery-img img {
    transform: scale(1.1);
}

.gallery-info {
    padding: 14px 12px;
    text-align: center;
    background: #1a1233;
}

.gallery-info h3 {
    font-size: 1.1rem;
    color: #ff2d95;
    margin-bottom: 4px;
}

.age {
    font-size: 0.95rem;
    color: #aaa;
}

.gallery-info p {
    color: #ff8ac4;
    font-size: 0.95rem;
    font-weight: 500;
}

/* ==================== MOBILE RESPONSIVE ==================== */
@media (max-width: 1200px) {
    .gallery-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
    .gallery-grid { 
        grid-template-columns: repeat(3, 1fr); 
        gap: 12px;
    }
    .gallery-img { height: 220px; }
}

@media (max-width: 480px) {
    .gallery-grid { 
        grid-template-columns: repeat(2, 1fr); 
    }
    .gallery-img { height: 200px; }
}
/* ====================== SERVICES SECTION ====================== */
.services {
    padding: 100px 5%;
    background: linear-gradient(rgba(15, 10, 31, 0.85), rgba(15, 10, 31, 0.9)), 
                url('../images/juhijain-banner2.jpg') center/cover fixed;
    background-attachment: fixed;   /* Fixed background */
    position: relative;
}

.services-overlay {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.services h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 60px;
    color: #ff2d95;
    text-shadow: 0 4px 15px rgba(0,0,0,0.6);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.service-card {
    background: rgba(26, 18, 51, 0.95);
    border-radius: 20px;
    padding: 35px 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
}

.service-card:hover {
    transform: translateY(-15px);
    border-color: #ff2d95;
    box-shadow: 0 20px 40px rgba(255, 45, 149, 0.4);
}

.service-icon {
    font-size: 4.5rem;
    margin-bottom: 20px;
    display: block;
    transition: 0.4s;
}

.service-card:hover .service-icon {
    transform: scale(1.2);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #ff2d95;
}

.service-card p {
    color: #ddd;
    line-height: 1.6;
}

/* ==================== MOBILE RESPONSIVE ==================== */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .services {
        padding: 70px 5%;
    }
}
/* ====================== CONTENT SECTION ====================== */
.content-section {
    padding: 90px 5%;
    background: #0f0a1f;
}

.content-container {
    max-width: 1300px;
    margin: 0 auto;
}

.content-section h2 {
    text-align: center;
    font-size: 2.7rem;
    margin-bottom: 60px;
    color: #ff2d95;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-text {
    color: #ddd;
    font-size: 1.1rem;
    line-height: 1.8;
}

.content-text h3 {
    color: #ff2d95;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.content-text ul {
    margin: 25px 0;
    padding-left: 20px;
}

.content-text ul li {
    margin: 12px 0;
    list-style: none;
    position: relative;
}

.content-text ul li:before {
    content: "";
    position: absolute;
    left: -20px;
    color: #ff2d95;
}

.book-now-btn {
    display: inline-block;
    background: #ff2d95;
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
    transition: 0.3s;
}

.book-now-btn:hover {
    background: #ff4da6;
    transform: scale(1.05);
}

.content-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.feature-card {
    background: #1a1233;
    padding: 30px 20px;
    border-radius: 18px;
    text-align: center;
    transition: 0.4s;
    border: 2px solid transparent;
}

.feature-card:hover {
    border-color: #ff2d95;
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 3.2rem;
    margin-bottom: 15px;
}

.feature-card h4 {
    color: #ff2d95;
    margin-bottom: 10px;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 992px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .content-features {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .content-features {
        grid-template-columns: 1fr;
    }
}
/* ====================== CUSTOM CONTENT SECTION ====================== */
.custom-content {
    padding: 90px 5%;
    background: #0f0a1f;
}

.content-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.custom-content h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 50px;
    color: #ff2d95;
}

.content-body {
    background: #1a1233;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    color: #ddd;
    line-height: 1.8;
    font-size: 1.1rem;
}

.content-body h3 {
    color: #ff2d95;
    margin: 35px 0 15px 0;
    font-size: 1.6rem;
}

.content-body ul {
    margin: 20px 0;
    padding-left: 25px;
}

.content-body ul li {
    margin: 12px 0;
    position: relative;
}

.content-body ul li:before {
    content: "✓";
    color: #ff2d95;
    position: absolute;
    left: -20px;
}

/* Responsive */
@media (max-width: 768px) {
    .content-body {
        padding: 35px 20px;
    }
    
    .custom-content h2 {
        font-size: 2.3rem;
    }
    
    .content-body {
        font-size: 1.05rem;
    }
}
/* ====================== FAQ SECTION ====================== */
.faq-section {
    padding: 90px 5%;
    background: #0a0719;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.7rem;
    margin-bottom: 50px;
    color: #ff2d95;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    background: #1a1233;
    border: 1px solid #2a1f4d;
}

.faq-question {
    padding: 20px 25px;
    background: #1a1233;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    color: #fff;
    transition: 0.3s;
}

.faq-question:hover {
    background: #251c45;
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: #15102a;
}

.faq-answer p {
    padding: 20px 0;
    margin: 0;
    color: #ddd;
    line-height: 1.7;
}

.faq-icon {
    font-size: 1.6rem;
    font-weight: bold;
    color: #ff2d95;
    transition: 0.3s;
}

/* Mobile */
@media (max-width: 768px) {
    .faq-question {
        padding: 18px 20px;
        font-size: 1rem;
    }
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(260px, 1fr));
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.faq-card {
    background: rgba(24, 8, 7, 0.95);
    border: 1px solid rgba(255, 210, 70, 0.14);
    border-radius: 24px;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    animation: floatUp 0.9s ease var(--delay) both;
}

.faq-card summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 24px 26px;
    cursor: pointer;
    list-style: none;
    color: var(--text);
    font-size: 1rem;
    background: rgba(0, 0, 0, 0.08);
}

.faq-card summary::-webkit-details-marker {
    display: none;
}

.faq-card summary:after {
    content: "+";
    font-size: 1.5rem;
    color: var(--accent-strong);
    transition: transform 0.3s ease;
}

.faq-card[open] summary:after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 26px 24px;
    color: #dbcf9c;
    line-height: 1.85;
    background: rgba(0, 0, 0, 0.04);
}

.faq-card[open] .faq-answer {
    max-height: none;
}

.faq-answer p {
    margin: 0;
}

@media (max-width: 900px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

/* ====================== CLIENT REVIEWS SECTION ====================== */
.reviews-section {
    padding: 90px 5%;
    background: #0f0a1f;
}

.reviews-container {
    max-width: 1300px;
    margin: 0 auto;
}

.reviews-section h2 {
    text-align: center;
    font-size: 2.7rem;
    margin-bottom: 60px;
    color: #ff2d95;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    background: #1a1233;
    border-radius: 20px;
    padding: 35px 25px;
    transition: 0.4s;
    border: 2px solid transparent;
}

.review-card:hover {
    transform: translateY(-10px);
    border-color: #ff2d95;
    box-shadow: 0 20px 40px rgba(255, 45, 149, 0.25);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.review-header img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ff2d95;
}

.review-header h3 {
    margin: 0;
    color: #ff2d95;
    font-size: 1.3rem;
}

.review-header p {
    margin: 0;
    color: #aaa;
    font-size: 0.95rem;
}

.stars {
    font-size: 1.5rem;
    margin: 15px 0;
    color: #ffd700;
}

.review-text {
    color: #ddd;
    line-height: 1.7;
    font-size: 1.05rem;
    font-style: italic;
}

.review-card {
    animation: floatUp 0.9s ease var(--delay) both;
}

.review-card:hover {
    transform: translateY(-12px) scale(1.01);
    box-shadow: 0 28px 70px rgba(255, 180, 55, 0.24);
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #ffd248, #c48c16);
    color: #120100;
    font-weight: 800;
    font-size: 1rem;
    border: 2px solid rgba(255, 210, 70, 0.2);
}

.stars {
    font-size: 1.45rem;
    margin: 18px 0 16px;
    color: #ffd248;
    letter-spacing: 0.08em;
}

@keyframes floatUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 992px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}
/* ====================== FOOTER ====================== */
.main-footer {
    background: #0a0719;
    color: #ddd;
    padding: 70px 5% 30px;
    border-top: 1px solid #2a1f4d;
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-col h3 {
    color: #ff2d95;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin: 10px 0;
}

.footer-col a {
    color: #ddd;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col a:hover {
    color: #ff2d95;
    padding-left: 5px;
}

.footer-bottom {
    max-width: 1300px;
    margin: 50px auto 0;
    padding-top: 25px;
    border-top: 1px solid #2a1f4d;
    text-align: center;
    font-size: 0.9rem;
}

.dmca {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    opacity: 0.9;
}

.dmca img {
    filter: brightness(1.2);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-col {
        margin-bottom: 30px;
    }
}
/* ====================== CONTACT + MAP SECTION ====================== */
.contact-map-section {
    padding: 90px 5%;
    background: #0f0a1f;
}

.contact-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-map-section h2 {
    color: #ff2d95;
    margin-bottom: 25px;
    font-size: 2.2rem;
}

.map-wrapper {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 16px 20px;
    background: #1a1233;
    border: 1px solid #3a2a5f;
    border-radius: 10px;
    color: #fff;
    font-size: 1.05rem;
    outline: none;
    transition: 0.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: #ff2d95;
    box-shadow: 0 0 0 3px rgba(255, 45, 149, 0.2);
}

.submit-btn {
    background: #ff2d95;
    color: white;
    padding: 16px;
    border: none;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
}

.submit-btn:hover {
    background: #ff4da6;
    transform: translateY(-3px);
}

.contact-info {
    margin-top: 25px;
    padding: 20px;
    background: #1a1233;
    border-radius: 12px;
    font-size: 1.05rem;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .map-wrapper iframe {
        height: 380px;
    }
}
/* GLOBAL SECTION MARGIN REDUCTION */
.profiles, .gallery, .services, .content-section, 
.custom-content, .faq-section, .reviews-section, 
.contact-map-section {
    padding: 20px 5% !important;     /* Sab sections ke padding kam */
}

h2 {
    margin-bottom: 30px !important;
}
/* ====================== RATES / PRICING SECTION ====================== */
.rates-section {
    padding: 70px 5%;
    background: #0f0a1f;
}

.rates-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.rates-section h2 {
    font-size: 2.6rem;
    margin-bottom: 50px;
    color: #ff2d95;
}

.rates-table {
    background: #1a1233;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    border: 2px solid #3a2a5f;
}

.rates-table table {
    width: 100%;
    border-collapse: collapse;
}

.rates-table th {
    background: #251c45;
    color: #ff2d95;
    padding: 22px 15px;
    font-size: 1.2rem;
    text-align: left;
}

.rates-table td {
    padding: 18px 15px;
    border-bottom: 1px solid #2a1f4d;
    color: #ddd;
    font-size: 1.1rem;
    text-align: left;
}

.rates-table tr:last-child td {
    border-bottom: none;
}

.rates-table tr:hover {
    background: #251c45;
}

.note {
    margin-top: 30px;
    color: #aaa;
    font-size: 1rem;
    font-style: italic;
}

/* ==================== MOBILE RESPONSIVE ==================== */
@media (max-width: 768px) {
    .rates-section h2 {
        font-size: 2.1rem;
    }
    
    .rates-table th,
    .rates-table td {
        padding: 15px 10px;
        font-size: 1rem;
    }
    
    .rates-table {
        border-radius: 15px;
    }
}

@media (max-width: 480px) {
    .rates-table th,
    .rates-table td {
        font-size: 0.95rem;
    }
}
/* ====================== GIRLS CONTACT TABLE ====================== */
.contact-table-section {
    padding: 70px 5%;
    background: #0f0a1f;
}

.contact-table-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.contact-table-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #ff2d95;
}

.table-wrapper {
    background: #1a1233;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
    border: 2px solid #3a2a5f;
}

.girls-contact-table {
    width: 100%;
    border-collapse: collapse;
}

.girls-contact-table th {
    background: #251c45;
    color: #ff2d95;
    padding: 20px 15px;
    text-align: left;
    font-size: 1.15rem;
}

.girls-contact-table td {
    padding: 18px 15px;
    border-bottom: 1px solid #2a1f4d;
    color: #ddd;
    text-align: left;
}

.girls-contact-table tr:hover {
    background: #251c45;
}

.girls-contact-table .age {
    color: #aaa;
    font-weight: normal;
}

.whatsapp-btn {
    background: #25D366;
    color: white;
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    font-weight: bold;
    transition: 0.3s;
}

.whatsapp-btn:hover {
    background: #1eb653;
    transform: scale(1.05);
}

.note {
    margin-top: 25px;
    color: #aaa;
    font-style: italic;
}

/* ==================== MOBILE RESPONSIVE ==================== */
@media (max-width: 768px) {
    .girls-contact-table th,
    .girls-contact-table td {
        padding: 14px 10px;
        font-size: 0.98rem;
    }
    
    .contact-table-section h2 {
        font-size: 2rem;
    }
    
    .whatsapp-btn {
        padding: 9px 12px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .girls-contact-table {
        font-size: 0.9rem;
    }
}
/* Floating Contact Buttons - RIGHT SIDE */
.floating-contact-right {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.floating-contact-right a {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    position: relative;
}

.floating-contact-right a:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.floating-contact-right svg {
    width: 26px;
    height: 26px;
    fill: #fff;
}

/* Button Colors */
.floating-call {
    background-color: #fe2897;
}

.floating-whatsapp {
    background-color: #0ffd73;
}

/* Number Tooltip (appears on LEFT of button) */
.floating-contact-right a .number {
    position: absolute;
    left: 100%;
    margin-left: 12px;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.85);
    color: white;
    font-size: 14px;
    padding: 8px 14px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    pointer-events: none;
}

.floating-contact-right a:hover .number {
    opacity: 1;
    visibility: visible;
}

/* Responsive */
@media (max-width: 480px) {
    .floating-contact-right {
        right: 12px;
        bottom: 12px;
        gap: 10px;
    }
    .floating-contact-right a {
        width: 46px;
        height: 46px;
    }
}

@media (min-width: 1024px) {
    .floating-contact-right {
        right: 30px;
        bottom: 30px;
    }
}

:root {
    --bg: #110201;
    --surface: #260a08;
    --surface-strong: #3e100d;
    --surface-soft: #421109;
    --text: #f5df9f;
    --text-muted: #d4b974;
    --accent: #c48c16;
    --accent-strong: #ffd248;
    --border-soft: rgba(255, 210, 70, 0.18);
    --shadow-color: rgba(255, 180, 52, 0.24);
}

body {
    background: radial-gradient(circle at top left, #4b1009 0%, #100101 45%, #070303 100%);
    color: var(--text);
    font-family: 'Segoe UI', sans-serif;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at top center, rgba(255, 210, 70, 0.04), transparent 22%),
                radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.03), transparent 18%);
    pointer-events: none;
}

.navbar {
    background: rgba(30, 10, 8, 0.95) !important;
    border-bottom: 1px solid rgba(255, 210, 70, 0.12);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(14px);
}

.navbar a {
    color: var(--text) !important;
}

.navbar ul li:hover,
.navbar ul li:hover a,
.footer-col a:hover {
    color: var(--accent-strong) !important;
}

.age-warning {
    background: linear-gradient(135deg, #d18d16, #ffd861) !important;
    color: #120200 !important;
    box-shadow: 0 12px 28px rgba(255, 210, 70, 0.25);
}

.hero {
    background: linear-gradient(180deg, rgba(20, 5, 5, 0.75), rgba(5, 1, 1, 0.92)), url('../images/juhijain-banner.jpg') center/cover fixed !important;
    min-height: calc(100vh - 80px);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.hero h1 {
    font-size: clamp(3rem, 5vw, 4.4rem);
    letter-spacing: 1px;
    margin-bottom: 14px;
    text-transform: uppercase;
    color: var(--accent-strong) !important;
}

.hero p {
    font-size: 1.2rem;
    color: rgba(245, 223, 159, 0.92);
    max-width: 900px;
    margin: 0 auto 30px;
}

.search-box {
    max-width: 760px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 210, 70, 0.16);
    border-radius: 999px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.search-box input {
    background: transparent;
    color: #f7e3b2;
}

.search-box button {
    background: linear-gradient(135deg, var(--accent), var(--accent-strong));
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

section {
    position: relative;
    padding: 90px 5%;
    background: linear-gradient(135deg, rgba(17, 2, 2, 0.96), rgba(39, 10, 8, 0.96));
    border-top: 1px solid rgba(255, 210, 70, 0.06);
}

.hero + section {
    padding-top: 80px;
}

section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(255, 210, 70, 0.02), transparent 35%);
}

.content-section,
.custom-content,
.rates-section,
.contact-table-section,
.areas,
.profiles,
.gallery,
.services,
.faq-section,
.reviews-section,
.main-footer {
    background: transparent;
}

.content-container,
.content-wrapper,
.rates-container,
.contact-table-container,
.footer-container,
.profiles-grid,
.gallery-grid,
.services-grid,
.content-grid,
.reviews-grid {
    position: relative;
    z-index: 2;
}

h2 {
    color: var(--accent-strong) !important;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

h4,
.feature-card h4,
.faq-icon,
.review-header img {
    color: var(--accent) !important;
}

.content-body,
.category-card,
.area-card,
.profile-card,
.gallery-card,
.service-card,
.feature-card,
.faq-item,
.review-card,
.rates-table,
.table-wrapper,
.contact-info,
.contact-form input,
.contact-form select,
.contact-form textarea {
    background: rgba(22, 7, 7, 0.88) !important;
    border: 1px solid rgba(255, 210, 70, 0.12) !important;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
    color: var(--text) !important;
}

.category-card,
.area-card,
.profile-card,
.gallery-card,
.service-card,
.feature-card,
.faq-item,
.review-card,
.rates-table,
.table-wrapper,
.content-body,
.contact-info {
    border-radius: 22px !important;
}

.category-card:hover,
.area-card:hover,
.profile-card:hover,
.gallery-card:hover,
.service-card:hover,
.feature-card:hover,
.review-card:hover,
.faq-item:hover,
.rates-table tr:hover,
.girls-contact-table tr:hover,
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--accent-strong) !important;
    box-shadow: 0 24px 60px rgba(255, 180, 50, 0.24) !important;
}

.book-now-btn,
.submit-btn,
.call-btn,
.whatsapp-btn,
.search-box button {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.book-now-btn:hover,
.submit-btn:hover,
.call-btn:hover,
.whatsapp-btn:hover,
.search-box button:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(255, 180, 50, 0.24);
}

h3,
.content-body h3,
.review-header h3 {
    color: var(--accent) !important;
}

.content-text,
.content-body,
.review-text,
.note,
.footer-col p,
.girls-contact-table td,
.rates-table td,
.contact-info,
.contact-form input,
.contact-form select,
.contact-form textarea {
    color: #e6d6a0 !important;
}

.category-card h3,
.gallery-info h3,
.profile-info h3,
.service-card h3,
.feature-card h3,
.faq-question,
.rates-table th {
    color: var(--accent-strong) !important;
}

.category-card,
.area-card,
.gallery-card,
.profile-card,
.review-card,
.service-card,
.feature-card,
.faq-item {
    overflow: hidden;
}

.content-body p,
.content-body li,
.footer-col li,
.footer-bottom p {
    line-height: 1.85;
}

.footer-col h3,
.footer-bottom,
.rates-table th {
    color: var(--accent-strong) !important;
}

.main-footer {
    background: linear-gradient(180deg, rgba(17, 2, 2, 0.96), rgba(32, 9, 9, 0.96));
    border-top: 1px solid rgba(255, 210, 70, 0.10);
    padding-top: 80px;
    padding-bottom: 40px;
}

.footer-container {
    gap: 35px;
}

.footer-col {
    padding: 20px;
    background: rgba(18, 5, 5, 0.65);
    border: 1px solid rgba(255, 210, 70, 0.08);
    border-radius: 20px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col a {
    color: var(--text);
}

.footer-col a:hover {
    color: var(--accent-strong) !important;
}

.footer-bottom {
    margin-top: 45px;
    border-top: 1px solid rgba(255, 210, 70, 0.10);
    padding-top: 25px;
    color: rgba(245, 223, 159, 0.8);
}

.footer-bottom p {
    font-size: 0.95rem;
    letter-spacing: 0.04em;
}

.dmca img {
    filter: brightness(1.1);
}

.floating-contact-right a {
    background: linear-gradient(135deg, #c48c16, #ffd248) !important;
    box-shadow: 0 18px 40px rgba(255, 170, 45, 0.3);
}

.floating-contact-right a:hover {
    transform: translateY(-3px);
}

.floating-contact-right svg {
    fill: #120100 !important;
}

@media (max-width: 768px) {
    .navbar {
        border-radius: 0;
    }

    section {
        padding: 60px 5%;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-container,
    .reviews-grid,
    .content-grid,
    .services-grid,
    .gallery-grid,
    .profiles-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: 70vh;
    }

    .search-box {
        grid-template-columns: 1fr;
    }

    .footer-col {
        padding: 18px;
    }
}


a {
    color: var(--text) !important;
}

a:hover {
    color: var(--accent-strong) !important;
}


/* extra */

.escort-grid {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

/* CARD */
.escort-card {
  background:
    linear-gradient(135deg, rgba(177, 18, 38, 0.75), rgba(8, 3, 3, 0.95));
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  backdrop-filter: blur(14px);
  position: relative;
  isolation: isolate;
  transform-origin: center bottom;
  transition: transform var(--transition-med),
              box-shadow var(--transition-med),
              border-color var(--transition-med);
}

.escort-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg,
      rgba(212, 175, 55, 0.18),
      transparent 35%,
      rgba(177, 18, 38, 0.25),
      transparent 75%);
  mix-blend-mode: screen;
  opacity: 0.6;
}

.escort-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.9);
  border-color: var(--accent-gold-soft);
}

/* IMAGE BLOCK */
.escort-card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background:
    radial-gradient(circle at 15% 0%, var(--accent-gold-soft), transparent 55%),
    radial-gradient(circle at 80% 100%, var(--accent-red-soft), transparent 45%);
}

.escort-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.05) contrast(1.03);
  transform: scale(1.02);
  transition: transform var(--transition-med),
              filter var(--transition-med);
}

.escort-card:hover .escort-card__image img {
  transform: scale(1.06);
  filter: saturate(1.12) contrast(1.08);
}

/* BADGE */
.escort-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: #1a0c02;
  background:
    linear-gradient(135deg, #f7e9b0, #d4af37);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.65);
}

/* BODY */
.escort-card__body {
  position: relative;
  padding: 14px 16px 16px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.65), rgba(20, 5, 6, 0.96));
}

/* HEADER */
.escort-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 6px;
}

.escort-card__name {
  font-size: clamp(1.1rem, 2.3vw, 1.3rem);
  margin: 0;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.escort-card__meta {
  margin: 4px 0 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* RATING */
.escort-card__rating {
  text-align: right;
  min-width: 64px;
}

.escort-card__rating-score {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent-gold);
}

.escort-card__rating-stars {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  color: var(--accent-gold);
}

/* SUBTITLE */
.escort-card__subtitle {
  margin: 4px 0 6px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent-gold);
}

/* DESCRIPTION */
.escort-card__description {
  margin: 0 0 8px;
  font-size: 0.83rem;
  line-height: 1.5;
  color: var(--text-main);
}

/* TAGS */
.escort-card__tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0;
  margin: 0 0 10px;
}

.escort-card__tags li {
  font-size: 0.75rem;
  padding: 3px 9px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(212, 175, 55, 0.4);
  background-color: rgba(5, 1, 1, 0.8);
  color: var(--accent-gold);
  white-space: nowrap;
}

/* FOOTER */
.escort-card__footer {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 8px;
}

.escort-card__rate-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
}

.escort-card__rate-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-gold);
}

/* ACTIONS */
.escort-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* BUTTONS */
.btn {
  flex: 1 1 130px;
  font-size: 0.8rem;
  text-align: center;
  padding: 8px 12px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background-color var(--transition-fast),
              border-color var(--transition-fast),
              color var(--transition-fast),
              transform var(--transition-fast),
              box-shadow var(--transition-fast);
}

.btn--primary {
  background:
    linear-gradient(135deg, var(--accent-gold), #f7e9b0);
  color: #1a0c02;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.8);
}

.btn--ghost {
  background: transparent;
  color: var(--accent-gold);
  border-color: rgba(212, 175, 55, 0.7);
}

.btn--ghost:hover {
  background-color: rgba(212, 175, 55, 0.12);
}

/* Slight padding tweaks on wider screens */
@media (min-width: 768px) {
  body {
    padding: 32px 24px;
  }

  .escort-card__body {
    padding: 16px 18px 18px;
  }
}

/* Optional if already defined with cards */
:root {
  --bg-body: #050507;
  --accent-red: #b11226;
  --accent-red-soft: rgba(177, 18, 38, 0.35);
  --accent-gold: #d4af37;
  --accent-gold-soft: rgba(212, 175, 55, 0.18);

  --text-main: #f7f2ec;
  --text-muted: #b9a9a3;
  --border-soft: rgba(255, 255, 255, 0.16);

  --radius-pill: 999px;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.75);

  --transition-fast: 180ms ease-out;
  --transition-med: 240ms ease;
}

/* Base (if needed for demo)
body {
  margin: 0;
  background: var(--bg-body);
  color: var(--text-main);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
*/

/* NAVBAR WRAPPER */
.escort-navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  backdrop-filter: blur(16px);
  background:
    linear-gradient(135deg, rgba(5, 0, 0, 0.96), rgba(8, 3, 3, 0.94));
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.85);
}

.escort-navbar__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* BRAND */
.escort-navbar__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-main);
}

.escort-navbar__brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1a0c02;
  background:
    radial-gradient(circle at 20% 0%, #f9f1c0, #d4af37 50%, #8b5e12 100%);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.7);
}

.escort-navbar__brand-text {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.escort-navbar__brand-text span {
  color: var(--accent-gold);
}

/* NAV + LINKS */
.escort-navbar__nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* hide native checkbox */
.escort-navbar__toggle-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* links stack on mobile by default */
.escort-navbar__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  flex-direction: column;
  gap: 8px;
  background: rgba(5, 1, 1, 0.98);
  border-radius: 14px;
  border: 1px solid rgba(212, 175, 55, 0.18);
  padding: 12px 14px;
  position: absolute;
  right: 16px;
  top: 60px;
  min-width: 190px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9);
}

.escort-navbar__links li a {
  display: block;
  font-size: 0.86rem;
  text-decoration: none;
  padding: 6px 8px;
  border-radius: 999px;
  color: var(--text-main);
  transition: background-color var(--transition-fast), color var(--transition-fast);
}

.escort-navbar__links li a:hover {
  background-color: rgba(212, 175, 55, 0.1);
  color: var(--accent-gold);
}

.escort-navbar__links li a.is-active {
  background:
    linear-gradient(135deg, var(--accent-gold), #f7e9b0);
  color: #1a0c02;
}

/* ACTION BUTTONS (mobile: dropdown with links) */
.escort-navbar__actions {
  display: none;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
}

/* HAMBURGER ICON */
.escort-navbar__toggle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.5);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  background: radial-gradient(circle at 20% 0%, rgba(212, 175, 55, 0.4), rgba(5, 0, 0, 0.96));
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.7);
  transition: background-color var(--transition-fast), transform var(--transition-fast), border-color var(--transition-fast);
}

.escort-navbar__toggle span {
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background-color: var(--accent-gold);
  transition: transform var(--transition-fast), opacity var(--transition-fast), background-color var(--transition-fast);
}

/* Toggle open state: checkbox hack */
.escort-navbar__toggle-input:checked ~ .escort-navbar__toggle {
  transform: rotate(90deg);
  border-color: var(--accent-gold);
}

.escort-navbar__toggle-input:checked ~ .escort-navbar__toggle span:nth-child(1) {
  transform: translateY(4px) rotate(45deg);
}

.escort-navbar__toggle-input:checked ~ .escort-navbar__toggle span:nth-child(2) {
  opacity: 0;
}

.escort-navbar__toggle-input:checked ~ .escort-navbar__toggle span:nth-child(3) {
  transform: translateY(-4px) rotate(-45deg);
}

/* show the dropdown menu when checked */
.escort-navbar__toggle-input:checked ~ .escort-navbar__nav .escort-navbar__links,
.escort-navbar__toggle-input:checked ~ .escort-navbar__nav .escort-navbar__actions {
  display: flex;
}

/* BUTTONS (reuse existing button styles; just add compact size) */
.btn {
  font-size: 0.86rem;
  text-align: center;
  padding: 9px 14px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background-color var(--transition-fast),
              border-color var(--transition-fast),
              color var(--transition-fast),
              transform var(--transition-fast),
              box-shadow var(--transition-fast);
}

.btn--primary {
  background:
    linear-gradient(135deg, var(--accent-gold), #f7e9b0);
  color: #1a0c02;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.8);
}

.btn--ghost {
  background: transparent;
  color: var(--accent-gold);
  border-color: rgba(212, 175, 55, 0.7);
}

.btn--ghost:hover {
  background-color: rgba(212, 175, 55, 0.12);
}

.btn--sm {
  padding: 6px 12px;
  font-size: 0.78rem;
}

/* DESKTOP / TABLET LAYOUT */
@media (min-width: 768px) {
  .escort-navbar__inner {
    padding-inline: 24px;
  }

  /* show flex row, hide dropdown behaviour */
  .escort-navbar__nav {
    position: static;
    align-items: center;
    gap: 24px;
  }

  .escort-navbar__links {
    position: static;
    display: flex !important;
    flex-direction: row;
    align-items: center;
    background: transparent;
    border-radius: 999px;
    border: none;
    box-shadow: none;
    padding: 0;
    gap: 14px;
  }

  .escort-navbar__links li a {
    font-size: 0.88rem;
    padding: 6px 10px;
  }

  .escort-navbar__actions {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    margin-top: 0;
  }

  .escort-navbar__toggle {
    display: none;
  }
}


* Banner section */
.hero-banner {
  position: relative;
  width: 100%;
  height: 100vh;          /* Full viewport height */
  overflow: hidden;       /* Hide overflow when video is cropped */
}

/* Video fills the banner */
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;      /* Maintain aspect ratio, cover entire area */
  object-position: center;
  display: block;
}


/* extra */

/* Reset default page spacing */
html,
body {
  margin: 0;
  padding: 0;
}

/* Navbar bar that touches all edges and stays on top */
.site-header,     /* change to your header/nav selector */
.navbar {         /* keep whichever you actually use */
  position: fixed;   /* or 'sticky' if you prefer */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}

/* Optional: content offset so it doesn't go under the navbar */
.main-content {      /* wrapper for rest of page */
  margin-top: 80px;  /* match your navbar height */
}


/* Card content section */

/* Optional: luxury font */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;700&family=Poppins:wght@300;400;500&display=swap");

/* Section wrapper */
.luxury-section {
  padding: 4rem 1.5rem;
  background: radial-gradient(circle at top, #3b1b11 0%, #050205 45%, #000 100%);
  color: #f8f3df;
}

.luxury-section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* Headings */
.luxury-heading {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 3vw, 2.8rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  color: #f6e1a8;
  margin-bottom: 0.5rem;
}

.luxury-heading {
  font-family: "Playfair Display", serif;
  /* Smaller min + fluid middle + capped max */
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  color: #f6e1a8;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

/* Tablet */
@media (max-width: 768px) {
  .luxury-heading {
    font-size: clamp(1.5rem, 4.5vw, 2.2rem);
    letter-spacing: 0.12em;
    padding: 0 1rem; /* avoid clipping on edges */
  }
}

/* Mobile */
@media (max-width: 360px) {
  .luxury-heading {
    font-size: 1rem;
    letter-spacing: 0.04em;
  }
}

.luxury-subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  text-align: center;
  color: #c9b591;
  max-width: 540px;
  margin: 0 auto 2.5rem;
}

/* Responsive card grid */
.luxury-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
}

/* Flip card base */
.lux-card {
  perspective: 1200px; /* enables 3D effect */
}

.lux-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 260px;
  transform-style: preserve-3d;
  transition: transform 0.7s ease;
}

/* Hover flip on desktop */
.lux-card:hover .lux-card-inner {
  transform: rotateY(180deg);
}

/* Front / Back shared styles */
.lux-card-front,
.lux-card-back {
  position: absolute;
  inset: 0;
  padding: 1.75rem 1.75rem 2rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 215, 128, 0.35);
  box-shadow:
    0 18px 35px rgba(0, 0, 0, 0.75),
    0 0 40px rgba(255, 223, 150, 0.08);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: radial-gradient(circle at top left, #3b2715 0%, #0d0501 55%, #000 100%);
}

/* Front */
.lux-card-front::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 215, 160, 0.18), transparent 45%);
  opacity: 0.7;
  pointer-events: none;
}

.lux-card-front h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fbe6b9;
  margin-bottom: 0.6rem;
}

.lux-card-front p {
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  color: #d3c3a0;
}

/* Back */
.lux-card-back {
  transform: rotateY(180deg);
  background: radial-gradient(circle at bottom right, #4b2a16 0%, #070307 55%, #000 100%);
}

.lux-card-back h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #fbe6b9;
  margin-bottom: 0.75rem;
}

.lux-card-back p {
  font-family: "Poppins", sans-serif;
  font-size: 0.8rem;
  line-height: 1.6;
  color: #d9c7a5;
}

/* Small-screen tweaks */
@media (max-width: 768px) {
  .luxury-section {
    padding: 3rem 1.25rem;
  }

  .lux-card-inner {
    min-height: 220px;
  }

  .lux-card-front,
  .lux-card-back {
    padding: 1.5rem 1.4rem 1.7rem;
  }

  .lux-card-back p {
    font-size: 0.88rem;
  }
}

/* Extra-small layout: stack nicely */
@media (max-width: 480px) {
  .luxury-cards-grid {
    gap: 1.25rem;
  }
}

/* Gallery Section */
/* Optional luxury fonts */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;700&family=Poppins:wght@300;400;500&display=swap");

.royal-gallery {
  padding: 4rem 1.5rem;
  background: radial-gradient(circle at top, #3b1b11 0%, #050205 45%, #000 100%);
  color: #f8f3df;
}

.royal-gallery-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.royal-heading {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.1rem, 3vw, 2.7rem);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  text-align: center;
  color: #f6e1a8;
  margin-bottom: 0.5rem;
}

.royal-subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  text-align: center;
  color: #c9b591;
  max-width: 540px;
  margin: 0 auto 2.5rem;
}

/* Responsive grid for 6 images */
.royal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)); /* always 3 in a row on desktop */
  gap: 1.75rem;
}

/* Tablet: 2 per row */
@media (max-width: 900px) {
  .royal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Mobile: 1 per row */
@media (max-width: 600px) {
  .royal-grid {
    grid-template-columns: 1fr;
  }
}

.royal-item {
  margin: 0;
}

/* Gold-framed image card */
.royal-frame {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background:
    linear-gradient(135deg, #0b0502, #1b0c05) padding-box,
    linear-gradient(135deg, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c) border-box;
  border: 1px solid transparent; /* needed for gradient border trick */
  box-shadow:
    0 18px 35px rgba(0, 0, 0, 0.75),
    0 0 40px rgba(255, 223, 150, 0.12);
}

.royal-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.6s ease;
}

/* Dark luxe overlay with gold text */
.royal-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.75) 65%, rgba(0, 0, 0, 0.95) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  transform: translateY(8%);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.royal-overlay span {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fbe6b9;
  text-align: center;
  padding: 0.55rem 1.4rem;
  border-radius: 999px;
  background:
    linear-gradient(120deg, rgba(0, 0, 0, 0.8), rgba(13, 6, 1, 0.6)) padding-box,
    linear-gradient(120deg, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c) border-box;
  border: 1px solid transparent;
  box-shadow: 0 0 18px rgba(255, 215, 128, 0.35);
}

/* Hover state */
.royal-frame:hover img {
  transform: scale(1.08);
}

.royal-frame:hover .royal-overlay {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile tweaks */
@media (max-width: 768px) {
  .royal-gallery {
    padding: 3rem 1.25rem;
  }

  .royal-overlay {
    align-items: center;
    padding: 1.25rem;
  }

  .royal-overlay span {
    font-size: 0.9rem;
    letter-spacing: 0.12em;
  }
}

@media (max-width: 480px) {
  .royal-grid {
    gap: 1.25rem;
  }
}

/* =================== GLOBAL RESPONSIVE FIXES =================== */

/* Prevent horizontal shaking on mobile */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

/* Images and embeds never overflow */
img,
video,
iframe {
  max-width: 100%;
  height: auto;
}

/* Make sections breathe but not overflow */
section {
  padding-inline: min(5vw, 24px);
}

/* NAVBAR: allow wrapping cleanly on small screens */
@media (max-width: 768px) {
  .navbar {
    flex-wrap: wrap;
    row-gap: 8px;
  }

  .navbar ul {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* HERO: keep text readable and avoid overflow */
@media (max-width: 768px) {
  .hero {
    padding: 80px 16px 50px;
    background-attachment: scroll !important; /* avoid jitter from fixed bg */
  }

  .hero h1 {
    font-size: clamp(2rem, 7vw, 2.6rem);
  }

  .hero p {
    font-size: 1rem;
  }
}

/* SEARCH BOX: stack nicely on smallest screens */
@media (max-width: 576px) {
  .search-box {
    max-width: 100%;
    grid-template-columns: 1fr;
    border-radius: 24px;
  }

  .search-box button {
    width: 100%;
    padding-block: 12px;
  }
}

/* GRIDS: force 1-column on very small devices */
@media (max-width: 576px) {
  .category-grid,
  .area-grid,
  .profiles-grid,
  .gallery-grid,
  .services-grid,
  .content-grid,
  .content-features,
  .faq-grid,
  .reviews-grid,
  .footer-container,
  .premium-grid,
  .escort-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Premium profiles: smoother tablet/mobile layout */
@media (max-width: 1200px) {
  .premium-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .premium-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 650px) {
  .premium-grid {
    grid-template-columns: 1fr;
  }
}

/* Rates & contact tables: avoid squeezing columns too tight */
@media (max-width: 576px) {
  .rates-table table,
  .girls-contact-table {
    font-size: 0.9rem;
  }

  .rates-table th,
  .rates-table td,
  .girls-contact-table th,
  .girls-contact-table td {
    white-space: nowrap;
  }

  .rates-container,
  .contact-table-container {
    overflow-x: auto;
  }
}

/* Contact+map two-column to one-column smoothly */
@media (max-width: 992px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
}

/* Luxury headings: mobile readability */
.luxury-heading {
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  letter-spacing: 0.18em;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .luxury-heading {
    font-size: clamp(1.4rem, 4.5vw, 2.1rem);
    letter-spacing: 0.12em;
    padding-inline: 1rem;
  }
}

@media (max-width: 360px) {
  .luxury-heading {
    font-size: 1.1rem;
    letter-spacing: 0.06em;
  }
}

/* Royal gallery: 3 / 2 / 1 columns */
.royal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
}

@media (max-width: 900px) {
  .royal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .royal-grid {
    grid-template-columns: 1fr;
  }
}

/* new nav bar */
/* ================= ROYAL NAVBAR (UNIQUE SCOPE) ================= */
#ep-royal-navbar {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 9999;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: linear-gradient(120deg, rgba(12, 2, 2, 0.96), rgba(35, 10, 8, 0.96));
  border-bottom: 1px solid rgba(255, 210, 70, 0.18);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(18px);
}

#ep-royal-navbar .ep-nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

/* Brand */
#ep-royal-navbar .ep-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: #fbe6b9;
  text-decoration: none;
}

#ep-royal-navbar .ep-logo-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  background: radial-gradient(circle at 30% 20%, #fff6d1, #d9a72a, #886012);
  box-shadow: 0 0 18px rgba(255, 220, 130, 0.6);
  color: #130300;
}

#ep-royal-navbar .ep-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

#ep-royal-navbar .ep-brand-title {
  font-size: 1rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

#ep-royal-navbar .ep-brand-sub {
  font-size: 0.7rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(249, 230, 178, 0.72);
}

/* Links container */
#ep-royal-navbar .ep-nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

/* Base link style */
#ep-royal-navbar .ep-nav-link,
#ep-royal-navbar .ep-nav-ghost,
#ep-royal-navbar .ep-nav-cta {
  position: relative;
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: #f8e8c4;
  white-space: nowrap;
}

/* Underline hover for simple links */
#ep-royal-navbar .ep-nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #c48c16, #ffd248);
  transition: width 0.25s ease;
}

#ep-royal-navbar .ep-nav-link:hover::after,
#ep-royal-navbar .ep-active::after {
  width: 100%;
}

/* Ghost button */
#ep-royal-navbar .ep-nav-ghost {
  padding: 0.55rem 1.4rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 210, 70, 0.6);
  color: #fbe6b9;
  font-weight: 600;
  background: transparent;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

#ep-royal-navbar .ep-nav-ghost:hover {
  background: rgba(12, 2, 2, 0.65);
  box-shadow: 0 10px 26px rgba(255, 210, 90, 0.35);
  transform: translateY(-1px);
}

/* Primary CTA */
#ep-royal-navbar .ep-nav-cta {
  padding: 0.65rem 1.8rem;
  border-radius: 999px;
  font-weight: 700;
  color: #150300;
  background: linear-gradient(135deg, #c48c16, #ffd248, #fbe6b9);
  box-shadow: 0 14px 32px rgba(255, 200, 80, 0.5);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

#ep-royal-navbar .ep-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(255, 210, 100, 0.6);
}

/* Hamburger toggle (hidden on desktop) */
#ep-royal-navbar .ep-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 0.22rem;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255, 210, 70, 0.6);
  background: radial-gradient(circle at 30% 20%, #3a210e, #160503);
  cursor: pointer;
  padding: 0;
}

#ep-royal-navbar .ep-nav-toggle span {
  height: 2px;
  width: 55%;
  margin-inline: auto;
  border-radius: 999px;
  background: linear-gradient(90deg, #fbe6b9, #ffd248);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* Toggle animation when active */
#ep-royal-navbar .ep-nav-toggle.ep-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

#ep-royal-navbar .ep-nav-toggle.ep-open span:nth-child(2) {
  opacity: 0;
}

#ep-royal-navbar .ep-nav-toggle.ep-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ===================== RESPONSIVE ===================== */

/* Tablet & below: collapse menu */
@media (max-width: 900px) {
  #ep-royal-navbar .ep-nav-inner {
    padding-block: 0.6rem;
  }

  #ep-royal-navbar .ep-nav-toggle {
    display: flex;
  }

  #ep-royal-navbar .ep-nav-links {
    position: absolute;
    inset-inline: 0;
    top: 100%;
    margin-top: 0.25rem;
    background: radial-gradient(circle at top, rgba(17, 5, 3, 0.98), rgba(5, 1, 1, 0.98));
    border-bottom: 1px solid rgba(255, 210, 70, 0.18);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.7);
    flex-direction: column;
    align-items: flex-start;
    padding: 0.9rem 1.4rem 1.2rem;
    gap: 0.6rem;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transition: max-height 0.3s ease, opacity 0.3s ease;
  }

  #ep-royal-navbar .ep-nav-links.ep-open {
    max-height: 400px;
    opacity: 1;
    pointer-events: auto;
  }

  #ep-royal-navbar .ep-nav-link,
  #ep-royal-navbar .ep-nav-ghost,
  #ep-royal-navbar .ep-nav-cta {
    padding-block: 0.3rem;
  }

  #ep-royal-navbar .ep-nav-link::after {
    bottom: -0.2rem;
  }

  #ep-royal-navbar .ep-nav-ghost,
  #ep-royal-navbar .ep-nav-cta {
    align-self: stretch;
    text-align: center;
  }
}

/* Small phones: tighten brand text */
@media (max-width: 480px) {
  #ep-royal-navbar .ep-brand-title {
    font-size: 0.9rem;
    letter-spacing: 0.18em;
  }

  #ep-royal-navbar .ep-brand-sub {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
  }

  #ep-royal-navbar .ep-logo-circle {
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
  }
}


/* Extra table */

/* ================= CELEBRITY FEES SECTION ================= */

.ep-fees-section {
  position: relative;
  padding: 20px 5%;
  background: radial-gradient(circle at top, rgba(35, 8, 5, 0.96), rgba(8, 2, 1, 0.98));
  border-top: 1px solid rgba(255, 210, 70, 0.08);
  border-bottom: 1px solid rgba(255, 210, 70, 0.08);
  overflow: hidden;
}

.ep-fees-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top center, rgba(255, 210, 70, 0.08), transparent 35%),
    radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.04), transparent 40%);
  opacity: 0.85;
}

.ep-fees-wrapper {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
}

/* Heading */
.ep-fees-heading {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3.4vw, 2.7rem);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 0.75rem;
  color: var(--accent-strong, #ffd248);
}

.ep-fees-subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  text-align: center;
  max-width: 620px;
  margin: 0 auto 2.2rem;
  color: rgba(245, 223, 159, 0.8);
}

/* Table outer shell: handles responsiveness & glow */
.ep-fees-table-shell {
  position: relative;
  border-radius: 22px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 210, 70, 0.5), rgba(121, 60, 10, 0.3));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.65);
  overflow: hidden;
  animation: epFeesFloatIn 0.9s ease both;
}

/* subtle inner glow */
.ep-fees-table-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at top left, rgba(255, 210, 70, 0.12), transparent 45%);
  mix-blend-mode: screen;
}

/* Table */
.ep-fees-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 21px;
  overflow: hidden;
  background: radial-gradient(circle at top, #2a0807 0%, #120202 55%, #050101 100%);
}

.ep-fees-table thead {
  background: linear-gradient(135deg, rgba(25, 8, 5, 0.95), rgba(55, 18, 10, 0.98));
}

.ep-fees-table th,
.ep-fees-table td {
  padding: 16px 18px;
  text-align: left;
  font-size: 0.98rem;
  border-bottom: 1px solid rgba(255, 210, 70, 0.12);
  color: #f3e2b5;
}

.ep-fees-table th {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-strong, #ffd248);
}

.ep-fees-table tbody tr:last-child td {
  border-bottom: none;
}

/* Row zebra + hover */
.ep-fees-table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.01);
}

.ep-fees-table tbody tr {
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.ep-fees-table tbody tr:hover {
  background: radial-gradient(circle at center, rgba(255, 210, 70, 0.16), rgba(0, 0, 0, 0.95));
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(255, 180, 60, 0.32);
}

/* Note */
.ep-fees-note {
  margin-top: 1rem;
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(245, 223, 159, 0.82);
  font-family: "Poppins", sans-serif;
}

.ep-fees-note strong {
  color: var(--accent-strong, #ffd248);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

/* ================= RESPONSIVE ================= */

/* allow horizontal scroll on small screens */
@media (max-width: 768px) {
  .ep-fees-section {
    padding: 60px 5%;
  }

  .ep-fees-table-shell {
    border-radius: 18px;
  }

  .ep-fees-table-shell {
    overflow-x: auto;
  }

  .ep-fees-table {
    min-width: 500px; /* keep columns readable, scroll if smaller */
  }

  .ep-fees-heading {
    font-size: clamp(1.7rem, 5vw, 2.2rem);
    letter-spacing: 0.12em;
    padding-inline: 0.5rem;
  }

  .ep-fees-subtitle {
    font-size: 0.88rem;
  }

  .ep-fees-note {
    font-size: 0.88rem;
  }
}

/* extra small phones */
@media (max-width: 480px) {
  .ep-fees-section {
    padding-inline: 4%;
  }

  .ep-fees-table th,
  .ep-fees-table td {
    padding: 14px 12px;
    font-size: 0.9rem;
  }

  .ep-fees-heading {
    font-size: 1.5rem;
    letter-spacing: 0.08em;
  }
}

/* ================= ANIMATION ================= */
@keyframes epFeesFloatIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}