/*
Theme Name: Altınçizgi Akademi Pro
Theme URI: https://www.altincizgiakademi.com/
Author: Altınçizgi Akademi
Author URI: https://www.altincizgiakademi.com/
Description: Özel, Hızlı ve Profesyonel Kurumsal Eğitim Teması. (20 SEO ve Hız Kriteri)
Version: 123.0.0
Text Domain: altincizgi-pro
*/

:root {
    --bg-dark-blue: #161947;
    --bg-card-blue: #1c205e;
    --accent-gold: #c5a880;
    --text-white: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.7);
    --text-dark: #1e265c;
    --font-primary: 'Arial', sans-serif;
    --font-heading: 'Playfair Display', 'Georgia', serif;
}

body {
    margin: 0;
    overflow-x: hidden;
    font-family: var(--font-primary);
    background-color: var(--bg-dark-blue);
    color: #e2e8f0;
    line-height: 1.6;
}

/* -- Utilities -- */
.container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}
.btn-gold-filled {
    background: var(--accent-gold);
    color: var(--bg-dark-blue);
    padding: 12px 24px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 4px;
    display: inline-block;
    transition: opacity 0.3s;
}
.btn-gold-filled:hover { opacity: 0.9; }

.btn-gold-outline {
    border: 1px solid #fff;
    color: #fff;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 4px;
    display: inline-block;
    transition: background 0.3s, color 0.3s;
}
.btn-gold-outline:hover {
    background: var(--accent-gold); /* override via customizer later */
    color: var(--bg-dark-blue);
}

/* -- Header -- */
.top-ticker-band {
    background-color: #0d1033;
    color: #fff;
    padding: 8px 20px;
    font-size: 13px;
    text-align: center;
    letter-spacing: 1px;
}
.site-header {
    background: var(--bg-dark-blue);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-menu-list {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}
.nav-menu-list a {
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-family: var(--font-body);
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s;
    padding-bottom: 5px;
    position: relative;
    opacity: 0.8;
}
.nav-menu-list a:hover {
    color: var(--accent-gold);
    opacity: 1;
}
.nav-menu-list .current-menu-item > a,
.nav-menu-list .current_page_item > a {
    color: var(--accent-gold);
    opacity: 1;
}
.nav-menu-list .current-menu-item > a::after,
.nav-menu-list .current_page_item > a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--accent-gold);
}
.menu-toggle { display: none; }

/* -- Hero -- */
.hero-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    background-size: cover;
    background-position: center;
    color: #fff;
}
.hero-inner h1 {
    font-size: calc(24px + 1.5vw);
    font-family: var(--font-heading);
    margin: 20px 0;
}

/* -- Sticky CTA -- */
.sticky-phone-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--accent-gold);
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 1000;
    font-size: 24px;
    text-decoration: none;
    transition: transform 0.3s;
}
.sticky-phone-cta:hover { transform: scale(1.1); }

/* -- Footer -- */
.site-footer {
    background: var(--bg-dark-blue);
    color: var(--text-muted);
    padding: 60px 0 20px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}
.footer-widget h4 {
    color: #fff;
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu-list { display: none; }
    .menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
    }
    .menu-toggle span {
        width: 30px;
        height: 3px;
        background: transparent;
    }
    .header-action { display: none; }
}

