/* ============================================================
   FiberOxy Servisler Sayfası
   ============================================================ */

/* Hero */
.services-hero {
    padding: 140px 40px 80px;
    text-align: center;
    position: relative;
}

.services-hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.services-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
}

.services-hero-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Servisler Section */
.services-section {
    padding: 20px 40px 100px;
}

.services-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Service Card */
.service-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    align-items: flex-start;
    gap: 28px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    cursor: default;
}

.service-card.active {
    cursor: pointer;
    border-color: rgba(192, 255, 0, 0.12);
}

.service-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(192, 255, 0, 0.04) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.service-card.active:hover {
    border-color: rgba(192, 255, 0, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3),
                0 0 40px rgba(192, 255, 0, 0.05);
}

.service-card.active:hover .service-card-glow {
    opacity: 1;
}

.service-card.active:hover .service-icon svg {
    stroke: #c0ff00;
    filter: drop-shadow(0 0 12px rgba(192, 255, 0, 0.4));
}

.service-card.active:hover .service-arrow {
    opacity: 1;
    transform: translateX(0);
}

.service-card.active:hover .service-arrow svg {
    stroke: #c0ff00;
}

/* Coming Soon */
.service-card.coming-soon {
    opacity: 0.5;
}

.service-card.coming-soon .service-content h3,
.service-card.coming-soon .service-content p {
    opacity: 0.6;
}

.service-card.coming-soon .service-icon svg {
    opacity: 0.4;
}

.coming-soon-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.5);
}

/* Service Icon */
.service-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: rgba(192, 255, 0, 0.06);
    border: 1px solid rgba(192, 255, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.service-icon svg {
    stroke: rgba(192, 255, 0, 0.7);
    transition: all 0.4s ease;
}

/* Service Content */
.service-content {
    flex: 1;
    min-width: 0;
}

.service-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
}

.service-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    margin-bottom: 16px;
}

/* Feature Tags */
.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
    background: rgba(192, 255, 0, 0.06);
    border: 1px solid rgba(192, 255, 0, 0.1);
    color: rgba(192, 255, 0, 0.8);
}

.feature-tag svg {
    stroke: rgba(192, 255, 0, 0.6);
}

/* Service Arrow */
.service-arrow {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(192, 255, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    align-self: center;
}

/* Hero Badge (matches site design) */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    background: rgba(192, 255, 0, 0.08);
    border: 1px solid rgba(192, 255, 0, 0.2);
    color: #c0ff00;
    margin-bottom: 28px;
    text-transform: uppercase;
}

.hero-badge svg {
    stroke: #c0ff00;
}

.highlight {
    background: linear-gradient(135deg, #c0ff00 0%, #00ff88 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Responsive */
@media (max-width: 768px) {
    .services-hero {
        padding: 120px 24px 60px;
    }

    .services-section {
        padding: 20px 16px 80px;
    }

    .service-card {
        flex-direction: column;
        padding: 28px;
        gap: 20px;
    }

    .service-icon {
        width: 64px;
        height: 64px;
        border-radius: 16px;
    }

    .service-icon svg {
        width: 36px;
        height: 36px;
    }

    .service-content h3 {
        font-size: 1.25rem;
    }

    .service-arrow {
        display: none;
    }

    .coming-soon-badge {
        top: 14px;
        right: 14px;
        font-size: 11px;
        padding: 4px 10px;
    }
}
