/* ============================================================
   Sahne Oyunculuk — Aydınlık Tema (theme.css)
   app.css'ten SONRA yüklenir ve görsel stilleri ezer.
   Palet: krem/ivory zemin, lacivert metin, amber + rafine kırmızı
   ============================================================ */

:root {
    --bg:        #F6F3EC;
    --bg-alt:    #FFFFFF;
    --bg-soft:   #EFEAE0;
    --ink:       #1C2535;
    --ink-soft:  #5A6577;
    --line:      #E4DDD0;
    --brand:     #E63946;
    --brand-dark:#C42E3A;
    --gold:      #BE9A2E;
    --gold-soft: #F4EBCD;
    --shadow:    0 18px 45px -22px rgba(28, 37, 53, .35);
    --shadow-sm: 0 8px 20px -12px rgba(28, 37, 53, .30);
    --radius:    14px;
}

/* ---- Temel ezmeler (app.css'i override) ---- */
html { scroll-behavior: smooth; }
body {
    background-color: var(--bg);
    color: var(--ink);
    line-height: 1.6;
    --gutter-x: 20px;
    --gutter-x2: -20px;
    -webkit-font-smoothing: antialiased;
}
* { font-family: "Cabin", system-ui, -apple-system, "Segoe UI", sans-serif; }
a { color: inherit; }
img { max-width: 100%; }

.so-section { padding: 90px 0; }
.so-section.alt { background: var(--bg-alt); }
.so-section.soft { background: var(--bg-soft); }

.sec-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.sec-kicker {
    font-family: "Mitr", sans-serif;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
    display: inline-block;
}
.sec-title {
    font-family: "Mitr", sans-serif;
    font-size: 40px;
    line-height: 1.15;
    color: var(--ink);
    letter-spacing: -.5px;
    margin-bottom: 16px;
}
.sec-sub { color: var(--ink-soft); font-size: 17px; }
.text-brand { color: var(--brand); }
.text-gold  { color: var(--gold); }

/* ---- Butonlar ---- */
.so-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: "Mitr", sans-serif;
    font-size: 16px;
    letter-spacing: .2px;
    padding: 15px 30px;
    border-radius: 10px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all .25s ease;
    text-align: center;
}
.so-btn-primary {
    background: var(--brand);
    color: #fff;
    box-shadow: 0 12px 24px -12px rgba(230, 57, 70, .8);
}
.so-btn-primary:hover { background: var(--brand-dark); transform: translateY(-2px); }
.so-btn-ghost {
    background: transparent;
    color: var(--ink);
    border-color: var(--line);
}
.so-btn-ghost:hover { border-color: var(--ink); background: #fff; }
.so-btn-gold {
    background: var(--gold);
    color: #fff;
}
.so-btn-gold:hover { filter: brightness(.94); transform: translateY(-2px); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(246, 243, 236, .82);
    backdrop-filter: saturate(180%) blur(12px);
    -webkit-backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid var(--line);
    transition: box-shadow .3s ease, background .3s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); background: rgba(246, 243, 236, .95); }
.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
    width: 42px; height: 42px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--ink), #2C3A55);
    color: var(--gold);
    font-family: "Mitr", sans-serif;
    font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    letter-spacing: -.5px;
    box-shadow: var(--shadow-sm);
}
.brand-name {
    font-family: "Mitr", sans-serif;
    font-size: 20px;
    color: var(--ink);
    letter-spacing: -.3px;
}
.brand-name strong { color: var(--brand); font-weight: 600; }

