/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: #4ecdc4;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #26a69a;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-image {
    height: 65px;
    width: auto;
    /* transition: all 0.3s ease; */
}

/* .logo-image:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
} */

.text-logo {
    display: flex;
    flex-direction: column;
}

.nav-logo h2 {
    color: #4ecdc4;
    font-size: 2rem;
    font-weight: 800;
    margin: 0;
    position: relative;
}

.nav-logo h2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #4ecdc4;
    transition: width 0.3s ease;
}

.nav-logo:hover h2::after {
    width: 100%;
}

.logo-tagline {
    font-size: 0.8rem;
    color: #888;
    display: block;
    margin-top: -5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #4ecdc4;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Desktop and tablet - maintain full height */
@media (min-width: 769px) {
    .hero {
        height: 100vh;
    }
    
    #hero-video {
        width: 100%;
        height: 100vh;
        object-fit: cover;
    }
}

/* Mobile devices - 16:9 aspect ratio */
@media (max-width: 768px) {
    .hero {
        height: 56.25vw; /* 16:9 aspect ratio */
        min-height: 300px; /* Minimum height for very small screens */
        max-height: 70vh; /* Maximum height to not take too much screen */
    }
    
    #hero-video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

/* Very small mobile devices */
@media (max-width: 480px) {
    .hero {
        height: 56.25vw; /* Maintain 16:9 aspect ratio */
        min-height: 250px;
        max-height: 60vh;
    }
}

.hero-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-element {
    position: absolute;
    background: rgba(78, 205, 196, 0.1);
    border-radius: 50%;
    animation: floatUpDown 6s ease-in-out infinite;
}

.element-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.element-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.element-3 {
    width: 80px;
    height: 80px;
    top: 80%;
    left: 20%;
    animation-delay: 4s;
}

.hero-content {
    text-align: center;
    z-index: 3;
    animation: fadeInUp 1s ease-out;
    position: relative;
    max-width: 1200px;
    padding: 0 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 25px;
    border-radius: 50px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: pulse 3s infinite;
}

.hero-badge i {
    color: #ffd700;
    font-size: 1.2rem;
}

.hero-badge span {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #4ecdc4;
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: #cccccc;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
    font-weight: 500;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.title-line {
    display: block;
    color: #4ecdc4;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #cccccc;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.hero-buttons .btn {
    padding: 18px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.hero-buttons .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.6s ease;
}

.hero-buttons .btn:hover::before {
    left: 100%;
}

.hero-buttons .btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: #4ecdc4;
    color: white;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(78, 205, 196, 0.8);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-primary:hover::before {
    left: 0;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid #4ecdc4;
}

.btn-secondary:hover {
    background: #4ecdc4;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(78, 205, 196, 0.3);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid #4ecdc4;
    padding: 10px 20px;
    font-size: 1rem;
}

.btn-outline:hover {
    background: #4ecdc4;
    transform: translateY(-2px);
}

/* Modal Button Styles - Smaller Size */
.modal-container .btn,
.modal-overlay .btn,
.form-actions .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 25px;
}

.modal-container .btn-primary,
.modal-overlay .btn-primary,
.form-actions .btn-primary {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.modal-container .btn-secondary,
.modal-overlay .btn-secondary,
.form-actions .btn-secondary {
    padding: 10px 20px;
    font-size: 0.9rem;
    border-width: 1px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    z-index: 3;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid #4ecdc4;
    border-bottom: 2px solid #4ecdc4;
    transform: rotate(45deg);
}

/* Categories Section */
.categories {
    padding: 100px 0;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
}

.section-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(78, 205, 196, 0.05);
    animation: rotateAndFloat 15s linear infinite;
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: -5%;
    animation-delay: 0s;
}

.circle-2 {
    width: 200px;
    height: 200px;
    top: 70%;
    right: -5%;
    animation-delay: 5s;
}

.circle-3 {
    width: 150px;
    height: 150px;
    top: 40%;
    left: 80%;
    animation-delay: 10s;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(78, 205, 196, 0.1);
    color: #4ecdc4;
    padding: 12px 25px;
    border-radius: 50px;
    margin-bottom: 25px;
    border: 1px solid rgba(78, 205, 196, 0.3);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-badge i {
    font-size: 1.1rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fff;
    text-transform: uppercase;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #4ecdc4;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.section-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.mini-stat {
    text-align: center;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.mini-stat:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    border-color: rgba(78, 205, 196, 0.3);
}

.mini-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #4ecdc4);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.mini-label {
    display: block;
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
    font-weight: 500;
}

/* Compact Search and Filter Bar */
.search-filter-bar {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding: 15px 20px;
    background: rgba(78, 205, 196, 0.08);
    border-radius: 50px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.search-filter-bar:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.search-container {
    flex: 1;
    min-width: 200px;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 15px;
    color: #4ecdc4;
    font-size: 1rem;
    z-index: 2;
}

.search-input {
    width: 100%;
    padding: 10px 15px 10px 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    color: #ffffff;
    font-size: 0.9rem;
    outline: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.search-input:focus {
    border-color: #4ecdc4;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 15px rgba(78, 205, 196, 0.2);
}

.search-input::placeholder {
    color: #aaa;
}

.clear-search-btn {
    position: absolute;
    right: 8px;
    background: rgba(255, 107, 107, 0.3);
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    color: #ff6b6b;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.clear-search-btn:hover {
    background: rgba(255, 107, 107, 0.5);
    transform: scale(1.1);
}

.filters-container {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-dropdown {
    position: relative;
}

.filter-select {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    min-width: 120px;
}

.filter-select:hover {
    border-color: #4ecdc4;
    background: rgba(255, 255, 255, 0.15);
}

.filter-select:focus {
    border-color: #4ecdc4;
    box-shadow: 0 0 10px rgba(78, 205, 196, 0.3);
}

.filter-select option {
    background: #1a1a1a;
    color: #ffffff;
    padding: 8px;
}

.clear-all-btn {
    background: #4ecdc4;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.clear-all-btn:hover {
    transform: scale(1.1) rotate(180deg);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

/* Results Bar */
.results-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 10px 20px;
    background: rgba(78, 205, 196, 0.1);
    border-radius: 25px;
    border: 1px solid rgba(78, 205, 196, 0.2);
    backdrop-filter: blur(10px);
}

.results-bar.no-results {
    background: rgba(255, 107, 107, 0.1);
    border-color: rgba(255, 107, 107, 0.2);
}

.results-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #4ecdc4;
}

.results-bar.no-results .results-text {
    color: #ff6b6b;
}

.active-filters-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.filter-tag {
    background: rgba(78, 205, 196, 0.2);
    color: #4ecdc4;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: all 0.3s ease;
}

.filter-tag:hover {
    background: rgba(78, 205, 196, 0.3);
}

.remove-filter-tag {
    background: none;
    border: none;
    color: #4ecdc4;
    cursor: pointer;
    font-size: 0.7rem;
    padding: 0;
    margin-left: 2px;
    transition: all 0.3s ease;
}

.remove-filter-tag:hover {
    color: #ff6b6b;
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .search-filter-bar {
        flex-direction: column;
        gap: 12px;
        padding: 15px;
        border-radius: 20px;
    }
    
    .search-container {
        width: 100%;
        min-width: unset;
    }
    
    .filters-container {
        width: 100%;
        justify-content: space-between;
        gap: 8px;
    }
    
    .filter-select {
        min-width: 80px;
        font-size: 0.8rem;
        padding: 6px 8px;
    }
    
    .results-bar {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .active-filters-tags {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .filters-container {
        grid-template-columns: 1fr 1fr;
        gap: 6px;
    }
    
    .filter-select {
        font-size: 0.75rem;
        padding: 5px 6px;
    }
    
    .clear-all-btn {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
}

/* No Artists Message */
.no-artists-message {
    text-align: center;
    padding: 60px 20px;
    color: #888;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 2px dashed rgba(255, 255, 255, 0.1);
    margin: 20px 0;
}

/* Category Tabs - Enhanced Design */
.category-tabs {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 60px;
    padding: 0;
    position: relative;
    width: 100%;
}

.category-tabs::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(78, 205, 196, 0.3), transparent);
    z-index: -1;
}

.tab-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: #cccccc;
    padding: 7px 15px;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-weight: 600;
    font-size: 0.75rem;
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    flex: 1;
    min-width: 0;
}

.tab-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.tab-btn:hover::before {
    left: 100%;
}

.tab-btn:hover {
    border-color: #4ecdc4;
    color: #4ecdc4;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(78, 205, 196, 0.25);
    background: rgba(78, 205, 196, 0.1);
}

.tab-btn.active {
    border-color: #4ecdc4;
    color: #4ecdc4;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(78, 205, 196, 0.25);
    background: rgba(78, 205, 196, 0.1);
    z-index: 10;
}



.tab-btn i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.tab-btn:hover i,
.tab-btn.active i {
    transform: scale(1.2);
}

/* Artists Container */
.artists-container {
    position: relative;
    min-height: 400px;
}

/* 5 Artists Per Row Layout */
.artists-grid {
    display: none;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    animation: fadeInUp 0.6s ease-out;
}

.artists-grid.active {
    display: grid;
}

/* Force 5 columns on larger screens */
@media (min-width: 1001px) {
    .artists-grid,
    .artists-grid.active {
        grid-template-columns: repeat(5, 1fr) !important;
        gap: 20px;
    }
    
    /* Optimize card proportions for 5-column layout */
    .artist-image {
        height: 220px;
    }
    
    .artist-info {
        padding: 8px;
    }
    
    .artist-info h3 {
        font-size: 0.95rem;
    }
    
    .artist-role {
        font-size: 0.85rem;
        margin-bottom: 6px;
    }
}

@media (max-width: 1000px) {
    .artists-grid,
    .artists-grid.active {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 18px;
    }
}

@media (max-width: 768px) {
    .artists-grid,
    .artists-grid.active {
        grid-template-columns: 1fr !important;
        gap: 15px;
        padding: 0 20px;
    }
    
    /* Reduced card size for mobile */
    .artist-card {
        width: 280px;
        max-width: 280px;
        min-width: 280px;
        margin: 0 auto;
    }
    
    .artist-image {
        height: 280px !important;
    }
    
    .artist-info {
        padding: 8px;
    }
    
    .artist-info h3 {
        font-size: 0.9rem;
        margin-bottom: 0;
    }
    
    .artist-role {
        font-size: 0.8rem;
        margin-bottom: 6px;
    }
}

@media (max-width: 480px) {
    .artists-grid,
    .artists-grid.active {
        grid-template-columns: 1fr !important;
        gap: 12px;
        padding: 0 15px;
    }
    
    /* Further reduced card size for smaller mobile */
    .artist-card {
        width: 250px;
        max-width: 250px;
        min-width: 250px;
        margin: 0 auto;
    }
    
    .artist-image {
        height: 250px !important;
    }
    
    .artist-info {
        padding: 6px;
    }
    
    .artist-info h3 {
        font-size: 0.85rem;
        margin-bottom: 0;
    }
    
    .artist-role {
        font-size: 0.75rem;
        margin-bottom: 4px;
    }
}

/* Extra small devices (320px and below) */
@media (max-width: 320px) {
    .artists-grid,
    .artists-grid.active {
        padding: 0 10px;
        gap: 10px;
    }
    
    /* Smallest card size for very small screens */
    .artist-card {
        border-radius: 20px;
        width: 220px;
        max-width: 220px;
        min-width: 220px;
        margin: 0 auto;
    }
    
    .artist-image {
        height: 220px !important;
    }
    
    .artist-info {
        padding: 5px;
    }
    
    .artist-info h3 {
        font-size: 0.8rem;
        margin-bottom: 0;
    }
    
    .artist-role {
        font-size: 0.7rem;
        margin-bottom: 3px;
    }
}

/* Artist Cards - Premium Design */
.artist-card {
    background: #1e1e1e;
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.artist-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #4ecdc4;
    border-radius: 25px 25px 0 0;
}

.artist-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border-color: rgba(78, 205, 196, 0.5);
}

.artist-card:hover::before {
    animation-duration: 1s;
}

.artist-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

/* Mobile override for artist image height */
@media (max-width: 768px) {
    .artist-image {
        height: 280px !important;
    }
}

@media (max-width: 480px) {
    .artist-image {
        height: 250px !important;
    }
}

@media (max-width: 320px) {
    .artist-image {
        height: 220px !important;
    }
}

.artist-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(transparent, rgba(30, 30, 30, 0.8));
    pointer-events: none;
}

.artist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.4s ease, opacity 0.3s ease;
    filter: brightness(0.9) contrast(1.1);
    background-color: #2a2a2a;
    opacity: 1;
    color: transparent; /* Hide alt text */
    font-size: 0; /* Hide alt text */
}

