/* Home Page Specific Styles */

/* Hero Section */
.hero-section {
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

/* Video Background */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    background-image: url('https://images.unsplash.com/photo-1598488035139-bdbb2231ce04?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    filter: brightness(0.9) contrast(1.1);
}

/* Fallback for mobile devices or when video fails to load */
@media (max-width: 768px) {
    .video-background video {
        display: none;
    }
}

/* For reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    .video-background video {
        display: none;
    }
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Ultra-wide hero adjustments */
@media (min-width: 1400px) {
    .hero-content {
        max-width: 1400px;
        padding: 0 40px;
    }

    .hero-title {
        font-size: 4rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }
}

@media (min-width: 1600px) {
    .hero-content {
        max-width: 1600px;
        padding: 0 60px;
    }

    .hero-title {
        font-size: 4.5rem;
    }

    .hero-subtitle {
        font-size: 1.6rem;
    }
}

@media (min-width: 1920px) {
    .hero-content {
        max-width: 1800px;
        padding: 0 80px;
    }

    .hero-title {
        font-size: 5rem;
    }

    .hero-subtitle {
        font-size: 1.8rem;
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

/* Hero Search */
.hero-search {
    max-width: 700px;
    margin: 0 auto 40px;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.hero-search-wrapper {
    display: flex;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    height: 56px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-search-input {
    flex: 1;
    border: none;
    padding: 0 24px;
    font-size: 1.1rem;
    outline: none;
    background: transparent;
    color: #333;
    font-weight: 400;
}

.hero-search-input::placeholder {
    color: #888;
    font-weight: 400;
}

.hero-search-btn {
    background: var(--brand-primary);
    color: white;
    border: none;
    padding: 0 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    min-width: 60px;
    position: relative;
    overflow: hidden;
}

.hero-search-btn:hover {
    background: #6d9aaa;
    transform: scale(1.02);
}

.hero-search-btn:active {
    transform: scale(0.98);
}

.hero-search-btn svg {
    width: 20px;
    height: 20px;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

.quick-search-tags {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, 0.8);
}

.search-tag {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 6px 16px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.search-tag:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Ultra-wide screen responsiveness */
@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
        padding: 0 40px;
    }
}

@media (min-width: 1600px) {
    .container {
        max-width: 1600px;
        padding: 0 60px;
    }
}

@media (min-width: 1920px) {
    .container {
        max-width: 1800px;
        padding: 0 80px;
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #64748b;
}

/* Categories Section */
.categories-section {
    padding: 80px 0;
    background: white;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

/* Ultra-wide categories adjustments */
@media (min-width: 1400px) {
    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        gap: 40px;
    }
}

@media (min-width: 1600px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 50px;
    }
}

@media (min-width: 1920px) {
    .categories-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 60px;
    }
}

.category-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.category-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-card:hover .category-overlay {
    opacity: 1;
}

.explore-text {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.category-content {
    padding: 25px;
}

.category-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.category-content p {
    color: #64748b;
    margin-bottom: 15px;
    line-height: 1.5;
}

.sample-count {
    display: inline-block;
    background: var(--brand-secondary);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* View All Button */
.view-all-container {
    text-align: center;
    margin-top: 40px;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: var(--brand-primary);
    border: 2px solid var(--brand-primary);
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.view-all-btn:hover {
    background: var(--brand-primary);
    color: white;
    transform: translateX(5px);
}

/* Why Choose Section - Clean & Crisp */
.why-choose-section {
    padding: 80px 0;
    background: var(--surface-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

/* Ultra-wide features grid adjustments */
@media (min-width: 1400px) {
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
        gap: 40px;
    }
}

@media (min-width: 1600px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 50px;
    }
}

@media (min-width: 1920px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 60px;
    }
}

.feature-card {
    text-align: center;
    padding: 40px 20px;
    transition: all 0.3s ease;
    border-radius: 12px;
    border: 1px solid var(--surface-accent);
    background: white;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(134, 176, 189, 0.15);
    border-color: var(--brand-primary);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--brand-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 12px;
}

.feature-card p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Stats Section */
.stats-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    padding: 50px 0;
    text-align: center;
    border-top: 1px solid #f1f5f9;
}

.stat-item {
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-3px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--brand-primary);
    display: block;
    margin-bottom: 8px;
}

.stat-label {
    color: #64748b;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .stats-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    /* Carousel mobile adjustments */
    .artists-carousel-container {
        padding: 0 60px;
    }

    .carousel-nav {
        width: 40px;
        height: 40px;
    }

    .carousel-nav.prev {
        left: 15px;
    }

    .carousel-nav.next {
        right: 15px;
    }

    .artist-card-home {
        flex: 0 0 100%; /* Show exactly 1 card on mobile */
        width: 100%;
        min-width: 280px;
    }
}

/* Section Divider */
.section-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    margin: 0 auto;
    width: 80%;
    max-width: 800px;
}

/* Artists Section */
.artists-section {
    padding: 80px 0;
    background: var(--surface-light);
    position: relative;
}

.artists-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 800px;
    height: 2px;
    background: rgba(255, 255, 255, 0.8);
}

.artists-carousel-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 100px; /* Space for navigation buttons */
}

