/* ===== PROGRAMS & SERVICES SECTION ===== */
.programs-section {
    background: linear-gradient(135deg, 
        rgba(10, 10, 30, 0.95) 0%, 
        rgba(20, 20, 40, 0.98) 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.programs-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(29, 161, 242, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.divider-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FFD700, transparent);
}

.divider-icon {
    color: #FFD700;
    font-size: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Programs Introduction */
.programs-intro {
    max-width: 800px;
    margin: 0 auto 80px;
    text-align: center;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    padding: 0 20px;
}

.cta-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #FFD700;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 12px 25px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 30px;
    transition: all 0.3s ease;
    background: rgba(255, 215, 0, 0.1);
}

.cta-link:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: #FFD700;
    gap: 15px;
    padding: 12px 30px;
}

.cta-link svg {
    transition: transform 0.3s ease;
}

.cta-link:hover svg {
    transform: translateX(5px);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(255, 215, 0, 0.1) 0%, 
        transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

.service-card.featured {
    border: 2px solid rgba(255, 215, 0, 0.5);
    background: linear-gradient(135deg, 
        rgba(255, 215, 0, 0.05) 0%, 
        rgba(29, 161, 242, 0.05) 100%);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: black;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.card-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: #FFD700;
    transition: all 0.3s ease;
}

.service-card:hover .card-icon {
    background: rgba(255, 215, 0, 0.2);
    transform: scale(1.1);
}

.card-title {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 20px;
    font-weight: 700;
}

.card-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 1rem;
}

.card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.feature-tag {
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.service-card:hover .feature-tag {
    background: rgba(255, 215, 0, 0.2);
    color: #FFD700;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #FFD700;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 10px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.card-link:hover {
    gap: 12px;
    border-bottom-color: #FFD700;
}

/* Coworking Details */
.coworking-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.details-content h3 {
    font-size: 2.2rem;
    color: white;
    margin-bottom: 10px;
    font-weight: 800;
}

.details-content h4 {
    font-size: 1.5rem;
    color: #FFD700;
    margin-bottom: 25px;
    font-weight: 600;
}

.details-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 20px;
}

.features-grid {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.feature-icon {
    width: 28px;
    height: 28px;
    background: rgba(255, 215, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFD700;
    font-weight: bold;
    font-size: 0.9rem;
}

.details-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 500px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.details-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.details-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(255, 215, 0, 0.1), 
        rgba(29, 161, 242, 0.1));
    mix-blend-mode: overlay;
}

/* Call to Action */
.cta-section {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, 
        rgba(255, 215, 0, 0.1) 0%, 
        rgba(29, 161, 242, 0.1) 100%);
    border-radius: 25px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h3 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 20px;
    font-weight: 800;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: black;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.3);
}

.cta-button::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;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
    gap: 20px;
    padding-left: 50px;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover svg {
    transform: translateX(5px);
}

.cta-button svg {
    transition: transform 0.3s ease;
}

.cta-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.decoration-circle {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 2px solid rgba(255, 215, 0, 0.1);
    animation: rotate 20s linear infinite;
}

.decoration-square {
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 150px;
    height: 150px;
    border: 2px solid rgba(29, 161, 242, 0.1);
    transform: rotate(45deg);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .coworking-details {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px;
    }
    
    .details-image {
        height: 400px;
    }
    
    .section-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .programs-section {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .coworking-details {
        padding: 30px;
    }
    
    .details-content h3 {
        font-size: 1.8rem;
    }
    
    .details-content h4 {
        font-size: 1.3rem;
    }
    
    .cta-section {
        padding: 40px 20px;
    }
    
    .cta-content h3 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .programs-intro {
        margin-bottom: 50px;
    }
    
    .intro-text {
        padding: 0;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .card-title {
        font-size: 1.5rem;
    }
    
    .feature-tag {
        font-size: 0.8rem;
        padding: 5px 12px;
    }
    
    .cta-button,
    .cta-link {
        width: 100%;
        justify-content: center;
    }
}