.site-nav { display: flex; align-items: center; gap: 6px; }
.site-nav a {
    font-family: "Mitr", sans-serif;
    font-size: 15px;
    color: var(--ink);
    padding: 9px 14px;
    border-radius: 8px;
    transition: all .2s ease;
}
.site-nav a:hover { background: var(--bg-soft); color: var(--brand); }
.site-nav a.active { color: var(--brand); }
.site-nav a.nav-cta {
    background: var(--brand);
    color: #fff;
    margin-left: 8px;
    padding: 10px 20px;
    box-shadow: 0 10px 20px -12px rgba(230, 57, 70, .9);
}
.site-nav a.nav-cta:hover { background: var(--brand-dark); color: #fff; }

.nav-toggle {
    display: none;
    background: none;
    border: 1px solid var(--line);
    border-radius: 8px;
    width: 44px; height: 44px;
    font-size: 20px;
    color: var(--ink);
    cursor: pointer;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    padding: 70px 0 80px;
    overflow: hidden;
    background:
        radial-gradient(1100px 500px at 85% -10%, var(--gold-soft), transparent 60%),
        radial-gradient(900px 500px at 0% 110%, #fbe9ea, transparent 55%),
        var(--bg);
}
.hero-grid {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}
.hero-col { flex: 1 1 420px; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: #fff;
    border: 1px solid var(--line);
    color: var(--ink-soft);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 22px;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #29b765; box-shadow: 0 0 0 4px rgba(41,183,101,.18); }
.hero h1 {
    font-family: "Mitr", sans-serif;
    font-size: 56px;
    line-height: 1.08;
    letter-spacing: -1.4px;
    color: var(--ink);
    margin-bottom: 22px;
}
.hero h1 .hl { color: var(--brand); position: relative; white-space: nowrap; }
.hero h1 .hl::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: 6px; height: 12px;
    background: var(--gold-soft); z-index: -1; border-radius: 4px;
}
.hero p.lead { font-size: 19px; color: var(--ink-soft); max-width: 540px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust { margin-top: 30px; display: flex; align-items: center; gap: 14px; color: var(--ink-soft); font-size: 14px; }
.hero-stars { color: var(--gold); font-size: 18px; letter-spacing: 2px; }

/* Hero görsel kolajı */
.hero-collage {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.hero-collage img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    object-fit: cover;
    display: block;
}
.hero-collage .tall { grid-row: span 2; height: 100%; min-height: 320px; object-fit: cover; }
.hero-collage .pic { height: 170px; }
.hero-float {
    position: absolute;
    left: -10px; bottom: -18px;
    background: #fff;
    border-radius: 12px;
    padding: 14px 18px;
    box-shadow: var(--shadow);
    display: flex; align-items: center; gap: 12px;
}
.hero-float .ico { width: 40px; height: 40px; border-radius: 10px; background: var(--gold-soft); color: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 20px; }
.hero-float b { font-family: "Mitr", sans-serif; color: var(--ink); display: block; line-height: 1.2; }
.hero-float small { color: var(--ink-soft); }

/* ============================================================
   İSTATİSTİK ŞERİDİ
   ============================================================ */
.stats-bar {
    background: var(--ink);
    color: #fff;
    padding: 38px 0;
}
.stats-grid { display: flex; flex-wrap: wrap; text-align: center; }
.stat-item { flex: 1 1 200px; padding: 12px; position: relative; }
.stat-num { font-family: "Mitr", sans-serif; font-size: 42px; color: var(--gold); line-height: 1; }
.stat-label { color: #c9cfdb; font-size: 15px; margin-top: 8px; }

/* ============================================================
   FORM BÖLÜMÜ (light yeniden stil)
   ============================================================ */
.form-section { background: var(--bg-soft); padding: 90px 0; }

/* app.css ezmeleri: koyu form -> aydınlık kart */
section.center { background: transparent !important; margin-bottom: 0 !important; }

.baslik {
    font-family: "Mitr", sans-serif;
    color: var(--ink) !important;
    font-size: 34px !important;
}
section.center .baslik { color: var(--ink); }
.padleft56 { padding-left: 0 !important; }

.formbg {
    background: var(--bg-alt) !important;
    border: 1px solid var(--line);
    border-radius: 18px !important;
    box-shadow: var(--shadow);
    padding: 38px !important;
}

.inputform label { color: var(--ink) !important; font-weight: 600; margin-left: 4px !important; font-size: 15px !important; }
.inputform input,
.inputform select,
.inputform textarea {
    background-color: #fff !important;
    color: var(--ink) !important;
    border: 1px solid var(--line) !important;
    border-radius: 10px !important;
    height: 56px;
}
.inputform textarea { height: 150px !important; }
.inputform input:focus,
.inputform select:focus,
.inputform textarea:focus {
    border: 1px solid var(--brand) !important;
    box-shadow: 0 0 0 4px rgba(230,57,70,.12);
}
::placeholder { color: #9aa1ad !important; }
.inputform .sozlesme { color: var(--ink-soft); }
.inputform a { color: var(--brand); }
.inputform .checksozlesme .kutu .check { background: #fff; border-color: #bcbcbc; }

/* Gönder butonu (eski .btgonder light) */
.btgonder {
    background-color: var(--brand) !important;
    border-radius: 10px !important;
    font-family: "Mitr", sans-serif;
    box-shadow: 0 14px 26px -14px rgba(230,57,70,.9);
    transition: all .25s ease;
}
.btgonder:hover { background-color: var(--brand-dark) !important; transform: translateY(-2px); }

/* Adım göstergesi (light) */
.form-steps-indicator {
    display: flex; align-items: flex-start; justify-content: center;
    max-width: 560px; margin: 0 auto 30px; padding: 0 10px;
}
.form-steps-indicator .step-dot { display: flex; flex-direction: column; align-items: center; text-align: center; flex: 0 0 auto; }
.form-steps-indicator .step-dot span {
    width: 46px; height: 46px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: #fff; border: 2px solid var(--line); color: var(--ink-soft);
    font-family: "Mitr", sans-serif; font-size: 18px; font-weight: 700;
    transition: all .3s ease;
}
.form-steps-indicator .step-dot small { margin-top: 9px; color: var(--ink-soft); font-size: 13px; font-weight: 600; }
.form-steps-indicator .step-dot.active span { background: var(--brand); border-color: var(--brand); color: #fff; box-shadow: 0 0 0 5px rgba(230,57,70,.14); }
.form-steps-indicator .step-dot.done span { background: var(--gold); border-color: var(--gold); color: #fff; }
.form-steps-indicator .step-dot.active small,
.form-steps-indicator .step-dot.done small { color: var(--ink); }
.form-steps-indicator .step-line { flex: 1 1 auto; height: 2px; background: var(--line); margin: 23px 12px 0; max-width: 110px; }

.form-step { display: none; }
.form-step.active { display: block; animation: fadeStep .35s ease; }
@keyframes fadeStep { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.form-nav { display: flex; gap: 14px; margin-top: 10px; }
.form-nav .btgonder { margin-top: 0 !important; flex: 1 1 auto; }
.btgeri {
    cursor: pointer; font-family: "Mitr", sans-serif; font-size: 18px;
    color: var(--ink); border: 1px solid var(--line); background: #fff;
    flex: 0 0 38%; height: 60px; border-radius: 10px; transition: all .25s ease;
}
.btgeri:hover { border-color: var(--ink); background: var(--bg-soft); }

/* Form yan bilgi kutusu */
.form-aside { padding: 10px 6px; }
.form-aside h3 { font-family: "Mitr", sans-serif; font-size: 26px; color: var(--ink); margin-bottom: 16px; }
.form-aside .fa-item { display: flex; gap: 14px; margin-bottom: 22px; }
.form-aside .fa-item .fa-ico {
    flex: 0 0 44px; width: 44px; height: 44px; border-radius: 12px;
    background: var(--gold-soft); color: var(--gold);
    display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.form-aside .fa-item b { font-family: "Mitr", sans-serif; color: var(--ink); display: block; margin-bottom: 3px; }
.form-aside .fa-item p { color: var(--ink-soft); font-size: 15px; }

/* ============================================================
   ÖZELLİK KARTLARI (Neden Biz)
   ============================================================ */
.feature-card {
    background: var(--bg-alt);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 30px 26px;
    height: 100%;
    margin-bottom: 28px;
    transition: transform .25s ease, box-shadow .25s ease;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.feature-card .fc-ico {
    width: 60px; height: 60px; border-radius: 14px;
    background: var(--gold-soft);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
}
.feature-card .fc-ico img { width: 32px; height: 32px; }
.feature-card h3 { font-family: "Mitr", sans-serif; font-size: 20px; color: var(--ink); margin-bottom: 10px; }
.feature-card p { color: var(--ink-soft); font-size: 15.5px; line-height: 1.7; }

/* ============================================================
   PROJELER / VİTRİN
   ============================================================ */
.proj-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 22px; }
.proj-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    aspect-ratio: 3 / 4;
    background: var(--ink);
    transition: transform .3s ease, box-shadow .3s ease;
}
.proj-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.proj-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.proj-card:hover img { transform: scale(1.06); }
.proj-card .proj-cap {
    position: absolute; left: 0; right: 0; bottom: 0;
    padding: 40px 16px 16px;
    background: linear-gradient(to top, rgba(18,24,38,.92), transparent);
    color: #fff;
}
.proj-card .proj-cap b { font-family: "Mitr", sans-serif; font-size: 17px; display: block; }
.proj-card .proj-cap small { color: var(--gold); }

/* ============================================================
   ADIM ADIM (Nasıl Çalışır)
   ============================================================ */
.steps-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 26px; }
.how-step { text-align: center; padding: 10px; }
.how-step .num {
    width: 64px; height: 64px; margin: 0 auto 18px;
    border-radius: 50%;
    border: 2px dashed var(--gold);
    color: var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-family: "Mitr", sans-serif; font-size: 26px;
    background: var(--gold-soft);
}
.how-step h4 { font-family: "Mitr", sans-serif; font-size: 19px; color: var(--ink); margin-bottom: 8px; }
.how-step p { color: var(--ink-soft); font-size: 15px; }

/* ============================================================
   SSS ACCORDION
   ============================================================ */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
    background: var(--bg-alt);
    border: 1px solid var(--line);
    border-radius: 12px;
    margin-bottom: 14px;
    overflow: hidden;
    transition: box-shadow .25s ease;
}
.faq-item.open { box-shadow: var(--shadow-sm); }
.faq-q {
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    padding: 22px 24px; cursor: pointer;
    font-family: "Mitr", sans-serif; font-size: 18px; color: var(--ink);
}
.faq-q .faq-plus { flex: 0 0 auto; color: var(--brand); font-size: 24px; transition: transform .3s ease; }
.faq-item.open .faq-plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a-inner { padding: 0 24px 22px; color: var(--ink-soft); font-size: 16px; line-height: 1.75; }

/* ============================================================
   İÇ SAYFA BAŞLIK (page hero)
   ============================================================ */
.page-hero {
    padding: 70px 0 60px;
    text-align: center;
    background:
        radial-gradient(800px 360px at 50% -20%, var(--gold-soft), transparent 60%),
        var(--bg);
    border-bottom: 1px solid var(--line);
}
.page-hero h1 { font-family: "Mitr", sans-serif; font-size: 46px; color: var(--ink); letter-spacing: -1px; margin-bottom: 14px; }
.page-hero p { color: var(--ink-soft); font-size: 18px; max-width: 640px; margin: 0 auto; }
.breadcrumb { color: var(--ink-soft); font-size: 14px; margin-bottom: 16px; }
.breadcrumb a { color: var(--brand); }

/* Hakkımızda içerik */
.about-img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; object-fit: cover; }
.about-text h2 { font-family: "Mitr", sans-serif; font-size: 32px; color: var(--ink); margin-bottom: 18px; }
.about-text p { color: var(--ink-soft); font-size: 16.5px; line-height: 1.8; margin-bottom: 16px; }
.value-card {
    background: var(--bg-alt); border: 1px solid var(--line);
    border-radius: var(--radius); padding: 26px; height: 100%; margin-bottom: 26px;
}
.value-card .v-ico { font-size: 30px; margin-bottom: 12px; }
.value-card h4 { font-family: "Mitr", sans-serif; font-size: 19px; color: var(--ink); margin-bottom: 8px; }
.value-card p { color: var(--ink-soft); font-size: 15px; }

/* CTA şeridi */
.cta-band {
    background: linear-gradient(135deg, var(--ink), #2A3954);
    color: #fff; text-align: center; padding: 70px 0;
    border-radius: 0;
}
.cta-band h2 { font-family: "Mitr", sans-serif; font-size: 36px; margin-bottom: 14px; }
.cta-band p { color: #c9cfdb; font-size: 18px; max-width: 560px; margin: 0 auto 28px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--ink); color: #c9cfdb; padding: 60px 0 0; height: auto; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 34px; }
.site-footer .f-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.site-footer .f-brand .brand-name { color: #fff; }
.site-footer p { font-size: 14.5px; line-height: 1.7; color: #aab2c2; }
.site-footer h5 { font-family: "Mitr", sans-serif; color: #fff; font-size: 16px; margin-bottom: 18px; letter-spacing: .3px; }
.site-footer ul li { margin-bottom: 11px; }
.site-footer ul li a { color: #aab2c2; font-size: 14.5px; transition: color .2s ease; }
.site-footer ul li a:hover { color: var(--gold); }
.site-footer .f-contact li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; font-size: 14.5px; }
.site-footer .f-contact .fc-i { color: var(--gold); }
.footer-bottom {
    margin-top: 50px; border-top: 1px solid rgba(255,255,255,.08);
    padding: 22px 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
    font-size: 13.5px; color: #8b94a6;
}
.footer-bottom a { color: #8b94a6; }
.footer-bottom a:hover { color: var(--gold); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .hero h1 { font-size: 46px; }
}
@media (max-width: 767px) {
    .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
    .site-nav {
        position: fixed; top: 72px; right: 0; left: 0;
        flex-direction: column; align-items: stretch;
        background: var(--bg-alt); border-bottom: 1px solid var(--line);
        padding: 14px 20px; gap: 4px;
        transform: translateY(-130%); transition: transform .3s ease;
        box-shadow: var(--shadow); max-height: calc(100vh - 72px); overflow:auto;
    }
    .site-nav.open { transform: translateY(0); }
    .site-nav a { padding: 14px 12px; border-radius: 8px; }
    .site-nav a.nav-cta { margin: 8px 0 0; text-align: center; }

    .so-section, .form-section, .hero { padding: 56px 0; }
    .hero h1 { font-size: 38px; letter-spacing: -1px; }
    .hero p.lead { font-size: 17px; }
    .sec-title { font-size: 30px; }
    .stat-num { font-size: 34px; }
    .formbg { padding: 24px !important; }
    .footer-grid { grid-template-columns: 1fr; }
    .form-steps-indicator .step-dot small { font-size: 11px; }
    .form-steps-indicator .step-dot span { width: 40px; height: 40px; font-size: 16px; }
    .form-steps-indicator .step-line { margin-top: 20px; }
    .cta-band h2 { font-size: 28px; }
    .page-hero h1 { font-size: 34px; }
}
@media (max-width: 479px) {
    .hero-collage { grid-template-columns: 1fr 1fr; }
    .hero h1 { font-size: 33px; }
    .so-btn { width: 100%; }
    .hero-actions { flex-direction: column; }
}