/* Ultra-wide carousel adjustments */
@media (min-width: 1400px) {
    .artists-carousel-container {
        max-width: 1600px;
        padding: 0 120px;
    }
}

@media (min-width: 1600px) {
    .artists-carousel-container {
        max-width: 1800px;
        padding: 0 140px;
    }
}

@media (min-width: 1920px) {
    .artists-carousel-container {
        max-width: 2000px;
        padding: 0 160px;
    }
}

.artists-carousel {
    overflow: hidden;
    border-radius: 12px;
}

.artists-grid {
    display: flex;
    gap: 30px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Navigation Buttons */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: white;
    border: 2px solid var(--brand-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.carousel-nav:hover {
    background: var(--brand-primary);
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 6px 20px rgba(134, 176, 189, 0.3);
}

.carousel-nav svg {
    width: 20px;
    height: 20px;
    stroke: var(--brand-primary);
    transition: stroke 0.3s ease;
}

.carousel-nav:hover svg {
    stroke: white;
}

.carousel-nav.prev {
    left: 30px;
}

.carousel-nav.next {
    right: 30px;
}

.carousel-nav:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

.artist-card-home {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    flex: 0 0 calc(33.333% - 20px); /* Show exactly 3 cards on desktop */
    width: calc(33.333% - 20px);
    min-width: 280px;
}

.artist-card-home:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.artist-image {
    position: relative;
    height: 200px;
}

.artist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.artist-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #fbbf24;
    color: #78350f;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.artist-info {
    padding: 25px;
}

.artist-info h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.artist-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.stars {
    color: #fbbf24;
    font-size: 1rem;
}

.artist-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
}

.artist-tags .tag {
    background: white;
    color: var(--brand-primary);
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.85rem;
    border: 1px solid var(--surface-accent);
}

.artist-bio {
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.artist-actions {
    display: flex;
    gap: 10px;
}

.artist-actions button {
    flex: 1;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 0.85rem;
    white-space: nowrap;
}

.btn-secondary {
    background: transparent;
    color: var(--brand-primary);
    border: 1px solid var(--brand-primary);
}

.btn-secondary:hover {
    background: var(--brand-primary);
    color: white;
}

.btn-primary {
    background: var(--brand-primary);
    color: white;
}

.btn-primary:hover {
    background: #6d9aaa;
    transform: translateY(-1px);
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background: white;
}

.steps-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 20px;
    gap: 0;
}

/* Ultra-wide steps container adjustments */
@media (min-width: 1400px) {
    .steps-container {
        max-width: 1400px;
        padding: 0 40px;
    }

    .step {
        flex: 0 1 250px;
    }
}

