/* Asenkron yüklenecek, ilk ekranı (above-the-fold) engellemeyen stiller */

/* Smooth Scroll & Offset for Fixed Header */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px; /* Header yüksekliği + biraz boşluk */
}

/* Common Section Styles */
.section {
    padding: var(--spacing-xl) 0;
}

.bg-soft {
    background-color: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* Grid Layouts */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

/* Typography Hierarchy */
h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.02em;
}

.hero-title-sub {
    font-size: 0.5em;
    color: var(--text-secondary);
    display: block;
    margin-top: 0.5rem;
    font-weight: 500;
}

.highlight {
    color: #fff;
    text-shadow: 0 0 20px rgba(255,255,255,0.3);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    padding: 0.5rem;
}

/* Trust Section (E-E-A-T) */
.trust-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.trust-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.trust-content strong {
    color: var(--white);
}

.trust-list {
    list-style: none;
    margin-top: 1.5rem;
}

.trust-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.icon-small {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    color: #34A853; /* Güven veren yeşil tik */
}

.icon-small svg {
    width: 100%;
    height: 100%;
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(45deg, #111, #222);
    border-radius: 24px;
    position: relative;
    border: 1px solid rgba(255,255,255,0.05);
}

.badge-float {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--white);
    color: var(--black);
    padding: 1rem 2rem;
    border-radius: var(--border-radius-pill);
    font-weight: 800;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Dark Form Enhancements */
.dark-form {
    background: #050505;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.8);
}

.dark-form .form-control {
    background: #111;
    border-color: rgba(255,255,255,0.15);
}

.dark-form .form-control:focus {
    background: #1a1a1a;
    border-color: var(--white);
    box-shadow: 0 0 0 3px rgba(255,255,255,0.1);
}

.form-message.success {
    color: #34A853;
    background: rgba(52, 168, 83, 0.1);
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(52, 168, 83, 0.2);
}

/* Success Animation */
.success-animation {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.checkmark {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: #fff;
    stroke-miterlimit: 10;
    box-shadow: inset 0px 0px 0px #34A853;
    animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}

.checkmark__circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: #34A853;
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark__check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes scale {
    0%, 100% {
        transform: none;
    }
    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}

@keyframes fill {
    100% {
        box-shadow: inset 0px 0px 0px 50px #34A853;
    }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .trust-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .badge-float {
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .main-nav {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(10, 10, 12, 0.98);
        backdrop-filter: blur(15px);
        padding: var(--spacing-xl) 0;
        z-index: 99;
        overflow-y: auto;
    }
    
    .main-nav.active {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }
    
    .main-nav ul {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-lg);
        width: 100%;
    }

    .main-nav a {
        font-size: 1.5rem;
        display: block;
        padding: 10px;
    }
    
    .header-actions {
        display: none; /* Mobilde butonu menü içine alabiliriz veya gizleriz */
    }
}


/* Cards (Programs) */
.card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: var(--spacing-lg);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.card-badge {
    display: inline-block;
    background: var(--white);
    color: var(--black);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: var(--border-radius-pill);
    margin-bottom: var(--spacing-md);
}

.card-title {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: var(--spacing-sm);
}

.card-desc {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    font-size: 0.95rem;
}

.card-features {
    list-style: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-md);
}

.card-features li {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.card-features li::before {
    content: "•";
    color: var(--white);
    margin-right: 8px;
    font-size: 1.2rem;
}

/* Features (Neden Biz) */
.feature-item {
    text-align: center;
    padding: var(--spacing-md);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--spacing-md);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition-smooth);
}

.feature-item:hover .feature-icon {
    background: var(--white);
    color: var(--black);
    transform: scale(1.1);
}

.feature-title {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: var(--spacing-sm);
}

.feature-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Accordion (FAQ) */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.accordion-header {
    width: 100%;
    text-align: left;
    padding: var(--spacing-md) 0;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-smooth);
}

.accordion-header:hover {
    color: rgba(255, 255, 255, 0.8);
}

.accordion-icon {
    transition: transform 0.3s ease;
}