/* -- İletişim Sayfası Özel Stilleri -- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}
.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}
.info-icon {
    width: 40px;
    height: 40px;
    background: #f0eee9;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    color: var(--accent-gold);
    font-size: 16px;
}
.info-item strong {
    font-size: 11px;
    letter-spacing: 1px;
    color: #888;
    text-transform: uppercase;
    display: block;
    margin-bottom: 5px;
}
.info-item p {
    font-size: 15px;
    color: #e2e8f0;
    margin: 0;
    line-height: 1.5;
}
.social-links-contact {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}
.social-links-contact a {
    color: #a3a9cc;
    font-size: 11px;
    text-decoration: none;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.social-links-contact a:hover {
    color: var(--accent-gold);
}

.contact-form {
    background: transparent;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-size: 11px;
    color: #888;
    letter-spacing: 1px;
    margin-bottom: 8px;
    font-weight: bold;
}
.form-group input, .form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #e0deda;
    background: transparent;
    border-radius: 2px;
    font-family: var(--font-primary);
    font-size: 14px;
    color: #e2e8f0;
}
.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
}
.contact-form-wrapper {
    background: rgba(255,255,255,0.03) !important;
    border: 1px solid rgba(193,155,96,0.35) !important;
    border-radius: 8px !important;
    padding: 35px !important;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15) !important;
}

.btn-submit {
    background: #1a6b9a;
    color: #fff;
    border: none;
    width: 100%;
    padding: 16px;
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 2px;
    transition: background 0.3s;
}
.btn-submit:hover {
    background: var(--accent-gold);
}

/* Footer ve Ticaret Banner Responsive */
@media (max-width: 992px) {
    .footer-grid-custom {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid-custom {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .ticaret-banner .ticaret-item {
        margin-bottom: 15px;
        width: 33%;
    }
}

/* -- Gutenberg Tam Genişlik (Full Width) Desteği -- */
.wp-block-content .alignwide { width: 100%; max-width: 1400px; margin-left: auto; margin-right: auto; padding: 0 20px; box-sizing: border-box; }
.wp-block-content .alignfull { width: 100%; max-width: 100%; margin-left: 0; margin-right: 0; }


/* Form Tasarımı için ek düzenlemeler */
.custom-kayit-formu .form-group {
    margin-bottom: 15px;
}
.custom-kayit-formu input, .custom-kayit-formu textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: inherit;
    box-sizing: border-box;
}


/* -- Mobil Taşıma (Overflow) Düzeltmesi -- */
html, body {
    max-width: 100vw;
    /* overflow-x: hidden; removed to fix sticky */
}

/* -- TİCARET Scroll Animasyonu -- */
.ticaret-scroll-section {
    position: relative;
    height: 300vh; /* Scroll alanı yaratmak için uzun */
    background: var(--bg-dark-blue);
    color: #fff;
}
.ticaret-sticky-container {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.ticaret-letters {
    display: flex;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 8vw;
    letter-spacing: 5px;
    margin-bottom: 20px;
}
.ticaret-letter {
    color: rgba(255,255,255,0.1);
    transition: color 0.3s;
}
.ticaret-letter.active {
    color: var(--accent-gold);
}
.ticaret-content-display {
    text-align: center;
    min-height: 100px;
    transition: opacity 0.3s;
}
.ticaret-subtitle {
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--accent-gold);
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}
.ticaret-quote {
    font-family: var(--font-heading);
    font-size: 24px;
    font-style: italic;
    font-weight: 300;
}

/* -- Kayıt Formu Sayfası Tasarımı -- */
.kayit-page-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    padding: 60px 20px;
}
.kayit-steps {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 20px;
    margin-bottom: 40px;
}
.k-step {
    text-align: center;
    color: #ccc;
    font-size: 10px;
    letter-spacing: 1px;
    font-weight: bold;
}
.k-step.active {
    color: var(--bg-dark-blue);
}
.k-step-circle {
    width: 30px;
    height: 30px;
    border: 1px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    margin: 0 auto 10px;
}
.k-step.active .k-step-circle {
    background: var(--bg-dark-blue);
    color: #fff;
    border-color: var(--accent-gold);
}

.kayit-sidebar-box {
    margin-bottom: 40px;
}
.kayit-sidebar-title {
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--accent-gold);
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.process-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.process-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}
.process-num {
    width: 30px;
    height: 30px;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #888;
}
.process-text strong {
    display: block;
    font-size: 13px;
    color: var(--bg-dark-blue);
}
.process-text span {
    font-size: 11px;
    color: #888;
}

@media (max-width: 768px) {
    .kayit-page-layout {
        grid-template-columns: 1fr;
    }
    .ticaret-letters {
        font-size: 14vw;
    }
}

/* -- Gereksiz Boşlukların Azaltılması -- */
.hero-section {
    min-height: 50vh !important;
    padding: 40px 20px !important;
}
.contact-section, .map-section, .faq-section {
    padding: 50px 20px !important;
}
.site-footer {
    padding: 40px 0 20px !important;
}
.footer-grid-custom {
    margin-bottom: 30px !important;
}
.page-hero {
    padding: 60px 20px !important;
}
.kayit-page-layout {
    padding: 40px 20px !important;
}


/* -- V2 Mobil Footer & Ticaret Banner Düzeltmeleri -- */
@media (max-width: 768px) {
    /* Footer kolonlarının alt alta gelmesini sağla */
    .footer-grid-custom {
        display: flex !important;
        flex-direction: column !important;
        gap: 40px !important;
    }
    .footer-col {
        width: 100% !important;
        text-align: center !important;
    }
    
    /* İletişim ikonlarının ortalanması */
    .footer-col div {
        justify-content: center !important;
        text-align: center !important;
    }
    .footer-socials {
        justify-content: center !important;
    }

    /* Ticaret Banner harflerinin yan yana sığması */
    .ticaret-banner .container {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        justify-content: space-between !important;
        padding: 0 10px !important;
    }
    .ticaret-banner .ticaret-item {
        width: auto !important;
        margin-bottom: 0 !important;
        flex: 1 !important;
    }
    .ticaret-banner .ticaret-item span:first-child {
        font-size: 18px !important; /* Harf boyutu mobilde küçültüldü */
    }
    .ticaret-banner .ticaret-item span:last-child {
        font-size: 7px !important; /* Alt açıklama boyutu küçültüldü */
        letter-spacing: 0px !important;
    }
}


/* -- Breadcrumb Stilleri (Koyu Arkaplan İçin) -- */
.breadcrumbs a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: color 0.3s;
}
.breadcrumbs a:hover {
    color: #fff;
}


/* -- Mobile Menu Show Class -- */
@media (max-width: 768px) {
    .nav-menu-list.show {
        display: flex !important;
        flex-direction: column !important;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-dark-blue);
        padding: 20px;
        z-index: 9999;
        text-align: center;
        border-top: 1px solid rgba(255,255,255,0.1);
        box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    }
    .header-container {
        position: relative;
    }
}


/* FAQ Container Width Fix (Bypasses HTML Cache) */
.faq-container-custom {
    max-width: 700px !important;
    margin: 0 auto !important;
}

/* Özel SSS Kutusu - Gutenberg İçin */
.sss-kutu {
    max-width: 700px !important;
    margin: 0 auto !important;
    width: 100% !important;
    display: block !important;
}
