/* Özel Stiller */
:root {
    --main-bg: #04042f;
    --main-color: #d3b768;
    --secondary-bg: #050545;
    --text-light: #ffffff;
    --whatsapp: #25d366;
    --telegram: #0088cc;
    --youtube: #ff0000;
}

body {
    background-color: var(--main-bg);
    font-family: 'Arial', sans-serif;
    color: var(--text-light);
    position: relative;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

/* Arkaplan görüntüsü stilleri */
.bg-container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
}

.bg-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.4;
    pointer-events: none;
}

/* Logo parlaması ve netliği */
.logo-glow {
    filter: drop-shadow(0 0 10px rgba(211, 183, 104, 0.8));
    animation: logoPulse 3s infinite;
    image-rendering: -webkit-optimize-contrast; /* Logo netliği için */
    transform: translateZ(0); /* Logo netliği için */
    backface-visibility: hidden; /* Logo netliği için */
    -webkit-font-smoothing: subpixel-antialiased; /* Logo netliği için */
}

@keyframes logoPulse {
    0% {
        filter: drop-shadow(0 0 5px rgba(211, 183, 104, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 15px rgba(211, 183, 104, 0.8));
    }
    100% {
        filter: drop-shadow(0 0 5px rgba(211, 183, 104, 0.5));
    }
}

/* Karşılama animasyonu */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.container > * {
    animation: fadeIn 0.8s ease-out forwards;
}

.container > *:nth-child(2) {
    animation-delay: 0.2s;
}

.container > *:nth-child(3) {
    animation-delay: 0.4s;
}

/* Modern cam efekti */
.glass-effect {
    background: rgba(5, 5, 69, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(211, 183, 104, 0.2);
}

/* Kart hover efekti */
.hover-card {
    transition: all 0.3s ease;
}

.hover-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--main-color);
}

/* Sosyal medya ikon konteyner */
.social-icon-container {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #04042f, #050545);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--main-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(211, 183, 104, 0.3);
    transition: all 0.3s ease;
}

.hover-card:hover .social-icon-container {
    transform: rotateY(180deg);
    color: #ffffff;
    background: linear-gradient(45deg, var(--main-color), #e5ca7c);
}

/* Özellik ikon konteyner */
.feature-icon-container {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #04042f, #050545);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--main-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(211, 183, 104, 0.3);
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.hover-card:hover .feature-icon-container {
    transform: rotateY(180deg);
    color: #ffffff;
    background: linear-gradient(45deg, var(--main-color), #e5ca7c);
}

/* Adım numarası */
.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--main-color), #e5ca7c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    color: #04042f;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(211, 183, 104, 0.3);
}

.step-item {
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.step-item:hover {
    background: rgba(211, 183, 104, 0.1);
    transform: translateY(-5px);
}

/* İletişim ikonu */
.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #04042f, #050545);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--main-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(211, 183, 104, 0.3);
    transition: all 0.3s ease;
}

/* Form alanları */
.input-field {
    background: rgba(4, 4, 47, 0.7);
    border: 1px solid rgba(211, 183, 104, 0.3);
    border-radius: 8px;
    padding: 12px 16px;
    color: white;
    transition: all 0.3s ease;
    outline: none;
    resize: none;
}

.input-field:focus {
    border-color: var(--main-color);
    box-shadow: 0 0 0 2px rgba(211, 183, 104, 0.2);
}

.input-field::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Ekleme butonu */
.add-more-btn {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: linear-gradient(45deg, #04042f, #050545);
    color: var(--main-color);
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 1px solid rgba(211, 183, 104, 0.3);
    font-size: 0.9rem;
}

.add-more-btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(45deg, #050545, #04042f);
    color: #ffffff;
    border-color: var(--main-color);
}

/* Gönder butonu */
.submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 40px;
    background: linear-gradient(45deg, #d3b768, #e5ca7c);
    color: #04042f;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(211, 183, 104, 0.3);
    font-size: 1.1rem;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(211, 183, 104, 0.5);
    background: linear-gradient(45deg, #e5ca7c, #d3b768);
}

.submit-btn:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(211, 183, 104, 0.3);
}

/* Tablo stillleri */
table {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}

th, td {
    transition: all 0.3s ease;
}

tbody tr:hover {
    background-color: rgba(211, 183, 104, 0.1);
}

/* SSS Bölümü */
.space-y-4 > div {
    transition: all 0.3s ease;
}

.space-y-4 > div:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(211, 183, 104, 0.4);
}

/* Altın vurgu animasyonu */
@keyframes goldPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(211, 183, 104, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(211, 183, 104, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(211, 183, 104, 0);
    }
}

/* Mobil uyumlu düzenlemeler */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    header h1 {
        font-size: 1.8rem;
    }
    
    .social-icon-container {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }
    
    .feature-icon-container {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
    
    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.4rem;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .submit-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 1.6rem;
    }
    
    .social-icon-container {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
        margin-right: 8px;
    }
    
    .feature-icon-container {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .add-more-btn {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .submit-btn {
        width: 100%;
        padding: 12px 20px;
    }
} 