/* Modern Header Styles */
.header-modern {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    gap: 20px;
}

.logo-modern {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.logo-info h1 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #111827;
    margin: 0;
    line-height: 1;
}

.logo-info span {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 500;
}

.nav-modern {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 35px;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: #334155;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #2563eb;
    background: rgba(37, 99, 235, 0.1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 15px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.header-phone:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3);
}

.header-phone i {
    font-size: 1.2rem;
}

.header-phone span {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.header-phone small {
    font-size: 0.7rem;
    opacity: 0.9;
}

.header-phone strong {
    font-weight: 700;
}

.header-whatsapp {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background: #25d366;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.header-whatsapp:hover {
    background: #128c7e;
    transform: translateY(-2px);
}

.header-whatsapp i {
    font-size: 1.3rem;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: #334155;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Modern Hero Additional Styles */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.85) 0%, rgba(59, 130, 246, 0.75) 50%, rgba(147, 197, 253, 0.65) 100%);
}

.hero-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content-left {
    color: white;
}

.hero-badges {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.badge-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.yök-badge {
    background: rgba(220, 38, 38, 0.9);
    color: white;
}

.eu-badge {
    background: rgba(0, 51, 153, 0.9);
    color: white;
}

.hero-main-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.title-highlight {
    color: #fbbf24;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 40px;
    opacity: 0.95;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fbbf24;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-cta {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    min-width: 200px;
}

.btn-cta.primary {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.btn-cta.whatsapp {
    background: #25d366;
    color: white;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.btn-cta i {
    font-size: 2rem;
}

.btn-cta span {
    text-align: left;
}

.btn-cta small {
    font-size: 0.8rem;
    font-weight: 400;
    opacity: 0.9;
}

/* Info Card */
.hero-content-right {
    position: relative;
    z-index: 2;
}

.info-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.card-header {
    text-align: center;
    margin-bottom: 25px;
}

.card-header h3 {
    color: #111827;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.card-header p {
    color: #64748b;
    font-size: 0.9rem;
}

.programs-preview {
    margin-bottom: 25px;
}

.program-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    margin-bottom: 10px;
    background: #f8fafc;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.program-item:hover {
    background: #2563eb;
    color: white;
    transform: translateX(5px);
}

.program-item i {
    font-size: 1.2rem;
    color: #2563eb;
    min-width: 20px;
}

.program-item:hover i {
    color: white;
}

.program-item div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.program-item strong {
    font-size: 0.95rem;
}

.program-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #10b981;
}

.program-item:hover span {
    color: #fbbf24;
}

.card-features {
    margin-bottom: 25px;
}

.feature-check {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.9rem;
    color: #334155;
}

.feature-check i {
    color: #10b981;
    font-size: 1rem;
}

.btn-full {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-full:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Trust Strip */
.trust-strip {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: white;
    opacity: 0.9;
}

.trust-item img {
    width: 35px;
    height: 35px;
}

.trust-item i {
    font-size: 2rem;
    color: #fbbf24;
}

.trust-item span {
    font-size: 0.8rem;
    font-weight: 500;
    text-align: center;
}

/* Mobile Header */
@media (max-width: 768px) {
    .nav-modern {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        transition: all 0.3s ease;
        opacity: 0;
    }
    
    .nav-modern.mobile-active {
        transform: translateY(0);
        opacity: 1;
    }
    
    .nav-list {
        flex-direction: column;
        padding: 20px;
        gap: 0;
    }
    
    .nav-link {
        padding: 15px;
        border-bottom: 1px solid #e2e8f0;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .header-actions {
        display: none;
    }
    
    .header-phone {
        display: none;
    }

/* Mobile Hero Responsive */
@media (max-width: 768px) {
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-main-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 30px;
    }
    
    .hero-actions {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    
    .btn-cta {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .trust-items {
        gap: 20px;
    }
    
    .trust-item span {
        font-size: 0.7rem;
    }
}