/* Hide alt text on broken images */
.artist-image img:not([src]) {
    opacity: 0.7;
    background-color: #2a2a2a;
    color: transparent;
}

/* Loading state for images */
.artist-image img[src=""] {
    opacity: 0.5;
    background-color: #2a2a2a;
}

.artist-card:hover .artist-image img {
    filter: brightness(1) contrast(1.2);
}

.artist-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.7));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    backdrop-filter: blur(4px);
    gap: 12px;
}

.artist-card:hover .artist-overlay {
    opacity: 1;
}

.artist-overlay .btn {
    transform: translateY(20px) scale(0.9);
    transition: all 0.4s ease;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.artist-card:hover .artist-overlay .btn {
    transform: translateY(0) scale(1);
}

.artist-overlay .btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(78, 205, 196, 0.4);
}

/* Smaller Quick View Button */
.artist-overlay .quick-view-small {
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.artist-card:hover .artist-overlay .quick-view-small {
    transform: translateY(0) scale(1);
}

.artist-overlay .quick-view-small:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 10px 25px rgba(78, 205, 196, 0.3);
}

.artist-info {
    padding: 10px;
    position: relative;
    text-align: center;
}

.artist-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 25px;
    right: 25px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(78, 205, 196, 0.3), transparent);
}

.artist-info h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    color: #ffffff;
    line-height: 1.2;
    position: relative;
}

