* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #0a0a0a;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(168, 85, 247, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(236, 72, 153, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(20, 184, 166, 0.08) 0%, transparent 50%);
    background-attachment: fixed;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(168, 85, 247, 0.03) 2px,
            rgba(168, 85, 247, 0.03) 4px
        );
    pointer-events: none;
    z-index: 0;
}

.container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header Styles */
.main-header {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    color: #111827;
    padding: 1rem 0;
    box-shadow: 0 6px 22px rgba(17, 24, 39, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(17, 24, 39, 0.08);
}

/* .main-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(236, 72, 153, 0.1) 50%, rgba(20, 184, 166, 0.1) 100%);
    z-index: -1;
    opacity: 0.5;
    animation: gradientShift 8s ease infinite;
}

.main-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shimmer 3s infinite;
    z-index: 1;
    pointer-events: none;
} */

@keyframes gradientShift {
    0%, 100% {
        background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(236, 72, 153, 0.1) 50%, rgba(20, 184, 166, 0.1) 100%);
    }
    50% {
        background: linear-gradient(135deg, rgba(236, 72, 153, 0.1) 0%, rgba(20, 184, 166, 0.1) 50%, rgba(168, 85, 247, 0.1) 100%);
    }
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.logo-img {
    height: 44px;
    width: auto;
    display: block;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    font-size: 1.5rem;
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 50%, #14b8a6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 8px rgba(168, 85, 247, 0.5));
}

.logo a {
    font-size: 1.8rem;
    font-weight: 800;
    color: #111827;
    text-decoration: none;
    letter-spacing: 0.2px;
    transition: color 0.2s ease;
}

.logo a:hover {
    color: #7c3aed;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-actions {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 0rem;
    align-items: center;
}

.main-nav a {
    color: #111827;
    text-decoration: none;
    font-weight: 650;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    position: relative;
    background: transparent;
}

.main-nav a::before {
        background: linear-gradient(135deg, rgba(124, 58, 237, 0.10) 0%, rgba(236, 72, 153, 0.10) 100%);
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2) 0%, rgba(236, 72, 153, 0.2) 100%);
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.main-nav a:hover::before,
.main-nav a.active::before {
    opacity: 1;
}

.main-nav a:hover,
.main-nav a.active {
    color: #111827;
    text-shadow: none;
    transform: none;
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
    color: #6b7280;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* Mega Menu Styles */
.mega-menu-content {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.98) 0%, rgba(30, 30, 46, 0.98) 100%);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(17, 24, 39, 0.10);
    border-radius: 16px;
    padding: 1rem;
    width: 900px;
    max-width: 90vw;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 12px 40px rgba(0,0,0,0.6), 0 0 0 1px rgba(168, 85, 247, 0.1);
    box-shadow: 0 18px 50px rgba(17, 24, 39, 0.16);
    margin-top: 0.5rem;
}

.mega-menu:hover .mega-menu-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-menu-header {
    border-bottom: 1px solid rgba(17, 24, 39, 0.08);
    padding-bottom: 1rem;
}

.mega-menu-all {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #a855f7;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    color: #7c3aed;
}

.mega-menu-all:hover {
    color: #5b21b6;
}

.mega-menu-all:hover {
    color: #ec4899;
    gap: 0.75rem;
}

.mega-menu-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.mega-menu-column {
    display: flex;
    flex-direction: column;
}

.mega-menu-title {
    color: #a855f7;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(168, 85, 247, 0.3);
}

.mega-menu-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mega-menu-column li {
    margin: 0;
}

.mega-menu-column a {
        color: #374151;
    display: block;
    padding: 0.6rem 0.75rem;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-radius: 8px;
    position: relative;
}

.mega-menu-column a::before {
    content: '→';
    position: absolute;
    left: 0;
    opacity: 0;
    transition: all 0.3s ease;
    color: #a855f7;
    color: #7c3aed;
}

.mega-menu-column a:hover {
    background: rgba(124, 58, 237, 0.08);
    color: #111827;
    padding-left: 1.5rem;
    transform: translateX(5px);
}

.mega-menu-column a:hover::before {
    opacity: 1;
    left: 0.5rem;
}

.btn-book {
    background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 50%, #14b8a6 100%);
    background-size: 200% 200%;
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
}

/* Mobile header: hamburger and responsive nav */
.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.nav-backdrop {
    display: none;
}
.nav-close {
    display: none;
}
.nav-toggle .hamburger {
    display: block;
    width: 22px;
    height: 2px;
    background: white;
    background: #111827;
    position: relative;
}
.nav-toggle .hamburger::before,
.nav-toggle .hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 22px;
    height: 2px;
    background: white;
    background: #111827;
}
.nav-toggle .hamburger::before { top: -7px; }
.nav-toggle .hamburger::after { top: 7px; }

