/* Modern Services Page Design */

/* Services Hero Section */
.services-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #0a0a0a 0%, #16213e 100%);
    text-align: center;
    position: relative;
}

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

.page-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
    position: relative;
    z-index: 2;
}

.page-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* Services Main Section */
.services-main {
    padding: 80px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #16213e 50%, #0a0a0a 100%);
}

/* Service Card Layout */
.service-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 25px;
    overflow: hidden;
    margin-bottom: 4rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.5s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

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

/* Service Image Hero */
.service-image-hero {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.service-hero-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: all 0.5s ease;
}

.service-card:hover .service-hero-img {
    transform: scale(1.05);
}

.service-image-hero svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1));
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 2rem;
}

.service-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.service-badge svg {
    width: 24px;
    height: 24px;
    color: #ffffff;
}

.fitness-card .service-badge {
    border-color: rgba(0, 255, 255, 0.5);
    background: rgba(0, 255, 255, 0.2);
}

.dj-card .service-badge {
    border-color: rgba(255, 0, 255, 0.5);
    background: rgba(255, 0, 255, 0.2);
}

.zumba-card .service-badge {
    border-color: rgba(255, 107, 157, 0.5);
    background: rgba(255, 107, 157, 0.2);
}

/* Service Content Card */
.service-content-card {
    padding: 3rem;
}

.service-card-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #00ffff, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-card-desc {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

/* Service Highlights */
.service-highlights {
    margin-bottom: 3rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border-left: 4px solid #00ffff;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateX(10px);
}

.highlight-icon {
    font-size: 1.5rem;
    width: 40px;
    text-align: center;
    flex-shrink: 0;
}

.highlight-item h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    text-align: left;
}

.highlight-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin: 0;
}

/* Service Schedule Card */
.service-schedule-card {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2.5rem;
    border: 1px solid rgba(0, 255, 255, 0.2);
}

.service-schedule-card h3 {
    color: #00ffff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

.schedule-times {
    display: grid;
    gap: 1rem;
}

.time-slot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.time-slot:hover {
    background: rgba(0, 255, 255, 0.1);
    transform: scale(1.02);
}

.time-label {
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
}

.time-range {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Service Video */
.service-video {
    margin-bottom: 2.5rem;
    position: relative;
}

.video-preview {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(255, 0, 255, 0.1));
    border: 2px dashed rgba(0, 255, 255, 0.3);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
}

.video-player {
    position: relative;
    width: 100%;
    height: 350px;
    border-radius: 15px;
    overflow: hidden;
    background: #000;
    border: 2px solid rgba(0, 255, 255, 0.3);
    margin-top: 1rem;
}

.video-player iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.close-video {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.close-video:hover {
    background: rgba(255, 0, 0, 0.8);
    transform: scale(1.1);
}

.video-preview:hover {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.2), rgba(255, 0, 255, 0.2));
    border-color: rgba(0, 255, 255, 0.5);
    transform: scale(1.02);
}

.play-button {
    width: 50px;
    height: 50px;
    background: rgba(0, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.play-button svg {
    width: 20px;
    height: 20px;
    color: #00ffff;
}

.video-preview span {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Service CTA Button */
.service-cta-btn {
    width: 100%;
    padding: 1.2rem 2rem;
    background: linear-gradient(135deg, #00ffff, #ff00ff);
    color: #000000;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 255, 255, 0.4);
}

/* CTA Section */
.services-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #16213e 0%, #0a0a0a 100%);
    text-align: center;
}

.services-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.services-cta p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta-button.primary {
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    color: #000000;
    font-weight: 600;
}

.cta-button.secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #00ffff;
}

.cta-button.secondary:hover {
    background: #00ffff;
    color: #000000;
}

/* Active navigation link */
.nav-link.active {
    color: #00ffff !important;
    text-shadow: 0 0 10px #00ffff;
}

.nav-link.active::after {
    width: 100% !important;
}

/* Footer */
.footer {
    background: #0a0a0a;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(0, 255, 255, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #00ffff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #cccccc;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #00ffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .services-hero {
        padding: 100px 0 40px;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .services-main {
        padding: 60px 0;
    }
    
    .service-content-card {
        padding: 2rem;
    }
    
    .service-card-title {
        font-size: 2rem;
    }
    
    .service-card-desc {
        font-size: 1.1rem;
    }
    
    .highlight-item {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .service-schedule-card {
        padding: 1.5rem;
    }
    
    .time-slot {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .video-preview {
        padding: 1.5rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .services-cta h2 {
        font-size: 2rem;
    }
    
    .services-cta p {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .services-hero {
        padding: 90px 0 30px;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .service-image-hero {
        height: 300px;
    }
    
    .service-content-card {
        padding: 1.5rem;
    }
    
    .service-card-title {
        font-size: 1.8rem;
    }
    
    .service-card-desc {
        font-size: 1rem;
    }
    
    .highlight-item {
        padding: 0.8rem;
    }
    
    .highlight-icon {
        font-size: 1.2rem;
        width: 35px;
    }
    
    .service-schedule-card {
        padding: 1rem;
    }
    
    .video-preview {
        padding: 1rem;
    }
    
    .play-button {
        width: 40px;
        height: 40px;
    }
    
    .service-cta-btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .services-cta {
        padding: 50px 0;
    }
}

/* Powered By Glarion Technologies */
.powered-by {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.powered-by span {
    color: #ccc;
    font-size: 14px;
}

.glarion-link {
    display: inline-block;
    transition: opacity 0.3s ease;
}

.glarion-link:hover {
    opacity: 0.8;
}

.glarion-logo {
    height: 100px;
    width: auto;
}