.artist-role {
    color: #4ecdc4;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.artist-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding: 8px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.artist-location {
    color: #aaa;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.artist-location i {
    color: #4ecdc4;
    font-size: 0.9rem;
}

.artist-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.artist-rating .stars {
    display: flex;
    gap: 2px;
}

.artist-rating i {
    color: #ffd700;
    font-size: 0.9rem;
    filter: drop-shadow(0 0 3px rgba(255, 215, 0, 0.3));
}

.artist-rating span {
    color: #ccc;
    font-weight: 600;
    font-size: 0.9rem;
    margin-left: 5px;
}

.artist-price-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.artist-price {
    color: #4ecdc4;
    font-weight: 700;
    font-size: 1.3rem;
}

.artist-experience {
    background: rgba(78, 205, 196, 0.1);
    color: #4ecdc4;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(78, 205, 196, 0.2);
}

.artist-status {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(76, 175, 80, 0.9);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: pulse 2s infinite;
}

.artist-status.busy {
    background: rgba(255, 193, 7, 0.9);
}

.artist-status.unavailable {
    background: rgba(244, 67, 54, 0.9);
}

/* Artist Card Enhancements */
.artist-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(78, 205, 196, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    border-radius: 25px;
}

.artist-card:hover::after {
    opacity: 1;
}



