/* Work With Me Page Styles */

/* Hero Section */
.work-hero {
    background: linear-gradient(135deg, var(--gold) 0%, var(--accent-red) 100%);
    color: white;
    padding: 140px 0 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.work-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.work-hero .page-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    position: relative;
    z-index: 1;
}

.work-hero .hero-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Discovery Call Section */
.discovery-call {
    padding: 80px 0;
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
}

.discovery-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.discovery-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 20px;
    position: relative;
}

.discovery-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--accent-red));
    border-radius: 2px;
}

.discovery-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 30px;
}

.discovery-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.discovery-benefits li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1rem;
    color: var(--black);
}

.discovery-benefits i {
    color: var(--gold);
    margin-right: 12px;
    font-size: 16px;
    width: 20px;
}

.discovery-cta {
    text-align: center;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 
        0 20px 40px rgba(0,0,0,0.1),
        0 1px 3px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
}

.discovery-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--accent-red));
}

.price-highlight {
    margin-bottom: 30px;
}

.price-highlight .price {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 5px;
}

.price-highlight .duration {
    font-size: 1rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Content Packages */
.content-packages {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.content-packages::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(220, 53, 69, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.content-packages .section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.content-packages .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--accent-red));
    border-radius: 2px;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.package-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 15px 35px rgba(0,0,0,0.08),
        0 3px 10px rgba(0,0,0,0.05);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
    position: relative;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 25px 50px rgba(0,0,0,0.15),
        0 5px 15px rgba(0,0,0,0.1);
}

.package-card.popular {
    transform: scale(1.05);
    border: 2px solid var(--gold);
}

.package-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold), var(--accent-red));
    color: white;
    padding: 8px 24px;
    border-radius: 0 0 12px 12px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.package-header {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    padding: 40px 30px 30px;
    text-align: center;
    position: relative;
}

.package-card.popular .package-header {
    padding-top: 50px;
}

.package-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 20px;
}

.package-price {
    margin-bottom: 0;
}

.package-price .price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
}

.package-content {
    padding: 30px;
    text-align: center;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.package-features li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 15px;
    color: var(--black);
}

.package-features i {
    color: var(--gold);
    margin-right: 12px;
    font-size: 14px;
    width: 16px;
}

/* À La Carte Services */
.alacarte-services {
    padding: 100px 0;
    background: white;
}

.alacarte-services .section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 60px;
    position: relative;
}

.alacarte-services .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--accent-red));
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 
        0 15px 35px rgba(0,0,0,0.08),
        0 3px 10px rgba(0,0,0,0.05);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--accent-red));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 25px 50px rgba(0,0,0,0.12),
        0 5px 15px rgba(0,0,0,0.08);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold), var(--accent-red));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 32px;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.4);
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 15px;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    margin-top: auto;
}

/* Strategy Services */
.strategy-services {
    padding: 100px 0;
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
}

.strategy-services .section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 60px;
    position: relative;
}

.strategy-services .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--accent-red));
    border-radius: 2px;
}

.strategy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.strategy-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 
        0 10px 25px rgba(0,0,0,0.08),
        0 2px 8px rgba(0,0,0,0.05);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
    position: relative;
}

.strategy-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 15px 30px rgba(0,0,0,0.12),
        0 4px 12px rgba(0,0,0,0.08);
}

.strategy-header {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
}

.strategy-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 8px;
}

.strategy-duration {
    font-size: 13px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.strategy-content {
    padding: 20px;
    text-align: center;
}

.strategy-content p {
    color: #666;
    line-height: 1.5;
    margin-bottom: 18px;
    font-size: 14px;
}

.strategy-features {
    list-style: none;
    padding: 0;
    margin: 0 0 18px 0;
}

.strategy-features li {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--black);
}

.strategy-features i {
    color: var(--gold);
    margin-right: 10px;
    font-size: 12px;
    width: 14px;
}

.strategy-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    text-align: center;
    margin-bottom: 18px;
}

/* Media Kit CTA */
.media-kit-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--gold) 0%, var(--accent-red) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.media-kit-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.cta-content p {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Fixed CTA Buttons */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* Secondary Button - Book Me Now */
.btn.btn-secondary {
    background: rgba(255,255,255,0.15);
    color: white;
    border: 2px solid rgba(255,255,255,0.8);
    padding: 16px 34px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
    text-align: center;
    backdrop-filter: blur(10px);
    min-width: 200px;
    position: relative;
    overflow: hidden;
}

.btn.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: -1;
}

