/* ===========================
   SERVICES PAGE - MODERN DESIGN
   =========================== */

/* Hero Section */
.services-hero-modern {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FF6B35 0%, #E55A2B 50%, #2563EB 100%);
    overflow: hidden;
    padding: 6rem 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.hero-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float-shape 20s infinite ease-in-out;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: white;
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: white;
    bottom: -50px;
    right: 10%;
    animation-delay: 5s;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: white;
    top: 50%;
    right: -50px;
    animation-delay: 10s;
}

@keyframes float-shape {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

.hero-content-modern {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.hero-title-modern {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle-modern {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    opacity: 0.95;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-stats-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.hero-stat:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.hero-stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

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

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

/* Services Section */
.services-section-modern {
    padding: 6rem 0;
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
}

.service-card-detail {
    margin-bottom: 6rem;
    animation: fadeIn 0.8s ease-out;
}

.service-card-detail:last-child {
    margin-bottom: 0;
}

.service-card-detail-inner {
    background: white;
    border-radius: 32px;
    padding: 4rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card-detail-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #FF6B35 0%, #E55A2B 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.cod-detail .service-card-detail-inner::before {
    background: linear-gradient(90deg, #FF6B35 0%, #E55A2B 100%);
}

.food-detail .service-card-detail-inner::before {
    background: linear-gradient(90deg, #10B981 0%, #059669 100%);
}

.course-detail .service-card-detail-inner::before {
    background: linear-gradient(90deg, #2563EB 0%, #1D4ED8 100%);
}

.service-card-detail-inner:hover::before {
    opacity: 1;
}

.service-card-detail-inner:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}

.service-content-detail {
    position: relative;
    z-index: 2;
}

.service-header-detail {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.service-icon-large {
    width: 120px;
    height: 120px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.cod-icon-large {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 107, 53, 0.05) 100%);
    color: #FF6B35;
}

.food-icon-large {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
    color: #10B981;
}

.course-icon-large {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(37, 99, 235, 0.05) 100%);
    color: #2563EB;
}

.service-card-detail-inner:hover .service-icon-large {
    transform: scale(1.1) rotate(5deg);
}

.service-status-badge {
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-status-badge.available {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
}

.service-status-badge.coming-soon {
    background: #f3f4f6;
    color: #6b7280;
}

.service-title-detail {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.service-tagline-detail {
    font-size: 1.3rem;
    color: #6b7280;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.service-description-detail {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 3rem;
}

/* Features Grid */
.service-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.feature-card {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    background: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cod-detail .feature-card:hover {
    border-color: #FF6B35;
}

.food-detail .feature-card:hover {
    border-color: #10B981;
}

.course-detail .feature-card:hover {
    border-color: #2563EB;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.feature-card p {
    font-size: 0.9rem;
    color: #6b7280;
}

/* Stats Detail */
.service-stats-detail {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: #f9fafb;
    border-radius: 20px;
}

.stat-card-detail {
    text-align: center;
}

.stat-number-detail {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.cod-detail .stat-number-detail {
    color: #FF6B35;
}

.food-detail .stat-number-detail {
    color: #10B981;
}

.course-detail .stat-number-detail {
    color: #2563EB;
}

.stat-label-detail {
    font-size: 0.85rem;
    color: #6b7280;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Button */
.btn-service-detail {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 3rem;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
}

.cod-btn {
    background: linear-gradient(135deg, #FF6B35 0%, #E55A2B 100%);
}

.food-btn {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
}

.course-btn {
    background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
}

.btn-service-detail:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.btn-service-detail svg {
    transition: transform 0.3s ease;
}

.btn-service-detail:hover svg {
    transform: translateX(5px);
}

/* CTA Section */
.cta-modern {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    text-align: center;
}

.cta-content-modern h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-content-modern p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    opacity: 0.9;
}

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

.btn-cta-primary,
.btn-cta-secondary {
    display: inline-block;
    padding: 1.25rem 3rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta-primary {
    background: linear-gradient(135deg, #FF6B35 0%, #E55A2B 100%);
    color: white;
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

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

.btn-cta-secondary:hover {
    background: white;
    color: #1a1a1a;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title-modern {
        font-size: 3rem;
    }
    
    .service-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-title-modern {
        font-size: 2.5rem;
    }
    
    .hero-subtitle-modern {
        font-size: 1.1rem;
    }
    
    .hero-stats-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .service-card-detail-inner {
        padding: 2rem;
    }
    
    .service-title-detail {
        font-size: 2rem;
    }
    
    .service-features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .service-stats-detail {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .cta-content-modern h2 {
        font-size: 2rem;
    }
    
    .cta-buttons-modern {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title-modern {
        font-size: 2rem;
    }
    
    .hero-subtitle-modern {
        font-size: 1rem;
    }
    
    .hero-stats-modern {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .hero-stat {
        padding: 1rem;
    }
    
    .hero-stat-number {
        font-size: 2rem;
    }
    
    .service-card-detail-inner {
        padding: 1.5rem;
    }
    
    .service-icon-large {
        width: 80px;
        height: 80px;
    }
    
    .service-icon-large svg {
        width: 50px;
        height: 50px;
    }
    
    .service-title-detail {
        font-size: 1.8rem;
    }
    
    .service-tagline-detail {
        font-size: 1rem;
    }
    
    .service-description-detail {
        font-size: 1rem;
    }
    
    .feature-card {
        padding: 1.2rem;
    }
    
    .feature-icon {
        font-size: 2rem;
    }
    
    .feature-card h4 {
        font-size: 1rem;
    }
    
    .stat-number-detail {
        font-size: 2rem;
    }
    
    .btn-service-detail {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .cta-content-modern h2 {
        font-size: 1.8rem;
    }
    
    .cta-content-modern p {
        font-size: 1rem;
    }
}

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