@media (min-width: 1600px) {
    .steps-container {
        max-width: 1600px;
        padding: 0 60px;
    }

    .step {
        flex: 0 1 300px;
    }
}

@media (min-width: 1920px) {
    .steps-container {
        max-width: 1800px;
        padding: 0 80px;
    }

    .step {
        flex: 0 1 350px;
    }
}

.step {
    flex: 0 1 200px;
    text-align: center;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--surface-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-primary);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(134, 176, 189, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}

.step.animate-in .step-icon::before {
    width: 100%;
    height: 100%;
}

.step-icon svg {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.step:hover .step-icon {
    transform: scale(1.1);
    background: var(--brand-primary);
    color: white;
    box-shadow: 0 8px 25px rgba(134, 176, 189, 0.3);
}

.step:hover .step-icon svg {
    transform: scale(1.1);
}

.step h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #2c3e50;
    transition: color 0.3s ease;
}

.step:hover h3 {
    color: var(--brand-primary);
}

.step p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Icon pulse animation */
@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.step.animate-in .step-icon {
    animation: iconPulse 2s ease-in-out infinite;
}

.step-connector {
    width: 120px;
    height: 2px;
    background: #e5e7eb;
    position: relative;
    overflow: hidden;
    margin-top: 40px; /* Align with center of step icons */
    flex-shrink: 0;
}

.step-connector::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--brand-primary);
    transition: width 0.8s ease;
}

.step-connector.animate-line::before {
    width: 100%;
}

.step-connector::after {
    content: '';
    position: absolute;
    right: -8px;
    top: -6px;
    width: 0;
    height: 0;
    border-left: 14px solid #e5e7eb;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    transition: border-left-color 0.3s ease 0.5s;
}

.step-connector.animate-line::after {
    border-left-color: var(--brand-primary);
}

