/* Music Page Specific Styles - Modern Design */

/* Hero Section - Reduced Height */
.hero-section {
    min-height: 60vh !important;
    padding: 120px 0 80px !important;
}

/* Remove hero image on non-index pages */
.hero-image {
    display: none;
}

/* Adjust hero content for full width */
.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Section Dividers */
.section-divider {
    height: 2px;
    background: #ffc107;
    margin: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border: none;
}

/* Section Spacing - Compact Design */
.section-spacing {
    padding: 50px 0 !important;
    margin: 0 !important;
}

.section-spacing.bg-light {
    margin: 0 !important;
}

/* Modern Section Headers */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #dc2626, #fbbf24, #000000, #dc2626, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: black;
    margin-bottom: 3rem;
}


/* Platform Cards - Modern Design */
.platform-card {
    background: white;
    padding: 25px 15px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    margin-bottom: 20px;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.platform-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #007bff, #0056b3);
}

.platform-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: #007bff;
}

.platform-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    margin: 0 auto 15px;
    display: block;
    border-radius: 8px;
    background: rgba(0, 123, 255, 0.1);
    padding: 5px;
}

.platform-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
    color: #007bff;
}

/* Specific platform colors */
.fa-spotify {
    color: #1DB954 !important;
}

.fa-apple {
    color: #000000 !important;
}

.fa-amazon {
    color: #FF9900 !important;
}

.fa-youtube {
    color: #FF0000 !important;
}

.fa-music {
    color: #FF6B6B !important;
}

.fa-play {
    color: #00C851 !important;
}

.platform-card h5 {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

/* Process Steps */
.process-step {
    padding: 40px 20px;
    margin-bottom: 30px;
}

.process-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 800;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.3);
}

.process-step h4 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.process-step p {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

/* Service Features */
.service-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.service-features li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    color: #6c757d;
}

.service-features li i {
    color: #28a745;
    margin-right: 12px;
    font-size: 14px;
    width: 16px;
}

/* Benefits Grid */
.benefits-grid {
    margin: 40px 0;
}

.benefit-card {
    background: white;
    padding: 30px 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

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

.benefit-card .service-icon {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 20px;
}

.benefit-card h4 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 18px;
}

.benefit-card p {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
    font-size: 14px;
}

/* Button Spacing */
.btn {
    margin: 10px 0 !important;
    cursor: pointer !important;
    pointer-events: auto !important;
    z-index: 10 !important;
    position: relative !important;
}

.hero-actions {
    margin-top: 40px !important;
}

.hero-actions .btn {
    margin: 10px 15px !important;
    cursor: pointer !important;
    pointer-events: auto !important;
    z-index: 10 !important;
    position: relative !important;
}

/* Content Spacing */
.section-title {
    margin-bottom: 20px !important;
    padding-top: 20px !important;
}

.section-subtitle {
    margin-bottom: 40px !important;
}

.section-badge {
    margin-bottom: 20px !important;
    display: inline-block;
}

/* Service Cards - Modern Design */
.service-card {
    background: white;
    padding: 35px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 123, 255, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #0056b3);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.service-icon {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 28px;
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.3);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 15px;
}

.service-description {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .hero-section {
        min-height: 50vh !important;
        padding: 100px 0 60px !important;
    }
    
    .section-spacing {
        padding: 60px 0 !important;
        margin: 30px 0 !important;
    }
    
    .platform-card {
        margin-bottom: 15px;
        padding: 25px 15px;
    }
    
    .platform-icon {
        font-size: 2.5rem;
    }
    
    .process-step {
        padding: 30px 15px;
        margin-bottom: 25px;
    }
    
    .process-number {
        width: 70px;
        height: 70px;
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .benefit-card {
        margin-bottom: 20px;
        padding: 25px 20px;
    }
    
    .hero-actions .btn {
        margin: 10px 5px !important;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        min-height: 40vh !important;
        padding: 90px 0 40px !important;
    }
    
    .section-spacing {
        padding: 40px 0 !important;
        margin: 20px 0 !important;
    }
    
    .platform-card {
        margin-bottom: 12px;
        padding: 20px 12px;
    }
    
    .platform-icon {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .platform-card h5 {
        font-size: 12px;
    }
    
    .process-step {
        padding: 25px 10px;
        margin-bottom: 20px;
    }
    
    .process-number {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .benefit-card {
        margin-bottom: 15px;
        padding: 20px 15px;
    }
    
    .benefit-card .service-icon {
        width: 50px;
        height: 50px;
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .hero-actions {
        margin-top: 30px !important;
    }
    
    .hero-actions .btn {
        margin: 10px 5px !important;
        display: inline-block;
        width: auto;
        min-width: 140px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .platform-card {
        padding: 20px 12px;
    }
    
    .platform-logo {
        width: 35px;
        height: 35px;
    }
    
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-subtitle {
        font-size: 1.1rem;
    }
    
    .cta-benefits {
        gap: 1rem;
    }
    
    .cta-trust-indicators {
        gap: 1rem;
    }
    
    .trust-number {
        font-size: 1.5rem;
    }
    
    .service-card {
        padding: 30px 25px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .process-step {
        padding: 25px 15px;
        margin-bottom: 20px;
    }
    
    .process-number {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-bottom: 15px;
    }
}

/* Enhanced CTA Section */
.cta-section {
    background: linear-gradient(135deg, #007bff, #0056b3);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.cta-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.cta-content-enhanced {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.cta-benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-weight: 500;
}

.cta-benefit-item .material-icons {
    font-size: 20px;
    color: #ffeb3b;
}

.cta-trust-indicators {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

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

.trust-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffeb3b;
}

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

.lead-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    margin-top: 2rem;
}

.cta-actions .btn {
    margin: 0.5rem;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

@media (max-width: 767.98px) {
    .cta-section {
        margin: 0 !important;
        padding: 25px 0 !important;
    }
    
    .cta-actions .btn {
        margin: 5px 4px !important;
        display: inline-block;
        min-width: 110px;
        font-size: 0.85rem !important;
        padding: 0.5rem 1.2rem !important;
        min-height: 44px !important;
    }
}
/* Center Hero Content */
.hero-content {
    text-align: center;
}

.hero-title {
    text-align: center;
}

.hero-subtitle {
    text-align: center;
}

.hero-actions {
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Center all buttons in hero */
.hero-actions .btn {
    margin: 0;
}
