/* ==========================================
   MUSIC & A&R PAGE - OLD HOLLYWOOD GLAMOUR
   Conversion-Optimized with Elegant Design
   ========================================== */

/* Music Hero Section - Tighter Spacing */
.music-hero {
    min-height: 90vh !important;
    padding: 120px 0 60px !important;
}

/* Attention-Grabbing Elements */
.hero-attention-grabber {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    color: var(--white);
    background: linear-gradient(135deg, rgba(191, 157, 97, 0.2), rgba(191, 157, 97, 0.05));
    padding: 1.5rem 2rem;
    border-left: 4px solid var(--gold-primary);
    margin: 2rem 0;
    text-align: center;
    box-shadow: 0 10px 40px rgba(191, 157, 97, 0.2);
}

.hero-urgency-text {
    background: linear-gradient(135deg, rgba(255, 68, 68, 0.15), rgba(191, 157, 97, 0.1));
    border: 2px solid #ff4444;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 10px;
    font-size: 1.15rem;
}

.hero-urgency-text strong {
    color: #ff4444;
    font-size: 1.3rem;
}

/* CTA Buttons - Enhanced */
.hero-cta-urgent {
    margin-top: 3rem;
    text-align: center;
}

.btn-pulse {
    animation: pulseGlow 2s ease-in-out infinite;
    font-size: 1.3rem !important;
    padding: 1.5rem 3rem !important;
    box-shadow: 0 0 30px rgba(191, 157, 97, 0.6);
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 30px rgba(191, 157, 97, 0.6);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 50px rgba(191, 157, 97, 0.9);
        transform: scale(1.02);
    }
}

.cta-subtext {
    margin-top: 1rem;
    font-size: 1rem;
    color: var(--gold-light);
    font-style: italic;
}

/* What You Get Section - Tighter Spacing */
.what-you-get-section {
    padding: 4rem 0 !important;
    background: linear-gradient(180deg, #000000, rgba(191, 157, 97, 0.05), #000000);
}

.conversion-headline {
    text-align: center;
    margin-bottom: 5rem;
}

.conversion-title {
    font-family: var(--font-primary);
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--gold-primary);
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(191, 157, 97, 0.4);
}

.conversion-subtitle {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--gold-light);
}

.benefits-flow {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-bottom: 5rem;
}

.benefit-major {
    background: linear-gradient(135deg, rgba(191, 157, 97, 0.1), rgba(0, 0, 0, 0.5));
    border: 2px solid var(--gold-primary);
    padding: 3rem;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-major:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(191, 157, 97, 0.4);
}

.benefit-icon {
    font-size: 4rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.benefit-major h3 {
    font-family: var(--font-primary);
    font-size: 2rem;
    color: var(--gold-primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.benefit-major p {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1rem;
}

.benefit-proof {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(191, 157, 97, 0.3);
    font-size: 0.95rem;
    color: var(--gold-primary);
    text-align: center;
}

/* Urgency Box - Major */
.urgency-box-major {
    background: linear-gradient(135deg, rgba(255, 68, 68, 0.15), rgba(191, 157, 97, 0.15));
    border: 3px solid #ff4444;
    padding: 2.5rem !important;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(255, 68, 68, 0.2);
    margin-top: 3rem !important;
}

.urgency-content h3 {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    color: #ff4444;
    margin-bottom: 1.5rem;
}

.urgency-content p {
    font-family: var(--font-secondary);
    font-size: 1.2rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.btn-urgency {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, #ff4444, #bf9d61);
    color: var(--white);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    margin-top: 1rem;
    box-shadow: 0 10px 40px rgba(255, 68, 68, 0.3);
}

.btn-urgency:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(255, 68, 68, 0.5);
}

/* Music Services Section - Tighter Spacing */
.music-services-section {
    padding: 4rem 0 !important;
    background: #000000;
}

.service-showcase {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem !important;
    align-items: center;
}

.service-showcase.reverse {
    flex-direction: row-reverse;
}

.service-visual {
    flex: 0 0 500px;
}

.service-visual img {
    width: 100%;
    height: auto;
    border: 2px solid var(--gold-primary);
    border-radius: 10px;
    box-shadow: 0 15px 50px rgba(191, 157, 97, 0.3);
    filter: sepia(10%);
}

.service-story {
    flex: 1;
}

.service-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--black);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1rem;
    border-radius: 30px;
    margin-bottom: 1.5rem;
}

.service-title {
    font-family: var(--font-primary);
    font-size: 2.2rem;
    color: var(--gold-primary);
    margin-bottom: 1rem;
}

.service-description {
    font-family: var(--font-secondary);
    font-size: 1.2rem;
    line-height: 1.9;
    margin-bottom: 2rem;
}

.service-details {
    margin: 2rem 0;
}

.service-details h4 {
    font-family: var(--font-secondary);
    font-size: 1.3rem;
    color: var(--gold-primary);
    margin-bottom: 1rem;
}

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    font-family: var(--font-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold-primary);
    font-weight: bold;
}

.service-result,
.service-pricing,
.service-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(191, 157, 97, 0.05);
    border-left: 3px solid var(--gold-primary);
    font-style: italic;
}

