/* Work Page Styles */

/* Hero Section */
.work-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    color: white;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.2));
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #cccccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Packages Section */
.packages-section {
    padding: 8rem 0;
    background: #ffffff;
}

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

.package-card {
    position: relative;
    background: #ffffff;
    border: 2px solid #f0f0f0;
    border-radius: 20px;
    padding: 3rem 2.5rem;
    transition: all 0.4s ease;
    cursor: pointer;
    overflow: hidden;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #000000, #333333);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border-color: #000000;
}

/* Featured Package */
.package-card.featured {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: white;
    border: 2px solid #333333;
    transform: scale(1.05);
}

.package-card.featured::before {
    background: linear-gradient(90deg, #ffffff, #cccccc);
}

.package-card.featured:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

/* Premium Package */
.package-card.premium {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    color: white;
    border: 2px solid #333333;
}

.package-card.premium::before {
    background: linear-gradient(90deg, #ffd700, #ffed4e);
}

/* Package Badges */
.featured-badge, .premium-badge {
    position: absolute;
    top: -1px;
    right: 2rem;
    background: linear-gradient(45deg, #ffffff, #f0f0f0);
    color: #000000;
    padding: 0.5rem 1rem;
    border-radius: 0 0 10px 10px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.premium-badge {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #000000;
}

/* Package Header */
.package-header {
    text-align: center;
    margin-bottom: 2rem;
}

.package-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #000000, #333333);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 1.5rem auto;
}

.package-card.featured .package-number,
.package-card.premium .package-number {
    background: linear-gradient(45deg, #ffffff, #f0f0f0);
    color: #000000;
}

.package-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.package-price {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.package-duration {
    font-size: 1rem;
    font-weight: 600;
    color: #666666;
    margin-bottom: 2rem;
    text-align: center;
}

.package-card.featured .package-duration,
.package-card.premium .package-duration {
    color: rgba(255, 255, 255, 0.7);
}

/* Package Content */
.package-description {
    margin-bottom: 2rem;
    line-height: 1.6;
}

.package-description p {
    margin-bottom: 1rem;
}

.package-includes {
    margin-bottom: 2rem;
}

.package-includes h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.package-includes ul {
    list-style: none;
    padding: 0;
}

.package-includes li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

.package-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #000000;
    font-weight: 700;
}

.package-card.featured .package-includes li::before,
.package-card.premium .package-includes li::before {
    color: #ffffff;
}

/* Package Footer */
.package-footer {
    border-top: 1px solid #f0f0f0;
    padding-top: 2rem;
    margin-top: 2rem;
}

.package-card.featured .package-footer,
.package-card.premium .package-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.package-warning {
    font-size: 0.9rem;
    font-style: italic;
    margin-bottom: 2rem;
    color: #666666;
    line-height: 1.5;
}

.package-card.featured .package-warning,
.package-card.premium .package-warning {
    color: rgba(255, 255, 255, 0.7);
}

.package-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(45deg, #000000, #333333);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.package-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.package-card.featured .package-cta,
.package-card.premium .package-cta {
    background: linear-gradient(45deg, #ffffff, #f0f0f0);
    color: #000000;
}

.package-card.featured .package-cta:hover,
.package-card.premium .package-cta:hover {
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #000000;
}

.cta-content p {
    font-size: 1.2rem;
    color: #666666;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.cta-btn.primary {
    background: linear-gradient(45deg, #000000, #333333);
    color: white;
    border: 2px solid transparent;
}

.cta-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cta-btn.secondary {
    background: transparent;
    color: #000000;
    border: 2px solid #000000;
}

.cta-btn.secondary:hover {
    background: #000000;
    color: white;
    transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .package-card.featured {
        transform: none;
    }
    
    .package-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .package-card {
        padding: 2rem 1.5rem;
    }
    
    .package-title {
        font-size: 1.5rem;
    }
    
    .package-price {
        font-size: 2.5rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .packages-section {
        padding: 4rem 0;
    }
    
    .package-card {
        padding: 1.5rem 1rem;
    }
    
    .package-title {
        font-size: 1.3rem;
    }
    
    .package-price {
        font-size: 2rem;
    }
    
    .cta-section {
        padding: 4rem 0;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
}

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

.package-card {
    animation: fadeInUp 0.6s ease forwards;
}

.package-card:nth-child(1) { animation-delay: 0.1s; }
.package-card:nth-child(2) { animation-delay: 0.2s; }
.package-card:nth-child(3) { animation-delay: 0.3s; }

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus states for accessibility */
.package-cta:focus,
.cta-btn:focus {
    outline: 2px solid #000000;
    outline-offset: 2px;
}

.package-card.featured .package-cta:focus,
.package-card.premium .package-cta:focus {
    outline-color: #ffffff;
}
