/* Service Page Specific Styles */
.service-section {
    margin-bottom: 3rem;
}

.service-pricing {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.pricing-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.pricing-card .price {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.pricing-card li {
    margin: 0.5rem 0;
    color: var(--silver);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-card li::before {
    content: '✓';
    color: var(--gold);
    margin-right: 0.5rem;
}

@media (max-width: 768px) {
    .service-pricing {
        grid-template-columns: 1fr;
    }
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.info-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    position: relative;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.info-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.info-card .icon-3d {
    flex-shrink: 0;
    margin-right: 1.5rem;
    width: 80px;
    height: 80px;
}

.info-card .icon-3d i {
    font-size: 3rem;
    color: var(--gold);
}

.info-card-content {
    flex-grow: 1;
}

.info-card h3 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.info-card p {
    color: var(--silver);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.price-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    padding: 0.5rem 1rem;
    border-radius: 3px;
    font-weight: bold;
}

@media (max-width: 768px) {
    .info-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
        justify-content: center;
        padding: 1.5rem;
    }

    .info-card .icon-3d {
        margin-right: 0;
        margin-bottom: 1rem;
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }

    .info-card .icon-3d-inner {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
    }

    .info-card .icon-3d i {
        font-size: 2.5rem;
        text-align: center;
        margin: 0 auto;
        display: block;
    }
    .info-card-content {
        text-align: center;
        width: 100%; /* Volle Breite */
    }

    .price-badge,
    .career-badge,
    .team-badge,
    .contact-badge {
        position: relative;
        top: 0;
        right: 0;
        margin-top: 1rem;
        display: inline-block;
        align-self: center;
    }

    .section-content {
        padding: 1rem; /* Reduziertes Padding für Sektionen */
    }
}

/* Zusätzliche Animationen für Service-Seite */
@keyframes revealText {
    from { 
        opacity: 0;
        transform: translateY(20px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmerAnimation {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

.reveal-text {
    opacity: 0;
    animation: revealText 1s ease-out forwards;
    animation-delay: 0.3s;
}

.reveal-card {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
}

.reveal-card:nth-child(1) { transition-delay: 0.4s; }
.reveal-card:nth-child(2) { transition-delay: 0.6s; }
.reveal-card:nth-child(3) { transition-delay: 0.8s; }

.reveal-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.shimmer-effect {
    position: relative;
    overflow: hidden;
}

.shimmer-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg, 
        transparent, 
        rgba(255,255,255,0.1), 
        transparent
    );
    transform: skewX(-20deg);
    animation: shimmerAnimation 6s infinite linear;
}

.sports-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    padding: 0.5rem 1rem;
    border-radius: 3px;
    margin-top: 1rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.contact-details {
    color: var(--silver);
    font-weight: bold;
}

.female-section .career-badge,
.female-section .team-badge,
.female-section .contact-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    padding: 0.5rem 1rem;
    border-radius: 3px;
    margin-top: 1rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
}

.legal-section .legal-content {
    display: flex;
    align-items: flex-start;
    background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 2rem;
    position: relative;
}

.legal-section .icon-3d {
    flex-shrink: 0;
    margin-right: 2rem;
    width: 100px;
    height: 100px;
}

.legal-section .legal-text {
    flex-grow: 1;
}

.legal-section .legal-text h3 {
    color: var(--gold);
    margin-bottom: 1rem;
}

.legal-section .legal-list {
    list-style-type: none;
    padding: 0;
    margin: 1rem 0;
}

.legal-section .legal-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--silver);
}

.legal-section .legal-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

.legal-section .disclaimer {
    font-style: italic;
    color: var(--gold);
    margin-top: 1rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding-top: 1rem;
}

@media (max-width: 768px) {
    .legal-section .legal-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .legal-section .icon-3d {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

.sky-logo-container {
    position: relative;
    width: 100px;
    height: 100px;
    animation: skyLogoAnimation 5s ease-in-out infinite;
}

.sky-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 1;
}

.sky-logo-shine {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at center,
        rgba(255, 255, 255, 0.5),
        transparent 70%
    );
    opacity: 0;
    animation: skyLogoShine 5s ease-in-out infinite;
}

@keyframes skyLogoAnimation {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(10deg) scale(1.1);
    }
    100% {
        transform: rotate(0deg) scale(1);
    }
}

@keyframes skyLogoShine {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 0.8;
    }
    100% {
        opacity: 0;
    }
}