.nav-toggle.open .hamburger { background: transparent; }
.nav-toggle.open .hamburger::before { top: 0; transform: rotate(45deg); }
.nav-toggle.open .hamburger::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 768px) {
    .nav-toggle { display: inline-flex; }
    .main-header { padding: 1rem 0; }
    .header-content { gap: 1rem; }

    .nav-backdrop {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(17, 24, 39, 0.38);
        backdrop-filter: blur(2px);
        -webkit-backdrop-filter: blur(2px);
        z-index: 998;
    }
    .nav-backdrop.open { display: block; }

    .nav-close {
        position: absolute;
        top: 1rem;
        right: 1rem;
        width: 44px;
        height: 44px;
        align-items: center;
        justify-content: center;
        font-size: 1.75rem;
        line-height: 1;
        color: #111827;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        border-radius: 8px;
        transition: background 0.2s ease;
    }
    .nav-close:hover { background: rgba(17, 24, 39, 0.08); }
    .main-header .main-nav .nav-close { display: flex; }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(86vw, 380px);
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        padding: 2.5rem 1rem 1rem;
        border-left: 1px solid rgba(17, 24, 39, 0.10);
        box-shadow: -18px 0 40px rgba(17, 24, 39, 0.14);
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        z-index: 999;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        transition: right 0.25s ease;
    }
    .main-nav.open { right: 0; }

    .main-nav ul {
        flex-direction: column;
        gap: 0.25rem;
        align-items: stretch;
        width: 100%;
    }
    .main-nav a { padding: 0rem 0rem; display: block; width: 100%; }

    .nav-actions {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
    }
    .user-greet { display: block; margin: 1rem 0 0.5rem; color: #6b7280; font-weight: 650; }

/* Header-specific action buttons (avoid impacting other uses) */
.main-header .btn-login {
    background: transparent;
    color: #111827;
    border: 1px solid rgba(17, 24, 39, 0.14);
}
.main-header .btn-login:hover {
    background: rgba(124, 58, 237, 0.08);
    border-color: rgba(124, 58, 237, 0.35);
}
.main-header .btn-register {
    border: 0;
}
.main-header .user-greet {
    color: #6b7280;
    font-weight: 650;
}

    .mega-menu-content { position: static; width: 100%; padding: 0; margin: 0; border: 0; box-shadow:none; display: none; opacity: 1; visibility: visible; transform: none; }
    .dropdown.open .mega-menu-content { display: block; }
    .dropdown.open .dropdown-arrow { transform: rotate(180deg); }
    .mega-menu-columns { grid-template-columns: 1fr; gap: 0.5rem; }
    .main-nav ul li { border-bottom: 1px solid rgba(17, 24, 39, 0.06); }
    .main-nav ul li:last-of-type { border-bottom: none; }
    .main-nav ul li a { padding: 0.85rem 0.5rem; }

    .city-filter { display: block; width: 100%; margin: 1.5rem 0 1rem; }
    .city-select { width: 100%; padding: 1rem; background: rgba(255,255,255,0.05); }
    
    .btn-book, .btn-login, .btn-register { 
        display: block; 
        width: 100%; 
        margin-top: 1rem; 
        text-align: center;
        padding: 1rem;
    }
    
    .user-greet { display: block; margin: 1rem 0 0.5rem; color: #a855f7; font-weight: 600; }
    
    /* Fix directory layout on tablet/mobile */
    .directory-layout {
        grid-template-columns: 1fr;
    }
    .directory-sidebar {
        position: static;
        margin-bottom: 2rem;
        width: 100%;
    }
}

@media (max-width: 768px) {
    body.nav-open {
        overflow: hidden;
    }
}

.btn-book::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.btn-book:hover::before {
    left: 100%;
}

.btn-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.5), 0 0 20px rgba(168, 85, 247, 0.4);
    background-position: right center;
}

.city-filter {
    position: relative;
}

.city-select {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(30, 30, 46, 0.9) 100%);
    color: white;
    border: 1px solid rgba(168, 85, 247, 0.3);
    padding: 0.6rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.city-select:hover,
.city-select:focus {
    border-color: #a855f7;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2) 0%, rgba(236, 72, 153, 0.2) 100%);
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.3);
}

.city-select option {
    background: #1a1a1a;
    color: white;
}

/* Main Content */
.main-content {
    /* min-height: calc(100vh - 200px); */
    padding: 0;
    position: relative;
    z-index: 1;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url(./assets/img/bg.jpg);;
    background-size: cover;
    background-position: center;
    color: white;
    padding: 5rem 0;
    margin-bottom: 4rem;
    position: relative;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content {
    max-width: 100%;
    text-align: left;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #d1d5db;
    line-height: 1.6;
}

.hero-intro {
    background: rgba(26, 26, 26, 0.8);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255,255,255,0.1);
}

.hero-intro h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #a855f7;
}

.hero-intro p {
    font-size: 1rem;
    margin-bottom: 0;
    color: #d1d5db;
}

.hero-search {
    background: rgba(26, 26, 26, 0.9);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
}

.search-bar {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.search-input {
    flex: 1;
    padding: 1rem;
    background: #0a0a0a;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    color: white;
    font-size: 1rem;
}

.search-input::placeholder {
    color: #6b7280;
}

.search-btn {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.search-btn:hover {
    transform: translateY(-2px);
}

.hero-images {
    display: grid;
    grid-template-columns: 1fr 1fr !important;
    gap: 1rem;
}

.hero-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid rgba(168, 85, 247, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #ec4899 0%, #14b8a6 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(236, 72, 153, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
}

.hero-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
}

.hero-dot.active {
    background: white;
}

/* Section Styles */
.section {
    margin-bottom: 5rem;
    padding: 0 0;
}

.section-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #a855f7 0%, #14b8a6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #9ca3af;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Category Grid */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.category-card {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(168, 85, 247, 0.3);
    border-color: #a855f7;
}

.category-image {
    width: 100%;
    /* height: 200px; */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.category-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: white;
}

.category-card p {
    color: #9ca3af;
    margin-bottom: 1rem;
}

.category-link {
    color: #a855f7;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.category-link:hover {
    color: #14b8a6;
}

/* Celebrity Grid */
.celebrity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.celebrity-card {
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.1);
}