.accordion-header.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.accordion-body {
    padding-bottom: var(--spacing-md);
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Registration Form */
.register-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.contact-details {
    margin-top: var(--spacing-lg);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.5;
}

.contact-item svg {
    flex-shrink: 0;
    margin-top: 3px;
}

.register-form-container {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: var(--spacing-lg);
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-control {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.form-control:focus {
    outline: none;
    border-color: var(--white);
    background: rgba(0, 0, 0, 0.4);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

select.form-control option {
    background: var(--bg-color);
    color: var(--white);
}

.form-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 1rem;
}

/* Page Headers (For Inner Pages) */
.page-header {
    padding: 160px 0 80px;
    text-align: center;
    background: linear-gradient(to bottom, rgba(10, 10, 12, 1) 0%, rgba(5, 5, 5, 1) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* About Page Styles */
.about-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.about-text h2 {
    margin-bottom: 1.5rem;
}

.about-text h3 {
    margin-top: 2rem;
    font-size: 1.5rem;
    color: var(--white);
}

.about-text p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Blog Detail Styles */
.blog-detail-content h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.blog-detail-content p {
    margin-bottom: 1.5rem;
}

/* Contact Page Styles */
.contact-page-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: var(--spacing-lg);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background: #111;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

/* Global Footer Styles */
.site-footer {
    padding: var(--spacing-xl) 0 0;
    background-color: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.footer-title {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-desc {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 300px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.footer-contact li svg {
    flex-shrink: 0;
    margin-top: 3px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition-smooth);
}

.social-links a:hover {
    background: var(--white);
    color: var(--black);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--white);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .about-content, .contact-page-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .about-image {
        display: flex;
        justify-content: center;
        margin-top: var(--spacing-md);
    }
    .trust-list {
        display: inline-block;
        text-align: left;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-col {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .social-links {
        justify-content: center;
    }
    .footer-contact li {
        justify-content: center;
    }
    .register-wrapper {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .register-info {
        text-align: center;
    }
    
    .contact-details {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

/* SEO Tag Cloud */
.seo-tags-section {
    padding: 3rem 0;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.seo-tags-wrapper {
    text-align: center;
}
.seo-tags-title {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    font-weight: 600;
}
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
.tag-link {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.5);
    border-radius: 30px;
    font-size: 0.85rem;
    text-decoration: none;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.tag-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Premium Success Modal */
.premium-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}
.premium-modal.active {
    opacity: 1;
    visibility: visible;
}
.premium-modal .modal-content {
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    transform: translateY(20px) scale(0.95);
    transition: var(--transition-smooth);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}
.premium-modal.active .modal-content {
    transform: translateY(0) scale(1);
}
.modal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}
.eagle-claw {
    width: 40px;
    height: 40px;
}
.modal-title {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 15px;
}
.modal-desc {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    line-height: 1.6;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    transition: var(--transition-smooth);
}
.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128C7E;
    color: #FFF;
}

/* Schedule Table */
.schedule-container {
    margin-top: 3rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    overflow-x: auto;
}
.schedule-grid {
    display: flex;
    flex-direction: column;
    width: 100%;
    color: var(--white);
    min-width: 600px;
}
.schedule-header, .schedule-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.schedule-cell {
    padding: 15px;
}
.schedule-header .schedule-cell {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}
.schedule-row:last-child {
    border-bottom: none;
}
.schedule-row:hover {
    background: rgba(255, 255, 255, 0.02);
}
.schedule-badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    display: inline-block;
}
.trust-ribbon {
    background: #000;
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.ribbon-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}
.ribbon-logo {
    height: 40px;
    width: auto;
    filter: grayscale(100%) brightness(200%);
    opacity: 0.8;
}
.ribbon-text {
    color: var(--white);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 1.1rem;
}
.ribbon-badges {
    display: flex;
    gap: 10px;
}
.ribbon-badge {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}
@media (max-width: 768px) {
    .ribbon-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .schedule-grid {
        min-width: unset;
    }
    .schedule-header {
        display: none;
    }
    .schedule-row {
        grid-template-columns: 1fr;
        border: 1px solid rgba(255, 255, 255, 0.1);
        margin-bottom: 1rem;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.02);
    }
    .schedule-cell {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    .schedule-cell:last-child {
        border-bottom: none;
    }
    .schedule-cell::before {
        content: attr(data-label);
        font-weight: 600;
        color: rgba(255, 255, 255, 0.6);
        font-size: 0.85rem;
    }
}