.cta-container {
    text-align: center;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.cta-btn {
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.cta-btn.primary {
    background: var(--brand-primary);
    color: white;
}

.cta-btn.primary:hover {
    transform: scale(1.05);
}

.cta-btn.secondary {
    background: white;
    color: var(--brand-primary);
    border: 2px solid var(--brand-primary);
}

.cta-btn.secondary:hover {
    background: var(--brand-primary);
    color: white;
}

/* Trust Section */
.trust-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.clients-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.logo-item {
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.logo-item:hover {
    opacity: 1;
}

.logo-item img {
    height: 60px;
    width: auto;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: relative;
}

.quote-icon {
    font-size: 3rem;
    color: #e5e7eb;
    line-height: 1;
    margin-bottom: 15px;
}

.testimonial-card p {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    color: #2c3e50;
    font-size: 1rem;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: #64748b;
    font-size: 0.9rem;
}

/* Footer */
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px 40px;
}

.footer-section h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.footer-section h4 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer-section p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #667eea;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #f3f4f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4b5563;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--brand-primary);
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding: 20px;
    border-top: 1px solid #e5e7eb;
    color: #64748b;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== MOBILE RESPONSIVE DESIGN ===== */

/* Mobile Hero Section */
@media (max-width: 479px) {
    .hero-section {
        padding: 60px 0 40px;
        min-height: 500px;
    }

    .hero-content {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 24px;
        line-height: 1.3;
        margin-bottom: 16px;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 24px;
        line-height: 1.4;
    }

    .hero-search {
        margin-top: 20px;
    }

    .hero-search-wrapper {
        flex-direction: column;
        gap: 12px;
    }

    .hero-search-input {
        width: 100%;
        font-size: 16px;
        padding: 14px 16px;
        border-radius: 8px;
    }

    .hero-search-btn {
        width: 100%;
        height: 48px;
        border-radius: 8px;
        font-size: 16px;
        font-weight: 600;
    }
}

@media (min-width: 480px) and (max-width: 767px) {
    .hero-section {
        padding: 80px 0 60px;
        min-height: 600px;
    }

    .hero-content {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 28px;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 18px;
        margin-bottom: 28px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-stats {
        gap: 30px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .collections-grid {
        grid-template-columns: 1fr;
    }

    .artists-grid {
        grid-template-columns: 1fr;
    }

    .steps-container {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }

    .step {
        flex: none;
        width: 100%;
        max-width: 300px;
    }

    .step-connector {
        display: none;
    }

    .testimonials {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    /* Enhanced Mobile Optimizations */
    .container {
        padding: 0 16px;
    }

    .section-title {
        font-size: 24px;
        text-align: center;
    }

    .section-subtitle {
        font-size: 16px;
        text-align: center;
        margin-bottom: 32px;
    }

    /* Mobile Categories */
    .categories-section {
        padding: 40px 0;
    }

    .category-card {
        border-radius: 12px;
        overflow: hidden;
        box-shadow: var(--shadow-sm);
        transition: transform 0.2s ease;
    }

    .category-card:active {
        transform: scale(0.98);
    }

    .category-image {
        height: 180px;
    }

    .category-content {
        padding: 16px;
    }

    .category-content h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .category-content p {
        font-size: 14px;
        margin-bottom: 8px;
        color: var(--gray-600);
    }

    /* Mobile Features */
    .why-choose-section {
        padding: 40px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0 8px;
    }

    .feature-card {
        text-align: center;
        padding: 24px 16px;
        border-radius: 12px;
        background: white;
        box-shadow: var(--shadow-xs);
    }

    .feature-icon {
        margin-bottom: 16px;
        color: var(--brand-primary);
    }

    /* Mobile Artists */
    .artists-section {
        padding: 40px 0;
    }

    .artists-carousel-container {
        padding: 0 16px;
        overflow: visible;
    }

    .carousel-nav {
        display: none;
    }

    .artists-carousel {
        overflow: visible;
        border-radius: 0;
    }

    .artists-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        transform: none !important;
    }

    .artist-card-home {
        display: flex;
        align-items: center;
        gap: 16px;
        padding: 16px;
        background: white;
        border-radius: 12px;
        box-shadow: var(--shadow-sm);
        transition: transform 0.2s ease;
    }

    .artist-card-home:active {
        transform: scale(0.98);
    }

    .artist-image {
        width: 60px;
        height: 60px;
        flex-shrink: 0;
    }

    .artist-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 50%;
    }

    .artist-info {
        flex: 1;
        min-width: 0;
    }

    .artist-info h4 {
        font-size: 16px;
        margin-bottom: 4px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .artist-rating {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .artist-tags {
        display: flex;
        gap: 6px;
        margin-bottom: 8px;
        flex-wrap: wrap;
    }

    .artist-tags .tag {
        font-size: 12px;
        padding: 4px 8px;
    }

    .artist-bio {
        font-size: 13px;
        line-height: 1.4;
        color: var(--gray-600);
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        margin: 0;
    }

    .artist-actions {
        display: flex;
        flex-direction: column;
        gap: 6px;
        flex-shrink: 0;
        width: 80px;
    }

    .artist-actions button {
        font-size: 12px;
        padding: 6px 8px;
        min-height: 32px;
        border-radius: 6px;
        white-space: nowrap;
    }

    /* Mobile How It Works */
    .how-it-works {
        padding: 40px 0;
        background: white;
    }

    .steps-container {
        padding: 0;
        max-width: none;
    }

    .step {
        padding: 20px 16px;
        text-align: center;
    }

    .step-icon {
        margin-bottom: 16px;
        color: var(--brand-primary);
    }

    .step h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .step p {
        font-size: 15px;
        line-height: 1.5;
        color: var(--gray-600);
    }

    /* Mobile CTA */
    .cta-container {
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding: 0 16px;
        margin-top: 32px;
    }

    .cta-btn {
        width: 100%;
        min-height: 48px;
        font-size: 16px;
        font-weight: 600;
        border-radius: 8px;
        padding: 14px 24px;
        transition: all 0.2s ease;
    }

    .cta-btn:active {
        transform: scale(0.98);
    }

    /* Mobile Testimonials */
    .trust-section {
        padding: 40px 0;
        background: var(--gray-50);
    }

    .testimonials {
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding: 0 8px;
    }

    .testimonial-card {
        background: white;
        padding: 20px 16px;
        border-radius: 12px;
        box-shadow: var(--shadow-xs);
    }

    .testimonial-card p {
        font-size: 15px;
        line-height: 1.5;
        margin-bottom: 16px;
        color: var(--gray-700);
    }

    .testimonial-author {
        text-align: left;
    }

    .testimonial-author strong {
        font-size: 16px;
        color: var(--black);
    }

    .testimonial-author span {
        font-size: 14px;
        color: var(--gray-500);
    }

    /* Mobile View All Button */
    .view-all-container {
        text-align: center;
        margin-top: 32px;
    }

    .view-all-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        width: auto;
        min-width: 200px;
        min-height: 48px;
        font-size: 16px;
        font-weight: 600;
        padding: 14px 24px;
        border-radius: 8px;
        transition: all 0.2s ease;
    }

    .view-all-btn:active {
        transform: scale(0.98);
    }
}

/* ===== EXTRA SMALL MOBILE OPTIMIZATIONS (320px - 479px) ===== */
@media (max-width: 479px) {
    .hero-section {
        padding: 50px 0 30px;
        min-height: 450px;
    }

    .hero-title {
        font-size: 22px;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 15px;
        line-height: 1.4;
    }

    .section-title {
        font-size: 22px;
    }

    .section-subtitle {
        font-size: 15px;
    }

    .categories-section,
    .why-choose-section,
    .artists-section,
    .how-it-works,
    .trust-section {
        padding: 32px 0;
    }

    .container {
        padding: 0 12px;
    }

    .feature-card,
    .testimonial-card {
        padding: 16px 12px;
    }

    .artist-card-home {
        padding: 12px;
        gap: 12px;
    }

    .artist-image {
        width: 50px;
        height: 50px;
    }

    .artist-info h4 {
        font-size: 15px;
    }

    .artist-rating {
        font-size: 13px;
    }

    .artist-bio {
        font-size: 12px;
    }

    .artist-actions {
        width: 70px;
    }

    .artist-actions button {
        font-size: 11px;
        min-height: 28px;
        padding: 4px 6px;
    }
}

/* ===== LANDSCAPE MOBILE OPTIMIZATIONS ===== */
@media (max-width: 767px) and (orientation: landscape) {
    .hero-section {
        min-height: 350px;
        padding: 40px 0 30px;
    }

    .hero-title {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .hero-search {
        margin-top: 16px;
    }

    .categories-section,
    .why-choose-section,
    .artists-section,
    .how-it-works,
    .trust-section {
        padding: 30px 0;
    }

    .section-title {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .section-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
    position: relative;
    width: 100%;
    text-align: center;
    padding: 30px 0;
    z-index: 3;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: var(--white);
}

.scroll-indicator:hover .scroll-arrow {
    transform: translateY(-5px);
}

.scroll-arrow {
    width: 32px;
    height: 32px;
    border: 2px solid var(--brand-primary);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    box-shadow: 0 4px 12px rgba(134, 176, 189, 0.2);
    animation: bounce 2s infinite;
    transition: all 0.3s ease;
}

.scroll-arrow svg {
    width: 14px;
    height: 14px;
    color: var(--brand-primary);
    transform: rotate(90deg);
}


@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Hide scroll indicator on mobile devices */
@media (max-width: 767px) {
    .scroll-indicator {
        display: none;
    }
}

/* Hide scroll indicator in landscape mobile */
@media (max-width: 767px) and (orientation: landscape) {
    .scroll-indicator {
        display: none;
    }
}