.celebrity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(168, 85, 247, 0.3);
}

.celebrity-card img,
.celebrity-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.celebrity-card-content {
    padding: 1.5rem;
}

.celebrity-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: white;
}

.celebrity-card .role {
    color: #9ca3af;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.celebrity-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.stars {
    color: #fbbf24;
    font-size: 1rem;
}

.rating-text {
    color: #9ca3af;
    font-size: 0.9rem;
}

.celebrity-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #a855f7;
    margin-bottom: 1rem;
}

.btn-book-now {
    background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s ease;
    width: 100%;
    justify-content: center;
}

.btn-book-now:hover {
    transform: translateY(-2px);
}

/* Testimonials */
.testimonials-section {
    margin: 5rem 0;
}

.testimonials-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card {
    background: #1a1a1a;
    border-radius: 16px;
    padding: 3rem;
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
    display: none;
}

.testimonial-card.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.testimonial-quote {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #d1d5db;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #a855f7 0%, #14b8a6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.testimonial-info h4 {
    color: white;
    margin-bottom: 0.25rem;
}

.testimonial-info p {
    color: #9ca3af;
    font-size: 0.9rem;
}

.testimonial-context {
    display: inline-block;
    background: linear-gradient(135deg, #a855f7 0%, #14b8a6 100%);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    color: white;
    margin-top: 0.5rem;
}

.testimonial-nav {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2rem;
    position: absolute;
    top: 50%;
    left: -60px;
    right: -60px;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 10;
}

.testimonial-nav .testimonial-arrow {
    pointer-events: all;
}

.testimonial-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #1a1a1a;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #a855f7;
    transition: all 0.3s ease;
}

.testimonial-arrow:hover {
    background: #a855f7;
    color: white;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
    cursor: pointer;
}

/* Statistics */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.stat-card {
    background: #1a1a1a;
    border-radius: 16px;
    padding: 3rem 1.5rem;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.08);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: #a855f7;
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.15);
}

.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    background: rgba(255,255,255,0.05);
    color: #a855f7;
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 1px solid rgba(168, 85, 247, 0.2);
}

.stat-card:hover .stat-icon {
    background: linear-gradient(135deg, #a855f7 0%, #14b8a6 100%);
    color: white;
    border-color: transparent;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.4);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
    background: none;
    -webkit-text-fill-color: initial;
}

.stat-label {
    color: #9ca3af;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Brands */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

/* Large desktops */
@media (max-width: 1400px) {
  .brands-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

/* Laptops */
@media (max-width: 1200px) {
  .brands-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Tablets */
@media (max-width: 768px) {
  .brands-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}


.brand-logo {
    background: #fff;
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.1);
    height: 120px;
    overflow: hidden;
}

.brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* filter: brightness(0.8); */
    transition: filter 0.3s ease;
}

.brand-logo:hover img {
    filter: brightness(1);
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #a855f7 0%, #14b8a6 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: white;
}

.feature-card p {
    color: #9ca3af;
}

/* Newsletter */
.newsletter-section {
    background: #1a1a1a;
    border-radius: 16px;
    padding: 3rem;
    margin: 5rem 0;
    border: 1px solid rgba(255,255,255,0.1);
}

.newsletter-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.newsletter-input {
    flex: 1;
    min-width: 250px;
    padding: 1rem;
    background: #0a0a0a;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: white;
    font-size: 1rem;
}

.newsletter-input::placeholder {
    color: #6b7280;
}

.newsletter-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.newsletter-stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #9ca3af;
    font-size: 0.9rem;
}

/* Footer */
.main-footer {
    background: #0a0a0a;
    color: white;
    padding: 4rem 0 2rem;
    margin-top: 4rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo-icon {
    font-size: 1.5rem;
    color: #a855f7;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

.footer-description {
    color: #9ca3af;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #1a1a1a;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #a855f7;
    color: white;
    border-color: #a855f7;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: #a855f7;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #6b7280;
    font-size: 0.9rem;
}

.footer-bottom-links {
    /* display: flex; */
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: #6b7280;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #a855f7;
}

.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: #1a1a1a;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a855f7;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-top:hover {
    background: #a855f7;
    color: white;
}

/* Profile Page */
.profile-header-section {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 2rem;
    margin-bottom: 3rem;
        margin-top: 2rem;
}

.profile-main-info {
    background: #1a1a1a;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    gap: 2rem;
}

.profile-image-large {
    position: relative;
    flex-shrink: 0;
}

.profile-image-large img {
    width: 250px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid rgba(168, 85, 247, 0.3);
}

.verified-badge-large {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(16, 185, 129, 0.4);
}

.award-badge-large {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1a1a1a;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 2px 10px rgba(251, 191, 36, 0.4);
}

.profile-header-content h1 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: white;
}

.profile-category {
    font-size: 1.2rem;
    color: #a855f7;
    font-weight: 600;
    margin-bottom: 1rem;
}

.profile-rating-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.rating-stars-large {
    color: #fbbf24;
    font-size: 1.2rem;
}

.rating-value-large {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fbbf24;
}

.reviews-count {
    color: #9ca3af;
    font-size: 1rem;
}

.profile-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.meta-item {
    color: #9ca3af;
    font-size: 0.95rem;
}

.profile-achievements {
    color: #d1d5db;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Budget Card */
.budget-card {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.15) 0%, rgba(236, 72, 153, 0.15) 100%);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.budget-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.budget-header h3 {
    color: white;
    font-size: 1.2rem;
    margin: 0;
}