/* Music Packages Section - Tighter Spacing */
.music-packages-section {
    padding: 4rem 0 !important;
    background: linear-gradient(180deg, rgba(191, 157, 97, 0.05), #000000);
}

.music-packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-bottom: 5rem;
}

.music-package {
    background: linear-gradient(135deg, rgba(191, 157, 97, 0.1), rgba(0, 0, 0, 0.95));
    border: 2px solid var(--gold-primary);
    padding: 3rem 2.5rem;
    border-radius: 15px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.music-package:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(191, 157, 97, 0.4);
}

.package-ribbon {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff4444, var(--gold-primary));
    color: var(--white);
    padding: 0.5rem 2rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1rem;
    box-shadow: 0 5px 20px rgba(255, 68, 68, 0.4);
}

.package-title {
    font-family: var(--font-primary);
    font-size: 2rem;
    color: var(--gold-primary);
    text-align: center;
    margin-bottom: 1.5rem;
}

.package-price {
    text-align: center;
    margin: 2rem 0;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gold-primary);
}

.price-period {
    font-size: 1.2rem;
    color: var(--gold-light);
}

.package-commitment {
    text-align: center;
    font-size: 0.95rem;
    color: var(--gray-light);
    margin-bottom: 2rem;
}

.package-description {
    text-align: center;
    margin-bottom: 2rem;
    font-style: italic;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.package-features li {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.package-features i {
    color: var(--gold-primary);
    margin-top: 0.2rem;
}

.package-savings {
    text-align: center;
    background: rgba(191, 157, 97, 0.15);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.package-savings strong {
    font-size: 1.5rem;
    color: var(--gold-primary);
}

.savings-detail {
    margin-top: 0.5rem;
    font-size: 0.95rem;
    color: var(--gold-light);
}

.btn-package,
.btn-package-secondary {
    display: block;
    width: 100%;
    padding: 1.2rem;
    text-align: center;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    margin-top: 2rem;
}

.btn-package {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--black);
    box-shadow: 0 10px 30px rgba(191, 157, 97, 0.4);
}

.btn-package:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(191, 157, 97, 0.6);
}

.btn-package-secondary {
    background: transparent;
    color: var(--gold-primary);
    border: 2px solid var(--gold-primary);
}

.btn-package-secondary:hover {
    background: rgba(191, 157, 97, 0.1);
    transform: translateY(-3px);
}

.package-guarantee {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--gold-primary);
    font-style: italic;
}

.music-urgency {
    margin-top: 5rem;
}

/* Success Stories - Tighter Spacing */
.success-stories-section {
    padding: 4rem 0 !important;
    background: linear-gradient(180deg, #000000, rgba(191, 157, 97, 0.03));
}

.success-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.success-story {
    background: rgba(191, 157, 97, 0.05);
    border: 1px solid rgba(191, 157, 97, 0.3);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.success-story:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(191, 157, 97, 0.3);
}

.success-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    filter: sepia(10%);
}

.success-content {
    padding: 2rem;
}

.success-content h4 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    color: var(--gold-primary);
    margin-bottom: 1rem;
}

.success-content p {
    font-family: var(--font-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.success-author {
    text-align: right;
    color: var(--gold-light);
    font-style: italic;
    font-size: 0.95rem;
}

/* Contact Section - Music - Tighter Spacing */
.contact-section-music {
    padding: 4rem 0 !important;
    background: #000000;
}

.contact-flow {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info-music {
    flex: 0 0 400px;
}

.contact-info-music h3 {
    font-family: var(--font-primary);
    font-size: 2rem;
    color: var(--gold-primary);
    margin-bottom: 2rem;
}

.contact-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 3rem;
}

.contact-benefits li {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-benefits i {
    color: var(--gold-primary);
    margin-top: 0.3rem;
}

.contact-methods {
    background: rgba(191, 157, 97, 0.05);
    padding: 2rem;
    border-radius: 10px;
    border-left: 3px solid var(--gold-primary);
}

.contact-methods p {
    margin-bottom: 1rem;
}

.contact-methods a {
    color: var(--gold-primary);
    text-decoration: none;
    transition: var(--transition);
}

.contact-methods a:hover {
    color: var(--gold-light);
}

.contact-form-container {
    flex: 1;
}

/* Responsive - Conversion & Music */
@media (max-width: 1024px) {
    .service-showcase {
        flex-direction: column !important;
    }
    
    .service-visual {
        flex: 1;
        max-width: 100%;
    }
    
    .contact-flow {
        flex-direction: column;
    }
    
    .contact-info-music {
        flex: 1;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .benefits-flow {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .benefit-major {
        padding: 2rem 1.5rem;
    }
    
    .conversion-title {
        font-size: 2rem;
    }
    
    .service-title {
        font-size: 2rem;
    }
    
    .music-packages-grid {
        grid-template-columns: 1fr;
    }
    
    .success-grid {
        grid-template-columns: 1fr;
    }
    
    .urgency-box-major {
        padding: 2rem 1.5rem;
    }
    
    .btn-pulse {
        font-size: 1.1rem !important;
        padding: 1.2rem 2rem !important;
    }
}