.artist-role::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 30px;
    height: 2px;
    background: #4ecdc4;
    border-radius: 2px;
}

.artist-info h3::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: #4ecdc4;
    transition: width 0.4s ease;
    border-radius: 2px;
}

.artist-card:hover .artist-info h3::after {
    width: 50px;
}

/* New Premium Elements */
.artist-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #4ecdc4;
    color: #000;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 10;
    animation: pulse 2s infinite;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.artist-badge i {
    font-size: 0.9rem;
}

.artist-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.favorite-btn {
    background: none;
    border: none;
    color: #888;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 5px;
    border-radius: 50%;
}

.favorite-btn:hover {
    color: #ff6b6b;
    background: rgba(255, 107, 107, 0.1);
    transform: scale(1.1);
}

.favorite-btn.active {
    color: #ff6b6b;
}

.favorite-btn.active i {
    font-weight: 900;
}

.artist-rating small {
    color: #888;
    font-size: 0.8rem;
    margin-left: 5px;
}

.artist-specialties {
    margin: 15px 0;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.specialty-tag {
    background: rgba(78, 205, 196, 0.15);
    color: #4ecdc4;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(78, 205, 196, 0.3);
    transition: all 0.3s ease;
}

.specialty-tag:hover {
    background: rgba(78, 205, 196, 0.25);
    transform: translateY(-1px);
}

/* Coming Soon Placeholder */
.coming-soon {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 40px;
    background: #1a1a1a;
    border-radius: 20px;
    border: 2px dashed #333;
}

.coming-soon i {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #4ecdc4;
}

.coming-soon h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.coming-soon p {
    color: #888;
    font-size: 1.1rem;
}

/* About Section */
.about {
    padding: 100px 0;
    background: #0a0a0a;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    background: linear-gradient(45deg, #4ecdc4);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-text p {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 40px;
    line-height: 1.8;
}

.stats {
    display: flex;
    gap: 40px;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(45deg, #4ecdc4);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.stat p {
    color: #888;
    font-weight: 500;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 300px;
    height: 300px;
    background: #1a1a1a;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #4ecdc4;
    border: 2px solid #333;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid #333;
}

.contact-item i {
    font-size: 1.5rem;
    color: #4ecdc4;
    width: 30px;
}

.contact-item h4 {
    margin-bottom: 5px;
    color: #ffffff;
}

.contact-item p {
    color: #cccccc;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #333;
    border-radius: 10px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4ecdc4;
    box-shadow: 0 0 10px rgba(78, 205, 196, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #888;
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: #1a1a1a;
    color: #ffffff;
    padding: 10px;
}

/* Global dropdown styling for all forms */
select {
    background: rgba(255, 255, 255, 0.05) !important;
    color: #ffffff !important;
}

select option {
    background: #1a1a1a !important;
    color: #ffffff !important;
    padding: 10px;
}

/* Modal form dropdown styling */
.modal-container select,
.quick-booking-form select,
.booking-form select,
.message-form select {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid #333 !important;
    color: #ffffff !important;
    border-radius: 10px;
    padding: 15px 20px;
}

.modal-container select option,
.quick-booking-form select option,
.booking-form select option,
.message-form select option {
    background: #1a1a1a !important;
    color: #ffffff !important;
    padding: 10px;
}

/* Global button color consistency */
button[type="submit"],
input[type="submit"],
.btn:not(.btn-secondary):not(.btn-outline):not(.btn-reset) {
    background: #4ecdc4 !important;
    color: white !important;
    border: none !important;
}

button[type="submit"]:hover,
input[type="submit"]:hover,
.btn:not(.btn-secondary):not(.btn-outline):not(.btn-reset):hover {
    background: rgba(78, 205, 196, 0.8) !important;
    box-shadow: 0 8px 25px rgba(78, 205, 196, 0.4) !important;
}

/* Footer */
.footer {
    background: #0a0a0a;
    padding: 60px 0 20px;
    border-top: 1px solid #333;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-section h3 {
    color: #4ecdc4;
    font-size: 1.5rem;
}

.footer-section p,
.footer-section li {
    color: #cccccc;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #4ecdc4;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #4ecdc4;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #888;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-10px) translateX(-50%);
    }
    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: rgba(10, 10, 10, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        backdrop-filter: blur(10px);
        padding: 20px 0;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 10px 0;
    }

    .nav-link {
        font-size: 1.1rem;
        padding: 10px 20px;
        display: block;
        border-radius: 25px;
        transition: all 0.3s ease;
    }

    .nav-link:hover {
        background: rgba(78, 205, 196, 0.1);
    }

    /* Logo adjustments for mobile */
    .logo-image {
        height: 50px;
    }

    .nav-container {
        height: 70px;
        padding: 0 15px;
    }

    /* Hero Section Mobile */
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        padding: 0 10px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .hero-buttons .btn {
        padding: 15px 30px;
        font-size: 1rem;
        width: 250px;
        justify-content: center;
    }

    .hero-badge {
        padding: 10px 20px;
        margin-bottom: 25px;
        gap: 8px;
    }

    .hero-badge i {
        font-size: 1rem;
    }

    .hero-badge span {
        font-size: 0.8rem;
    }

    .hero-stats {
        gap: 20px;
        margin: 30px 0;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .scroll-indicator {
        bottom: 20px;
    }

    .scroll-arrow {
        width: 16px;
        height: 16px;
    }

    /* Section improvements */
    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }

    .section-stats {
        gap: 15px;
    }

    .mini-stat {
        padding: 12px 15px;
    }

    .mini-number {
        font-size: 1.3rem;
    }

    .mini-label {
        font-size: 0.75rem;
    }

    /* Category tabs mobile */
    .category-tabs {
        gap: 5px;
        padding: 0;
        justify-content: center;
    }

    .tab-btn {
        padding: 8px 12px;
        font-size: 0.65rem;
        min-width: auto;
    }

    .tab-btn i {
        font-size: 0.9rem;
    }

    .tab-btn span {
        display: none;
    }

    .tab-btn.active span {
        display: inline;
        margin-left: 5px;
    }

    /* About section mobile */
    .about {
        padding: 60px 0;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .about-text h2 {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .about-text p {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .stats {
        justify-content: center;
        gap: 30px;
        flex-wrap: wrap;
    }

    .stat h3 {
        font-size: 2rem;
    }

    .image-placeholder {
        width: 250px;
        height: 250px;
        font-size: 3rem;
    }

    /* Contact section mobile */
    .contact {
        padding: 60px 0;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-item {
        padding: 15px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .contact-item i {
        font-size: 2rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 0.9rem;
    }

    /* Footer mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-section h4 {
        margin-bottom: 15px;
    }

    .social-links {
        justify-content: center;
        margin-top: 20px;
    }

    /* Pagination for tablets */
    .pagination-container {
        margin-top: 30px;
        padding: 20px 15px;
    }

    .pagination-controls {
        gap: 12px;
    }

    .pagination-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .pagination-numbers {
        gap: 8px;
    }

    .pagination-number {
        width: 38px;
        height: 38px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    /* Navigation for small mobile */
    .nav-container {
        padding: 0 10px;
        height: 65px;
    }

    .logo-image {
        height: 45px;
    }

    .nav-menu {
        top: 65px;
        padding: 15px 0;
    }

    .nav-link {
        font-size: 1rem;
        padding: 8px 15px;
    }

    /* Hero section for small mobile */
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.1;
        margin-bottom: 1rem;
        padding: 0 15px;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        padding: 0 15px;
    }

    .hero-badge {
        padding: 8px 16px;
        margin-bottom: 20px;
        gap: 6px;
    }

    .hero-badge i {
        font-size: 0.9rem;
    }

    .hero-badge span {
        font-size: 0.75rem;
    }

    .hero-buttons .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
        width: 220px;
    }

    .hero-stats {
        gap: 15px;
        margin: 25px 0;
        flex-wrap: wrap;
    }

    .scroll-indicator {
        bottom: 15px;
    }

    .scroll-arrow {
        width: 14px;
        height: 14px;
    }

    .stat-item {
        min-width: 80px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    /* General container and button adjustments */
    .container {
        padding: 0 15px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    /* Section adjustments */
    .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
        padding: 0 15px;
    }

    .section-stats {
        gap: 10px;
        flex-wrap: wrap;
    }

    .mini-stat {
        padding: 10px 12px;
        min-width: 80px;
    }

    .mini-number {
        font-size: 1.1rem;
    }

    .mini-label {
        font-size: 0.7rem;
    }

    /* Category tabs for small mobile */
    .category-tabs {
        flex-direction: column;
        gap: 5px;
        max-height: 200px;
        overflow-y: auto;
        padding: 10px;
        background: rgba(255, 255, 255, 0.02);
        border-radius: 15px;
        margin-bottom: 30px;
    }

    .tab-btn {
        width: 100%;
        justify-content: flex-start;
        padding: 10px 15px;
        border-radius: 10px;
        font-size: 0.8rem;
    }

    .tab-btn span {
        display: inline !important;
        margin-left: 8px;
    }

    .tab-btn i {
        font-size: 1rem;
    }

    /* About section for small mobile */
    .about {
        padding: 50px 0;
    }

    .about-text h2 {
        font-size: 1.7rem;
        margin-bottom: 15px;
    }

    .about-text p {
        font-size: 0.9rem;
        margin-bottom: 25px;
        line-height: 1.6;
    }

    .stats {
        gap: 20px;
        flex-direction: column;
        align-items: center;
    }

    .stat {
        min-width: 120px;
    }

    .stat h3 {
        font-size: 1.8rem;
    }

    .stat p {
        font-size: 0.9rem;
    }

    .image-placeholder {
        width: 200px;
        height: 200px;
        font-size: 2.5rem;
    }

    /* Contact section for small mobile */
    .contact {
        padding: 50px 0;
    }

    .contact-item {
        padding: 12px;
        gap: 8px;
    }

    .contact-item i {
        font-size: 1.5rem;
    }

    .contact-item h4 {
        font-size: 1rem;
    }

    .contact-item p {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 0.85rem;
    }

    /* Footer for small mobile */
    .footer {
        padding: 40px 0 20px;
    }

    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 12px;
    }

    .footer-section p,
    .footer-section li {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .social-links a {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .footer-bottom {
        padding: 15px 0;
        font-size: 0.8rem;
    }

    /* Pagination for small mobile */
    .pagination-container {
        margin-top: 25px;
        padding: 18px 15px;
    }

    .pagination-controls {
        gap: 10px;
    }

    .pagination-btn {
        padding: 10px 18px;
        font-size: 0.8rem;
    }

    .pagination-numbers {
        gap: 6px;
    }

    .pagination-number {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }

    /* Coming soon adjustments */
    .coming-soon {
        padding: 30px 15px;
    }

    .coming-soon i {
        font-size: 2.5rem;
    }

    .coming-soon h3 {
        font-size: 1.3rem;
    }

    .coming-soon p {
        font-size: 0.9rem;
    }
}

/* Extra small devices (320px and below) */
@media (max-width: 320px) {
    /* Navigation for very small screens */
    .nav-container {
        padding: 0 8px;
        height: 60px;
    }

    .logo-image {
        height: 40px;
    }

    .nav-menu {
        top: 60px;
        padding: 12px 0;
    }

    .nav-link {
        font-size: 0.9rem;
        padding: 6px 12px;
    }

    /* Hero section for very small screens */
    .hero-title {
        font-size: 1.5rem;
        line-height: 1.1;
        margin-bottom: 0.8rem;
        padding: 0 10px;
    }

    .hero-subtitle {
        font-size: 0.8rem;
        margin-bottom: 1.2rem;
        padding: 0 10px;
    }

    .hero-badge {
        padding: 6px 12px;
        margin-bottom: 15px;
        gap: 4px;
    }

    .hero-badge i {
        font-size: 0.8rem;
    }

    .hero-badge span {
        font-size: 0.7rem;
    }

    .hero-buttons .btn {
        padding: 10px 20px;
        font-size: 0.8rem;
        width: 200px;
    }

    .hero-stats {
        gap: 10px;
        margin: 20px 0;
    }

    .scroll-indicator {
        bottom: 10px;
    }

    .scroll-arrow {
        width: 12px;
        height: 12px;
    }

    .stat-item {
        min-width: 70px;
    }

    .stat-number {
        font-size: 1.3rem;
    }

    .stat-label {
        font-size: 0.65rem;
    }

    /* General adjustments for very small screens */
    .container {
        padding: 0 10px;
    }

    .btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    /* Section adjustments */
    .section-title {
        font-size: 1.3rem;
    }

    .section-subtitle {
        font-size: 0.8rem;
        padding: 0 10px;
    }

    .section-stats {
        gap: 8px;
    }

    .mini-stat {
        padding: 8px 10px;
        min-width: 70px;
    }

    .mini-number {
        font-size: 1rem;
    }

    .mini-label {
        font-size: 0.65rem;
    }

    /* Category tabs for very small screens */
    .category-tabs {
        padding: 8px;
        margin-bottom: 25px;
        max-height: 180px;
    }

    .tab-btn {
        padding: 8px 12px;
        font-size: 0.75rem;
    }

    .tab-btn span {
        margin-left: 6px;
    }

    .tab-btn i {
        font-size: 0.9rem;
    }

    /* About section for very small screens */
    .about {
        padding: 40px 0;
    }

    .about-text h2 {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }

    .about-text p {
        font-size: 0.8rem;
        margin-bottom: 20px;
        line-height: 1.5;
    }

    .stats {
        gap: 15px;
    }

    .stat {
        min-width: 100px;
    }

    .stat h3 {
        font-size: 1.5rem;
    }

    .stat p {
        font-size: 0.8rem;
    }

    .image-placeholder {
        width: 180px;
        height: 180px;
        font-size: 2rem;
    }

    /* Contact section for very small screens */
    .contact {
        padding: 40px 0;
    }

    .contact-item {
        padding: 10px;
        gap: 6px;
    }

    .contact-item i {
        font-size: 1.3rem;
    }

    .contact-item h4 {
        font-size: 0.9rem;
    }

    .contact-item p {
        font-size: 0.75rem;
        line-height: 1.3;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 8px 10px;
        font-size: 0.8rem;
    }

    /* Footer for very small screens */
    .footer {
        padding: 30px 0 15px;
    }

    .footer-section h4 {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }

    .footer-section p,
    .footer-section li {
        font-size: 0.75rem;
        line-height: 1.3;
    }

    .social-links a {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }

    .footer-bottom {
        padding: 12px 0;
        font-size: 0.7rem;
    }

    /* Pagination for very small screens */
    .pagination-container {
        margin-top: 25px;
        padding: 15px 10px;
    }

    .pagination-controls {
        gap: 8px;
        flex-direction: column;
    }

    .pagination-btn {
        padding: 8px 15px;
        font-size: 0.75rem;
    }

    .pagination-numbers {
        gap: 5px;
        order: -1;
        margin-bottom: 10px;
    }

    .pagination-number {
        width: 30px;
        height: 30px;
        font-size: 0.75rem;
    }

    /* Coming soon adjustments for very small screens */
    .coming-soon {
        padding: 25px 10px;
    }

    .coming-soon i {
        font-size: 2rem;
    }

    .coming-soon h3 {
        font-size: 1.1rem;
    }

    .coming-soon p {
        font-size: 0.8rem;
    }
}

/* Landscape orientation for mobile devices */
@media screen and (max-height: 500px) and (orientation: landscape) {
    .hero {
        height: 100vh;
        min-height: 500px;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .hero-buttons {
        margin-top: 20px;
        gap: 1rem;
    }

    .hero-buttons .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .hero-stats {
        margin: 20px 0;
        gap: 15px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    .nav-container {
        height: 60px;
    }

    .nav-menu {
        top: 60px;
    }

    .logo-image {
        height: 40px;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .artist-image img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }

    .logo-image {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .btn:hover,
    .artist-card:hover,
    .tab-btn:hover,
    .nav-link:hover {
        transform: none;
    }

    .btn:active,
    .artist-card:active,
    .tab-btn:active {
        transform: scale(0.98);
    }

    /* Increase touch targets */
    .nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .tab-btn {
        min-height: 44px;
    }

    .pagination-btn,
    .pagination-number {
        min-height: 44px;
        min-width: 44px;
    }
}

/* Enhanced Animations */
@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatUpDown {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
    }
}

@keyframes rotateAndFloat {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
    100% {
        transform: translateY(0) rotate(360deg);
    }
}

/* Loading Animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid #333;
    border-top: 3px solid #4ecdc4;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Modal Loading and Error States */
.modal-loading-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    text-align: center;
    min-height: 400px;
}

.modal-loading-state .loading-spinner {
    margin-bottom: 30px;
    width: 60px;
    height: 60px;
    border-width: 4px;
}

.modal-loading-state h3 {
    color: #4ecdc4;
    margin-bottom: 15px;
    font-size: 1.5rem;
    font-weight: 600;
}

.modal-loading-state p {
    color: #ccc;
    font-size: 1rem;
    opacity: 0.8;
}

.modal-error-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    text-align: center;
    min-height: 400px;
}

.modal-error-state i {
    font-size: 4rem;
    color: #ff6b6b;
    margin-bottom: 30px;
}

.modal-error-state h3 {
    color: #ff6b6b;
    margin-bottom: 15px;
    font-size: 1.5rem;
    font-weight: 600;
}

.modal-error-state p {
    color: #ccc;
    font-size: 1rem;
    margin-bottom: 30px;
    opacity: 0.8;
}

/* Quick View Modal Styles - Shubharambh Productions Professional Layout */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(15px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    border-radius: 0;
    max-width: 1000px;
    width: 95%;
    max-height: 95vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.8),
        0 0 0 1px rgba(78, 205, 196, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transform: scale(0.8) translateY(30px);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.active .modal-container {
    transform: scale(1) translateY(0);
}

/* Modal Close Button */
.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.modal-close:hover {
    background: rgba(255, 107, 107, 0.9);
    transform: scale(1.05);
}

/* Professional Header Banner - Artist Live Theme */
.modal-header-banner {
    background: linear-gradient(135deg, #000);
    border-bottom: 3px solid #4ecdc4;
    padding: 20px 30px;
    position: relative;
    overflow: hidden;
}

.modal-header-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: radial-gradient(ellipse at top right, rgba(255, 107, 53, 0.1), transparent 70%); */
}

.company-brand {
    position: relative;
    z-index: 2;
}

.company-brand h1 {
    font-size: 1.9rem;
    font-weight: 900;
    color: #4ecdc4;
    margin: 0;
    letter-spacing: 2.5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-family: 'Arial Black', Arial, sans-serif;
}

.company-brand p {
    color: #e0e0e0;
    margin: 5px 0 0 0;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.header-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 100%;
    /* background: linear-gradient(45deg, transparent, rgba(255, 107, 53, 0.15)); */
    opacity: 0.8;
}

/* Main Content Wrapper */
.modal-content-wrapper {
    display: flex;
    min-height: 500px;
}

/* Left Panel - Artist Image */
.modal-left-panel {
    flex: 0 0 300px;
    background: linear-gradient(180deg, #0a0a0a);
    border-right: 1px solid rgba(78, 205, 196, 0.3);
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.artist-main-image {
    position: relative;
    width: 250px;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
}

.artist-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
}



.artist-basic-info {
    text-align: center;
    width: 100%;
}

.artist-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.artist-title {
    color: #4ecdc4;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.artist-stats {
    display: flex;
    justify-content: space-around;
    gap: 15px;
}

.stat-item {
    text-align: center;
}

.stat-item i {
    color: #4ecdc4;
    font-size: 1.2rem;
    margin-bottom: 5px;
    display: block;
}

.stat-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    display: block;
}

.stat-label {
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Right Panel - Details */
.modal-right-panel {
    flex: 1;
    padding: 30px;
    background: linear-gradient(180deg, #000);
}

.artist-details-section h3 {
    font-size: 1.4rem;
    color: #4ecdc4;
    margin: 0 0 25px 0;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid #4ecdc4;
    padding-bottom: 10px;
}

.details-grid {
    margin-bottom: 30px;
}

.detail-row {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(78, 205, 196, 0.3);
}

.detail-label {
    flex: 0 0 150px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ccc;
    font-weight: 600;
    font-size: 0.9rem;
}

.detail-label i {
    color: #4ecdc4;
    width: 16px;
}

.detail-value {
    color: #fff;
    font-weight: 500;
}

.price-highlight {
    color: #4ecdc4;
    font-size: 1.1rem;
    font-weight: 700;
}

/* Specializations */
.specializations-section {
    margin: 30px 0;
}

.specializations-section h4 {
    color: #4ecdc4;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.specialty-item {
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(78, 205, 196, 0.3);
    padding: 12px 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.specialty-item:hover {
    background: rgba(255, 107, 53, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
}

.specialty-item i {
    color: #4ecdc4;
    font-size: 1rem;
}

.specialty-item span {
    color: #fff;
    font-weight: 500;
}

/* About Section */
.about-section {
    margin: 30px 0;
}

.about-section h4 {
    color: #4ecdc4;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-section p {
    color: #ccc;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Videos Section */
.videos-section {
    margin: 30px 0;
}

.videos-section h4 {
    color: #4ecdc4;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.video-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.video-item:hover {
    transform: translateY(-5px);
}

.video-thumbnail {
    width: 100%;
    height: 200px;
    position: relative;
}

.video-thumbnail iframe {
    width: 100%;
    height: 100%;
    border-radius: 8px 8px 0 0;
    border: none;
}

.video-title {
    padding: 10px;
    color: #cccccc;
    font-size: 0.9rem;
    font-weight: 500;
}

.no-videos {
    color: #999999;
    font-style: italic;
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.btn-primary-action,
.btn-secondary-action,
.btn-tertiary-action {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary-action {
    background: #4ecdc4;
    color: #fff;
}

.btn-primary-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(78, 205, 196, 0.4);
}

.btn-secondary-action {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary-action:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-tertiary-action {
    background: transparent;
    color: #4ecdc4;
    border: 1px solid #4ecdc4;
}

.btn-tertiary-action:hover {
    background: rgba(78, 205, 196, 0.1);
    transform: translateY(-2px);
}

/* Footer Banner */
.modal-footer-banner {
    background: linear-gradient(135deg, #000);
    border-top: 3px solid #4ecdc4;
    padding: 15px 30px;
    text-align: center;
}

.modal-footer-banner p {
    color: #ccc;
    margin: 0;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .modal-container {
        width: 98%;
        max-height: 98vh;
        margin: 1vh;
    }
    
    .modal-content-wrapper {
        flex-direction: column;
    }
    
    .modal-left-panel {
        flex: none;
        padding: 20px;
    }
    
    .artist-main-image {
        width: 200px;
        height: 240px;
    }
    
    .artist-stats {
        flex-direction: row;
        justify-content: space-around;
    }
    
    .modal-right-panel {
        padding: 20px;
    }
    
    .details-grid .detail-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .detail-label {
        flex: none;
    }
    
    .specialties-grid {
        grid-template-columns: 1fr;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .company-brand h1 {
        font-size: 1.4rem;
    }
    
    .modal-header-banner,
    .modal-footer-banner {
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .modal-left-panel {
        padding: 15px;
    }
    
    .artist-main-image {
        width: 180px;
        height: 220px;
    }
    
    .artist-name {
        font-size: 1.3rem;
    }
    
    .company-brand h1 {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }
    
    .artist-stats {
        gap: 10px;
    }
    
    .stat-value {
        font-size: 1rem;
    }
}

/* Pagination Styles */
.pagination-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    padding: 30px 20px;
}

.pagination-info {
    color: #888;
    font-size: 14px;
    text-align: center;
}

.pagination-controls {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.pagination-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: #4ecdc4;
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(78, 205, 196, 0.3);
}

.pagination-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(78, 205, 196, 0.4);
    background: #26a69a;
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    background: #666;
}

.pagination-numbers {
    display: flex;
    gap: 8px;
    align-items: center;
}

.pagination-number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-number:hover {
    background: rgba(78, 205, 196, 0.3);
    border-color: #4ecdc4;
    transform: scale(1.1);
}

.pagination-number.active {
    background: #4ecdc4;
    border-color: #4ecdc4;
    box-shadow: 0 4px 15px rgba(78, 205, 196, 0.4);
}

.pagination-ellipsis {
    color: #888;
    font-weight: bold;
    padding: 0 5px;
}

/* Responsive Pagination */
@media (max-width: 768px) {
    .pagination-container {
        margin-top: 30px;
        padding: 20px 15px;
    }
    
    .pagination-controls {
        gap: 10px;
    }
    
    .pagination-btn {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .pagination-number {
        width: 35px;
        height: 35px;
        font-size: 13px;
    }
    
    .pagination-numbers {
        gap: 5px;
    }
}