.budget-badge {
    background: rgba(168, 85, 247, 0.3);
    color: #a855f7;
    padding: 0.3rem 0.7rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.budget-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.currency {
    font-size: 1.5rem;
    color: #a855f7;
    font-weight: 600;
}

.amount {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.budget-note {
    color: #9ca3af;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.budget-book-btn {
    display: block;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.budget-book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.4);
}

/* Profile Tabs */
.profile-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid rgba(255,255,255,0.1);
    overflow-x: auto;
}

.tab-btn {
    padding: 1rem 2rem;
    background: transparent;
    border: none;
    color: #9ca3af;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.tab-btn:hover {
    color: #a855f7;
}

.tab-btn.active {
    color: #a855f7;
    border-bottom-color: #a855f7;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.profile-details-card {
    background: #1a1a1a;
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255,255,255,0.1);
}

.profile-details-card h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: white;
    border-bottom: 2px solid rgba(168, 85, 247, 0.3);
    padding-bottom: 0.5rem;
}

.profile-details-card p {
    color: #d1d5db;
    line-height: 1.8;
    font-size: 1rem;
}

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.specialty-badge {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2) 0%, rgba(236, 72, 153, 0.2) 100%);
    color: #a855f7;
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    border: 1px solid rgba(168, 85, 247, 0.3);
    transition: transform 0.3s ease;
}

.specialty-badge:hover {
    transform: translateY(-3px);
}

/* Gallery Section */
.gallery-section {
    margin-bottom: 2rem;
}

.gallery-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    border: 2px solid rgba(255,255,255,0.1);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    border-color: #a855f7;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 12px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    z-index: 10001;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 3rem;
    cursor: pointer;
    padding: 1rem;
    background: rgba(0,0,0,0.5);
    border-radius: 50%;
    z-index: 10001;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* Reviews Section */
.reviews-section {
    margin-bottom: 2rem;
}

.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(255,255,255,0.1);
}

.reviews-header h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: white;
}

.reviews-summary {
    color: #9ca3af;
    font-size: 0.95rem;
}

.overall-rating {
    text-align: center;
}

.rating-big {
    font-size: 3rem;
    font-weight: 700;
    color: #fbbf24;
    display: block;
}

.stars-big {
    color: #fbbf24;
    font-size: 1.5rem;
    letter-spacing: 3px;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.review-card {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255,255,255,0.1);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #a855f7 0%, #14b8a6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
}

.reviewer-info h4 {
    color: white;
    margin-bottom: 0.25rem;
}

.review-date {
    color: #9ca3af;
    font-size: 0.85rem;
}

.review-rating {
    display: flex;
    gap: 0.2rem;
}

.review-rating .star {
    color: #6b7280;
    font-size: 1.2rem;
}

.review-rating .star.filled {
    color: #fbbf24;
}

.review-comment {
    color: #d1d5db;
    line-height: 1.6;
    margin: 0;
}

/* Booking Form */
.booking-section {
    background: #1a1a1a;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 2rem;
}

.booking-section h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: white;
    border-bottom: 2px solid rgba(168, 85, 247, 0.3);
    padding-bottom: 0.5rem;
}

.booking-form {
    max-width: 800px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #d1d5db;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: #0a0a0a;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #a855f7;
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.2);
}

.form-hint {
    color: #6b7280;
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

/* Availability Calendar */
.availability-calendar {
    background: #0a0a0a;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
    border: 1px solid rgba(255,255,255,0.1);
}

.availability-calendar h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 1rem;
}

.calendar-date {
    background: #1a1a1a;
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.calendar-date.available {
    border-color: rgba(16, 185, 129, 0.5);
    background: rgba(16, 185, 129, 0.1);
}

.calendar-date.available:hover {
    border-color: #10b981;
    background: rgba(16, 185, 129, 0.2);
    transform: scale(1.05);
}

.calendar-date.selected {
    border-color: #a855f7;
    background: rgba(168, 85, 247, 0.2);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.4);
}

.date-day {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
}

.date-month {
    display: block;
    font-size: 0.85rem;
    color: #9ca3af;
    text-transform: uppercase;
}

.submit-booking-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 1rem;
}

.submit-booking-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.4);
}

