* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
}

.font-orbitron {
    font-family: 'Orbitron', sans-serif;
}

.hero-gradient {
    background: linear-gradient(135deg, #1a0b2e 0%, #0a0a0a 50%, #1a0b2e 100%);
}

.accent-glow {
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
}

.card-hover {
    transition: all 0.3s ease;
}

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

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

.nav-link {
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FFD700;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.stat-card {
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
}

.service-card {
    background: linear-gradient(135deg, rgba(26, 11, 46, 0.8) 0%, rgba(10, 10, 10, 0.9) 100%);
    border: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
}

.btn-primary {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
}

.btn-secondary {
    background: transparent;
    border: 2px solid #FFD700;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #FFD700;
    transform: scale(1.05);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.float-animation {
    animation: float 6s ease-in-out infinite;
}

.mobile-menu {
    display: none;
}

.mobile-menu.active {
    display: block;
}

/* Team Section Styles */
.team-member-card {
    background: linear-gradient(135deg, rgba(26, 11, 46, 0.8) 0%, rgba(10, 10, 10, 0.9) 100%);
    border: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

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

.team-member-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.team-member-card:hover .team-member-image {
    border-color: rgba(255, 215, 0, 0.6);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

.team-role {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.team-description {
    color: #9ca3af;
    line-height: 1.6;
}

.contact-btn {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.contact-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

/* Super Package Styles */
.super-package-card {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 165, 0, 0.2) 50%, rgba(255, 140, 0, 0.2) 100%);
    border: 2px solid transparent;
    border-radius: 2rem;
    backdrop-filter: blur(25px);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 25px 50px rgba(255, 215, 0, 0.2), 0 0 100px rgba(255, 165, 0, 0.1);
}

.super-package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.8s ease;
}

.super-package-card:hover::before {
    left: 100%;
}

.super-package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 40px 80px rgba(255, 215, 0, 0.3), 0 0 120px rgba(255, 165, 0, 0.2), 0 0 160px rgba(255, 140, 0, 0.1);
}

/* Yıldız glow efektleri */
.star-glow {
    font-size: 2rem;
    animation: starPulse 2s ease-in-out infinite alternate;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.6));
}

@keyframes starPulse {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.6));
    }
    100% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.9));
    }
}

/* Paket başlığı glow efekti */
.package-title-glow {
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5), 0 0 40px rgba(255, 165, 0, 0.3);
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% {
        text-shadow: 0 0 20px rgba(255, 215, 0, 0.5), 0 0 40px rgba(255, 165, 0, 0.3);
    }
    100% {
        text-shadow: 0 0 30px rgba(255, 215, 0, 0.8), 0 0 60px rgba(255, 165, 0, 0.5);
    }
}

/* Fiyat glow efekti */
.price-glow {
    animation: priceGlow 2.5s ease-in-out infinite alternate;
}

@keyframes priceGlow {
    0% {
        filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.6));
    }
    100% {
        filter: drop-shadow(0 0 25px rgba(255, 215, 0, 0.9));
    }
}

/* Kenar parlama efekti */
.super-package-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 2rem;
    background: linear-gradient(45deg, 
        rgba(255, 215, 0, 0.8), 
        rgba(255, 165, 0, 0.8), 
        rgba(255, 140, 0, 0.8), 
        rgba(255, 99, 71, 0.8),
        rgba(255, 215, 0, 0.8));
    background-size: 300% 300%;
    animation: borderGlow 4s ease-in-out infinite;
    z-index: -1;
}

@keyframes borderGlow {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Border gradient sınıfı */
.border-gradient {
    border: 2px solid transparent;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 165, 0, 0.2), rgba(255, 140, 0, 0.2)) padding-box,
                linear-gradient(45deg, rgba(255, 215, 0, 0.8), rgba(255, 165, 0, 0.8), rgba(255, 140, 0, 0.8)) border-box;
}

/* Özellik kartları için gelişmiş hover efektleri */
.super-package-card .group:hover {
    transform: translateX(8px);
}

/* Yeni renk paleti için ek efektler */
.super-package-card .star-glow {
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.8));
}

.super-package-card .package-title-glow {
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.6), 0 0 60px rgba(255, 165, 0, 0.4), 0 0 90px rgba(255, 140, 0, 0.3);
}

.super-package-card .price-glow {
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.8));
}

/* Yeni Süper Paket Tasarımı */
.super-package-new {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.9) 0%, rgba(251, 191, 36, 0.9) 50%, rgba(30, 41, 59, 0.9) 100%);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3), 0 0 100px rgba(251, 191, 36, 0.2);
}

.super-package-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.4), 0 0 120px rgba(251, 191, 36, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Yeni tasarım için özel efektler */
.super-package-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.super-package-new:hover::before {
    left: 100%;
}

/* Sade tasarım için özel stil */
.super-package-new .group:hover {
    transform: translateY(-1px);
}

/* Fiyat gradient efekti */
.super-package-new .text-transparent {
    animation: priceGlowNew 3s ease-in-out infinite alternate;
}

@keyframes priceGlowNew {
    0% {
        filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
    }
    100% {
        filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.8));
    }
}

/* === Görselin Etrafında Dönen Neon Halka === */
.animated-ring {
    position: relative;
    display: inline-block;
    border-radius: 30px;
    z-index: 1;
}

.animated-ring::before {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 40px;
    background: conic-gradient(
        from 0deg,
        #FFD700,
        #FFA500,
        #FF8C00,
        #FFD700
    );
    animation: spinColors 4s linear infinite;
    filter: blur(20px);
    z-index: -1;
}

/* Dönen renk animasyonu */
@keyframes spinColors {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