.btn.btn-secondary:hover {
    color: var(--gold);
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255,255,255,0.3);
}

.btn.btn-secondary:hover::before {
    transform: scaleX(1);
}

.btn.btn-secondary:active {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(255,255,255,0.2);
}

/* Why Work With Me */
.why-work-with-me {
    padding: 100px 0;
    background: white;
}

.why-work-with-me .section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 60px;
    position: relative;
}

.why-work-with-me .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--accent-red));
    border-radius: 2px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 
        0 15px 35px rgba(0,0,0,0.08),
        0 3px 10px rgba(0,0,0,0.05);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--accent-red));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 25px 50px rgba(0,0,0,0.12),
        0 5px 15px rgba(0,0,0,0.08);
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold), var(--accent-red));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 32px;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.4);
}

.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 15px;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 15px;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

/* Primary Button - Download Media Kit */
.btn.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--accent-red) 100%);
    color: white;
    border: none;
    padding: 18px 36px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
    text-align: center;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    position: relative;
    overflow: hidden;
    min-width: 200px;
}

.btn.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
}

.btn.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.5);
    filter: brightness(1.1);
}

.btn.btn-primary:hover::before {
    left: 100%;
}

.btn.btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

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

.btn.btn-outline:hover {
    background: var(--gold);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

/* Animation Classes */
.animate-fade-in {
    animation: fadeIn 0.8s ease-out;
}

.animate-fade-in-delay {
    animation: fadeIn 0.8s ease-out 0.3s both;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 0.8s ease-out 0.6s both;
}

.animate-slide-up {
    animation: slideUp 0.8s ease-out;
}

.animate-slide-up-delay {
    animation: slideUp 0.8s ease-out 0.2s both;
}

.animate-slide-up-delay-2 {
    animation: slideUp 0.8s ease-out 0.4s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .work-hero {
        padding: 120px 0 80px;
    }
    
    .work-hero .page-title {
        font-size: 2.5rem;
    }
    
    .work-hero .hero-subtitle {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 30px;
        margin-top: 30px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .discovery-content {
        grid-template-columns: 1fr;
        gap: 40px;
        margin: 0 20px;
    }
    
    .discovery-text h2 {
        font-size: 2rem;
    }
    
    .discovery-cta {
        padding: 30px 25px;
    }
    
    .price-highlight .price {
        font-size: 2.5rem;
    }
    
    .content-packages,
    .alacarte-services,
    .strategy-services,
    .why-work-with-me {
        padding: 80px 0;
    }
    
    .content-packages .section-title,
    .alacarte-services .section-title,
    .strategy-services .section-title,
    .why-work-with-me .section-title {
        font-size: 2rem;
    }
    
    .packages-grid,
    .services-grid,
    .strategy-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 0 20px;
    }
    
    .package-card.popular {
        transform: none;
    }
    
    .package-card.popular:hover {
        transform: translateY(-10px);
    }
    
    .package-header {
        padding: 30px 25px 25px;
    }
    
    .package-content,
    .strategy-content {
        padding: 25px;
    }
    
    .service-card,
    .benefit-card {
        padding: 30px 25px;
    }
    
    .service-icon,
    .benefit-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
    
    .media-kit-cta {
        padding: 80px 0;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-top: 40px;
    }
    
    .btn.btn-primary,
    .btn.btn-secondary {
        width: 100%;
        max-width: 280px;
        padding: 16px 24px;
        font-size: 15px;
        min-width: auto;
    }
    
    .btn {
        padding: 14px 28px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .work-hero .page-title {
        font-size: 2rem;
    }
    
    .work-hero .hero-subtitle {
        font-size: 1rem;
    }
    
    .discovery-text h2 {
        font-size: 1.8rem;
    }
    
    .discovery-cta {
        padding: 25px 20px;
    }
    
    .price-highlight .price {
        font-size: 2rem;
    }
    
    .content-packages .section-title,
    .alacarte-services .section-title,
    .strategy-services .section-title,
    .why-work-with-me .section-title {
        font-size: 1.8rem;
    }
    
    .package-header {
        padding: 25px 20px;
    }
    
    .package-content,
    .strategy-content {
        padding: 20px;
    }
    
    .service-card,
    .benefit-card {
        padding: 25px 20px;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .btn.btn-primary,
    .btn.btn-secondary {
        padding: 14px 20px;
        font-size: 14px;
        max-width: 250px;
    }
}