/* Responsive Profile Page */
@media (max-width: 768px) {
    .profile-header-section {
        grid-template-columns: 1fr;
    }

    .profile-main-info {
        flex-direction: column;
        text-align: center;
    }

    .profile-image-large {
        margin: 0 auto;
    }

    .budget-card {
        position: static;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .calendar-grid {
        grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    }
}

/* Celebrity Directory Styles */
.directory-banner {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.banner-tagline {
    font-size: 1.1rem;
    color: #d1d5db;
    text-align: center;
    margin: 0;
}

.directory-search {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.directory-search-input {
    flex: 1;
    padding: 1rem 1.5rem;
    background: #1a1a1a;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.directory-search-input:focus {
    border-color: #a855f7;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.3);
}

.directory-search-input::placeholder {
    color: #6b7280;
}

.directory-search-btn {
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.directory-search-btn:hover {
    transform: scale(1.05);
}

.directory-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.directory-sidebar {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 2rem;
    height: fit-content;
    position: sticky;
    top: 100px;
    border: 1px solid rgba(255,255,255,0.1);
}

.filter-section {
    margin-bottom: 0;
}

.filter-title {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.filter-group {
    margin-bottom: 2rem;
}

.filter-group-title {
    font-size: 1.1rem;
    color: #a855f7;
    margin-bottom: 1rem;
    font-weight: 600;
}

.category-dropdown {
    width: 100%;
    padding: 0.75rem 1rem;
    background: #0a0a0a;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    color: white;
    font-size: 0.95rem;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.category-dropdown:hover,
.category-dropdown:focus {
    border-color: #a855f7;
    background: rgba(168, 85, 247, 0.1);
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.2);
}

.category-dropdown option {
    background: #1a1a1a;
    color: white;
    padding: 0.5rem;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #d1d5db;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: background-color 0.3s ease;
    font-size: 0.95rem;
}

.filter-option:hover {
    background: rgba(168, 85, 247, 0.1);
}

.filter-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #a855f7;
}

.filter-option span {
    flex: 1;
}

.directory-main {
    min-height: 500px;
}

.directory-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.directory-results {
    color: #d1d5db;
    font-size: 1rem;
}

.directory-results strong {
    color: #a855f7;
    font-weight: 600;
}

.directory-controls {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.sort-label {
    color: #d1d5db;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sort-select {
    padding: 0.5rem 1rem;
    background: #1a1a1a;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    color: white;
    font-size: 0.95rem;
    cursor: pointer;
    outline: none;
    transition: border-color 0.3s ease;
}

/* Auth (login/register) styles */
.auth-section {
    padding: 4rem 0 6rem;
}
.auth-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}
.auth-card {
    background: linear-gradient(180deg, rgba(26,26,26,0.9), rgba(20,20,28,0.9));
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 12px 40px rgba(0,0,0,0.6), 0 0 0 1px rgba(168,85,247,0.04);
}
.auth-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: white;
    background: linear-gradient(135deg, #a855f7 0%, #14b8a6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}
.auth-form .form-row { 
    display: block;
    margin-bottom: 1rem;
}
.auth-form .form-row label {
    display: block;
    color: #d1d5db;
    margin-bottom: 0.5rem;
    font-weight: 600;
}
.auth-form input[type="text"],
.auth-form input[type="email"],
.auth-form input[type="password"],
.auth-form select {
    width: 100%;
    padding: 0.9rem 1rem;
    background: #0a0a0a;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    color: white;
    font-size: 1rem;
}
.auth-form .two-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-actions { display: flex; gap: 1rem; align-items: center; margin-top: 1rem; }
.btn-link { color: #9ca3af; text-decoration: none; font-weight: 600; }
.btn-link:hover { color: #a855f7; }
.auth-errors { background: rgba(220,20,60,0.06); border: 1px solid rgba(220,20,60,0.12); padding: 0.75rem 1rem; border-radius: 8px; margin-bottom: 1rem; }
.auth-errors ul { list-style: disc; padding-left: 1.25rem; color: #ffbaba; }
.auth-success { background: rgba(16,185,129,0.06); border: 1px solid rgba(16,185,129,0.12); padding: 0.75rem 1rem; border-radius: 8px; color: #9beecc; margin-bottom: 1rem; }

.btn-login {
    background: transparent;
    color: white;
    border: 1px solid rgba(255,255,255,0.08);
    padding: 0.55rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}
.btn-register {
    background: linear-gradient(135deg, #06b6d4 0%, #8b5cf6 100%);
    color: white;
    padding: 0.55rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
}

@media (max-width: 768px) {
    .auth-card { padding: 1.5rem; }
    .auth-form .two-cols { grid-template-columns: 1fr; }
    .main-nav ul { gap: 1rem; }
}
/* Booking page specific styles */
.booking-card {
    /* display: grid; */
    /* grid-template-columns: 1fr 360px; */
    gap: 2rem;
    align-items: start;
}
.booking-card .section-title {
    grid-column: 1 / -1;
    margin-bottom: 1rem;
    text-align: left;
}
.booking-form {
    background: linear-gradient(180deg, rgba(10,10,12,0.6), rgba(20,20,28,0.6));
    padding: 1.5rem !important;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.04);
}
.booking-form .form-row { margin-bottom: 1rem; }
.booking-form label { font-weight: 700; color: #d1d5db; margin-bottom: 0.4rem; display:block; }
.booking-form input, .booking-form select, .booking-form textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border-radius: 10px;
    background: #0a0a0a;
    border: 1px solid rgba(255,255,255,0.06);
    color: #ffffff;
}
.booking-form textarea { resize: vertical; }
.booking-summary {
    background: linear-gradient(180deg, rgba(26,26,34,0.95), rgba(16,16,20,0.95));
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.04);
    color: #d1d5db;
    position: sticky;
    top: 120px;
}
.booking-summary h3 { margin-top: 0; color: white; font-size: 1.1rem; }
.booking-summary .meta { display:flex; flex-direction:column; gap:0.5rem; margin:0.75rem 0; }
.booking-summary .meta .row { display:flex; justify-content:space-between; gap:1rem; }
.booking-summary .type-badge {
    display:inline-block; padding:0.35rem 0.6rem; border-radius:999px; font-weight:700; font-size:0.85rem;
}
.type-personal { background: linear-gradient(90deg,#06b6d4,#7c3aed); color: white; }
.type-corporate { background: linear-gradient(90deg,#f97316,#ef4444); color: white; }
.booking-form .form-actions { margin-top: 1.25rem; }
.booking-form .btn-primary { width: 100%; padding: 0.95rem 1rem; font-size:1rem; border-radius:10px; }

/* Small responsive tweaks */
@media (max-width: 980px) {
    .booking-card { grid-template-columns: 1fr; }
    .booking-summary { position: static; top: auto; }
}

/* Corporate Solutions page styles */
.corporate-hero {
    padding: 4.5rem 0;
    background: linear-gradient(180deg, rgba(10,10,20,0.6), rgba(14,14,20,0.6));
    border-bottom: 1px solid rgba(255,255,255,0.03);
}
.hero-wrapper { display: grid; grid-template-columns: 1fr 420px; gap: 2rem; align-items: center; }
.hero-content h1 { font-size: 2.6rem; margin-bottom: 0.5rem; color: white; }
.hero-content .lead { color: #d1d5db; font-size: 1.05rem; margin-bottom: 1rem; max-width: 640px; }
.hero-ctas { display:flex; gap: 1rem; margin-top: 1rem; }
.hero-image { width:100%; height:260px; object-fit:cover; border-radius:12px; border:1px solid rgba(255,255,255,0.06); }
.hero-visual { text-align: right; }

.corporate-features .feature-card { transition: transform 0.35s ease, box-shadow 0.35s ease; }
.corporate-features .feature-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,0.6); }

.process-grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.25rem; margin-top: 1.5rem; }
.process-step { background:#0f0f13; border-radius:12px; padding:1.25rem; border:1px solid rgba(255,255,255,0.03); color:#d1d5db; }
.step-number { width:44px; height:44px; border-radius:50%; display:inline-flex; align-items:center; justify-content:center; font-weight:700; background:linear-gradient(90deg,#a855f7,#ec4899); color:white; margin-bottom:0.75rem; }
.process-step h4 { margin:0 0 0.5rem 0; color:white; }

.contact-cta { margin-top: 2rem; }
.contact-card { display:flex; justify-content:space-between; align-items:center; gap:2rem; background:linear-gradient(180deg, rgba(20,20,28,0.95), rgba(10,10,14,0.95)); padding:1.5rem; border-radius:12px; border:1px solid rgba(255,255,255,0.04); }
.contact-card h3 { margin:0 0 0.25rem 0; color:white; }
.contact-card p { margin:0; color:#c7c7d2; }
.contact-actions { display:flex; gap:1rem; }

@media (max-width: 980px) {
    .hero-wrapper { grid-template-columns: 1fr;
    display: block !important;
    }
    .hero-visual { text-align: left; }
    .hero-image { height:200px; }

    .contact-card { flex-direction:column; align-items:flex-start; }
}

/* Celebrity profile social header */
.profile-socials {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.8rem;
    flex-wrap: wrap;
}
.profile-socials .social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.6rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.03);
    border-radius: 10px;
    color: #d1d5db;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.profile-socials .social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.social-icon { font-size: 1.05rem; display:inline-flex; align-items:center; justify-content:center; }
.social-count { font-size: 0.95rem; color: #9ca3af; font-weight:700; }
.social-instagram { }
.social-youtube { }
.social-twitter { }
.social-facebook { }
.social-tiktok { }

@media (max-width: 768px) {
    .profile-socials { gap: 0.5rem; }
    .social-count { font-size: 0.85rem; }
}

/* Celebrity profile partner logo */
.profile-partner { display:flex; justify-content:center; margin: 1rem 0 1.5rem; }
.profile-partner-logo { max-height:60px; object-fit:contain; filter: drop-shadow(0 6px 18px rgba(0,0,0,0.5)); }

/* Featured testimonial */
.testimonial-feature { display:flex; gap:1rem; align-items:center; background: linear-gradient(90deg, rgba(168,85,247,0.06), rgba(236,72,153,0.03)); border-radius:12px; padding:1rem; margin:1rem 0 1.25rem; border:1px solid rgba(255,255,255,0.03); }
.testimonial-content { flex:1; }
.testimonial-content blockquote { font-size:1.05rem; color:#e6e6f0; margin:0 0 0.5rem; font-style:italic; }
.testimonial-author { color:#c7c7d2; font-weight:700; }
.testimonial-meta { color:#9ca3af; font-weight:600; margin-left:0.5rem; }
.testimonial-badge { background: linear-gradient(90deg,#06b6d4,#8b5cf6); color:white; padding:0.6rem 0.9rem; border-radius:8px; font-weight:800; font-size:0.85rem; }

/* Video section */
.video-section { margin-top:1rem; }
.video-wrapper { position:relative; width:100%; padding-bottom:56.25%; height:0; overflow:hidden; border-radius:12px; box-shadow:0 12px 30px rgba(0,0,0,0.6); }
.video-wrapper iframe { position:absolute; top:0; left:0; width:100%; height:100%; border:0; }
.video-note { margin-top:0.75rem; color:#9ca3af; }

@media (max-width: 768px) {
    .testimonial-feature { flex-direction:column; align-items:flex-start; }
    .testimonial-badge { align-self:flex-end; }
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(3px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.menu-overlay.active { opacity: 1; visibility: visible; }


/* Pricing / availability styles */
.pricing-section { margin-top: 2rem; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 1.25rem; }
.pricing-card { background: linear-gradient(180deg, #0f0f12, #0a0a0d); border-radius: 12px; padding: 1.25rem; border: 1px solid rgba(255,255,255,0.04); display:flex; flex-direction:column; justify-content:space-between; }
.pricing-card.recommended { box-shadow: 0 12px 40px rgba(135, 84, 255, 0.12); transform: translateY(-6px); border: 1px solid rgba(168,85,247,0.12); }
.price-head { margin-bottom: 0.75rem; }
.price-head h3 { margin: 0; color: white; font-size: 1.15rem; }
.price { font-size: 1.4rem; font-weight: 800; color: #a855f7; margin-top: 0.25rem; }
.price-sub { display:block; font-size: 0.8rem; color: #9ca3af; font-weight:600; }
.pricing-features { list-style: none; padding-left: 0; margin: 0.5rem 0 1rem 0; color: #c7c7d2; }
.pricing-features li { padding: 0.35rem 0; border-bottom: 1px dashed rgba(255,255,255,0.03); }
.pricing-footer { display:flex; justify-content:space-between; align-items:center; gap:1rem; }
.availability { padding: 0.35rem 0.6rem; border-radius: 999px; font-weight:700; font-size:0.85rem; }
.availability.instant { background: linear-gradient(90deg,#10b981,#059669); color:white; box-shadow: 0 6px 18px rgba(16,185,129,0.12); }
.availability.limited { background: linear-gradient(90deg,#f59e0b,#f97316); color:white; box-shadow: 0 6px 18px rgba(249,115,22,0.12); }
.pricing-card .btn { padding: 0.55rem 1rem; border-radius: 8px; }

@media (max-width: 980px) {
    .pricing-grid { grid-template-columns: 1fr; }
}

/* Improved badges and recommended ribbon */
.pricing-card { position: relative; overflow: visible; }
.pricing-card.recommended::before {
    content: 'Recommended';
    position: absolute;
    top: -12px;
    left: 14px;
    background: linear-gradient(90deg,#a855f7,#ec4899);
    color: white;
    padding: 0.35rem 0.6rem;
    border-radius: 6px;
    font-weight:700;
    font-size: 0.8rem;
    box-shadow: 0 8px 24px rgba(168,85,247,0.08);
}
.availability { transition: transform 0.18s ease, box-shadow 0.18s ease; }
.availability.instant:hover { transform: translateY(-2px); }
.availability.limited { opacity: 0.95; }





.sort-select:hover,
.sort-select:focus {
    border-color: #a855f7;
}

.view-toggle {
    display: flex;
    gap: 0.5rem;
    background: #1a1a1a;
    padding: 0.25rem;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.2);
}

.view-btn {
    padding: 0.5rem 0.75rem;
    background: transparent;
    border: none;
    color: #9ca3af;
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.view-btn:hover {
    background: rgba(168, 85, 247, 0.2);
    color: #a855f7;
}

.view-btn.active {
    background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
    color: white;
}

.celebrity-directory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.celebrity-directory-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.celebrity-directory-list .directory-celebrity-card {
    display: flex;
    flex-direction: row;
    max-width: 100%;
}

.celebrity-directory-list .celebrity-card-image-wrapper {
    width: 200px;
    flex-shrink: 0;
}

.celebrity-directory-list .celebrity-card-image {
    height: 100%;
    min-height: 200px;
}

.directory-celebrity-card {
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.directory-celebrity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(168, 85, 247, 0.3);
    border-color: #a855f7;
}

.celebrity-card-image-wrapper {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.celebrity-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.directory-celebrity-card:hover .celebrity-card-image {
    transform: scale(1.1);
}

.verified-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    box-shadow: 0 2px 10px rgba(16, 185, 129, 0.4);
    z-index: 2;
}

.available-badge {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(59, 130, 246, 0.4);
    z-index: 2;
}

.limited-slot-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(245, 158, 11, 0.4);
    z-index: 2;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

.favorite-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.favorite-btn:hover {
    background: rgba(236, 72, 153, 0.8);
    transform: scale(1.1);
}

.celebrity-card-info {
    padding: 1.5rem;
}

.celebrity-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.celebrity-card-name {
    font-size: 1.3rem;
    color: white;
    font-weight: 600;
    flex: 1;
    margin: 0;
}

.award-badge {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1a1a1a;
    padding: 0.3rem 0.6rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(251, 191, 36, 0.3);
}

.celebrity-card-category {
    color: #9ca3af;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.category-label {
    color: #6b7280;
    font-size: 0.85rem;
}

.category-value {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2) 0%, rgba(236, 72, 153, 0.2) 100%);
    color: #a855f7;
    padding: 0.3rem 0.7rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.celebrity-rating-section {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.celebrity-rating-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fbbf24;
}

.celebrity-rating-stars {
    color: #fbbf24;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.celebrity-reviews {
    color: #9ca3af;
    font-size: 0.85rem;
}

.celebrity-specialty {
    margin-bottom: 0.75rem;
}

.specialty-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2) 0%, rgba(236, 72, 153, 0.2) 100%);
    color: #a855f7;
    padding: 0.4rem 0.8rem;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.celebrity-card-price {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.celebrity-card-btn {
    display: block;
    width: 100%;
    padding: 0.75rem;
    background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.celebrity-card-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(236, 72, 153, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .header-content {
        flex-wrap: wrap;
    }

    /* Keep drawer nav as panel; don't override .main-header .main-nav */
    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    .mega-menu-content {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        width: 100%;
        max-width: 100%;
        left: 0;
        margin-top: 0.5rem;
        display: none;
        padding: 1.5rem;
    }

    .mega-menu.active .mega-menu-content {
        display: block;
    }

    .mega-menu-columns {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .dropdown-toggle {
        cursor: pointer;
    }

    .city-filter {
        width: 100%;
        margin-top: 1rem;
    }

    .city-select {
        width: 100%;
    }

    .btn-book {
        width: 100%;
        text-align: center;
        margin-top: 1rem;
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
    }

    .hero-images {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 20px;
    }

.contact-header h1 {
    font-size: 20px;
    padding-top: 20px;
}
    .hero p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
                padding: 10px 10px 10px 10px;
        text-align: center;
    }
.hero-content h1 {
    font-size: 1.6rem;
}
    .footer-content {
        grid-template-columns: 1fr;
            gap: 1rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .profile-header {
        flex-direction: column;
        text-align: center;
    }

    .profile-image {
        margin: 0 auto;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-input {
        width: 100%;
    }

    .directory-layout {
        grid-template-columns: 1fr;
    }

    .directory-sidebar {
        position: static;
        margin-bottom: 2rem;
    }

    .directory-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .directory-controls {
        width: 100%;
        justify-content: space-between;
    }

    .celebrity-directory-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .celebrity-directory-list .directory-celebrity-card {
        flex-direction: column;
    }

    .celebrity-directory-list .celebrity-card-image-wrapper {
        width: 100%;
    }

    .category-grid,
    .celebrity-grid {
        grid-template-columns: 1fr;
    }
}

/* About page styles */
.about-hero { background: linear-gradient(180deg, rgba(24,24,34,0.6), rgba(10,10,12,0.6)); padding: 4rem 0; margin-bottom: 2rem; }
.about-hero-inner { display: grid; grid-template-columns: 1fr 320px; gap: 2rem; align-items: center; }
.about-hero-text h1 { font-size: 2.5rem; color: #fff; margin-bottom: 1rem; }
.about-hero-text .lead { color: #d1d5db; margin-bottom: 1.25rem; }
.about-hero-stats { display:flex; flex-direction: column; gap: 1rem; }
.about-hero-stats .stat { background: #1a1a1a; padding: 1rem; border-radius: 10px; text-align: center; border: 1px solid rgba(255,255,255,0.05); }
.stat-number { font-size: 1.6rem; font-weight: 700; color: #a855f7; }
.stat-label { color: #9ca3af; font-size: 0.95rem; }
.about-section { padding: 2rem 0 4rem; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 2rem; }
.about-card { background: #1a1a1a; padding: 1.5rem; border-radius: 12px; border: 1px solid rgba(255,255,255,0.05); }
.about-card h2 { color: #fff; margin-bottom: 0.75rem; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1.5rem; margin-top: 1.5rem; }
.team-card { background: #1a1a1a; padding: 1rem; border-radius: 12px; text-align: center; border: 1px solid rgba(255,255,255,0.05); }
.team-card img { width: 100%; height: 180px; object-fit: cover; border-radius: 8px; margin-bottom: 0.75rem; }
.team-card h4 { color: #fff; margin-bottom: 0.25rem; }
.muted { color: #9ca3af; }
.about-cta { text-align: center; margin-top: 2.5rem; }
.about-cta .btn { padding: 0.9rem 2rem; }
@media (max-width: 800px) { .about-hero-inner { grid-template-columns: 1fr; } .about-grid { grid-template-columns: 1fr; } }

/* Blog styles */
.blog-hero {
    padding: 3.5rem 0 2.5rem;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}
.blog-hero h1 {
    font-size: 2.4rem;
    margin-bottom: 0.5rem;
}
.blog-hero p {
    color: #6b7280;
}
.blog-list {
    padding: 3rem 0 4rem;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}
.blog-card {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: column;
}
.blog-card-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}
.blog-card-content {
    padding: 1.5rem;
    color: #111827;
}
.blog-title a {
    color: #111827;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
}
.blog-title a:hover {
    color: #7c3aed;
}
.blog-meta {
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 0.75rem;
}
.blog-excerpt {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1rem;
}
.blog-read-more {
    color: #7c3aed;
    font-weight: 600;
    text-decoration: none;
}
.blog-read-more:hover {
    color: #5b21b6;
}
.blog-empty {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    color: #4b5563;
    text-align: center;
}

.blog-details {
    padding: 3rem 0 4rem;
    background-color: #fff;
}
.blog-details-hero h1 {
    font-size: 2.2rem;
    color: #111827;
    margin-bottom: 0.75rem;
}
.blog-featured-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 16px;
    margin: 1.5rem 0 2rem;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
}
.blog-details-content {
    background: #ffffff;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    color: #111827;
    line-height: 1.8;
}
.blog-tags {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.blog-tag {
    padding: 0.35rem 0.7rem;
    background: rgba(124, 58, 237, 0.12);
    color: #4c1d95;
    border-radius: 999px;
    font-size: 0.85rem;
}

/* Success Stories */
.success-hero {
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    padding: 3rem 0;
}
.success-hero h1 {
    margin: 0 0 0.5rem;
    font-size: 2.25rem;
}
.success-hero p {
    margin: 0;
    font-size: 1.05rem;
}

.success-list {
    padding: 2.5rem 0 3.5rem;
    background: rgba(124, 58, 237, 0.03);
}
.success-empty {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 14px;
    padding: 1.25rem 1.5rem;
    color: #6b7280;
}

.success-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
}

.success-card {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: column;
}

.success-card-media img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.success-card-body {
    padding: 1.25rem;
}

.success-name {
    margin: 0 0 0.75rem;
    color: #111827;
    font-size: 1.15rem;
    font-weight: 800;
}

.success-content {
    color: #374151;
    line-height: 1.65;
}
.success-content p { margin: 0 0 0.75rem; }
.success-content p:last-child { margin-bottom: 0; }

@media (max-width: 768px) {
    .success-hero { padding: 2.25rem 0; }
    .success-hero h1 { font-size: 1.8rem; }
    .success-card-media img { height: 190px; }
}

@media (max-width: 768px) {
    .blog-hero h1 { font-size: 2rem; }
    .blog-featured-image img { height: 260px; }
    .blog-details-content { padding: 1.25rem; }
}
