/* ===== ANASAYFA ÖZEL STİLLER - PREMIUM & MODERN ===== */

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #063A6B 0%, #0A4D8C 100%);
    overflow: hidden;
    padding: var(--spacing-4xl) 0;
    color: white;
}

.hero-section h1,
.hero-section h2,
.hero-section h3:not(.selection-title) {
    color: white !important;
}

/* Dynamic Background Blobs - Darkened for better contrast */
.hero-section::before,
.hero-section::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(10, 77, 140, 0.4) 0%, transparent 70%);
    z-index: 1;
    filter: blur(80px);
    animation: blobFloat 25s infinite alternate;
}

.hero-section::before {
    top: -200px;
    left: -100px;
}

.hero-section::after {
    bottom: -200px;
    right: -100px;
    animation-delay: -10s;
}

@keyframes blobFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(100px, 50px) scale(1.2);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.hero-brand {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 2.5rem;
    padding: 8px 24px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.hero-brand:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.hero-logo {
    height: 45px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
}

.hero-brand-text {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.title-word {
    display: inline-block;
}

.title-highlight {
    background: linear-gradient(90deg, #fff 0%, #B8D9F2 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.35rem;
    color: #ffffff;
    max-width: 800px;
    margin: 0 auto 3.5rem;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    font-weight: 500;
}

/* Premium Buttons */
.btn-hero {
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary.btn-hero {
    background: white;
    color: var(--akdeniz-mavi);
    border: none;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.btn-primary.btn-hero:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    background: var(--akdeniz-ultra-acik);
}

.btn-outline-light.btn-hero {
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
}

.btn-outline-light.btn-hero:hover {
    background: white;
    color: var(--akdeniz-mavi);
    transform: translateY(-5px);
}


/* ===== FEATURES SECTION ===== */
.features-section {
    padding: 100px 0;
    background: white;
}

.feature-card {
    padding: 50px 40px;
    border-radius: 30px;
    background: #fff;
    border: 1px solid var(--border-rengi);
    transition: all 0.4s ease;
    height: 100%;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(10, 77, 140, 0.1);
    border-color: var(--akdeniz-pastel);
}

.feature-icon {
    width: 90px;
    height: 90px;
    background: var(--akdeniz-ultra-acik);
    color: var(--akdeniz-mavi);
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 30px;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    background: var(--akdeniz-mavi);
    color: white;
    transform: rotateY(180deg);
}

/* ===== ANNOUNCEMENT CARD - PREMIUM ===== */
.announcement-important,
.announcement-normal {
    background: #fff;
    border: 1px solid var(--border-rengi);
    padding: 24px;
    border-radius: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.announcement-important {
    border-left: 6px solid var(--danger-color);
}

.announcement-important:hover,
.announcement-normal:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--akdeniz-koyu-mavi) 0%, var(--akdeniz-mavi) 100%);
    color: white;
    text-align: center;
    border-radius: 50px;
    margin: 0 40px 100px;
}

.cta-section h2,
.cta-section h3 {
    color: white !important;
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .user-selection-cards {
        flex-wrap: wrap;
    }

    .cta-section {
        margin: 0 20px 80px;
        border-radius: 30px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .hero-section {
        min-height: 600px;
    }

    .btn-hero {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .cta-title {
        font-size: 2rem;
    }
}