/* =====================================================
   SINOP YAPI TADİLAT — Paintix-inspired Design
   ===================================================== */

/* ── VARIABLES ── */
:root {
    --dark:      #1C1C1D;
    --dark2:     #252526;
    --gold:      #CAA05C;
    --gold-h:    #b8893e;
    --bg:        #F6F6F6;
    --white:     #FFFFFF;
    --text:      #59585D;
    --text-dark: #1C1C1D;
    --border:    rgba(28,28,29,.12);
    --border-dk: rgba(255,255,255,.1);
    --radius:    24px;
    --radius-sm: 14px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Golos Text', system-ui, sans-serif;
    color: var(--text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}
/* AOS yatay animasyonları yatay scroll'a sebep olmasın: hepsi dikeyden gelsin.
   NOT: html/body'ye overflow-x:hidden KOYMA — iOS'ta position:fixed'i bozar. */
[data-aos="fade-left"], [data-aos="fade-right"] {
    transform: translate3d(0, 40px, 0);
}
h1,h2,h3,h4,h5,h6 { font-family: 'Cal Sans', 'Golos Text', sans-serif; color: var(--text-dark); line-height: 1.15; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: color .2s; }
ul { list-style: none; padding: 0; margin: 0; }

/* ── SECTIONS ── */
.dark-section { background: var(--dark); }
.light-section { background: var(--bg); }
.py-section, .light-section, .dark-section, .hero-section,
.stats-section, .process-section, .testimonials-section,
.faq-section, .cta-section, .contact-section, .about-section,
.services-section, .site-footer {
    padding: 110px 0;
}
.pt-0 { padding-top: 0 !important; }

/* ── TYPOGRAPHY ── */
.section-eyebrow {
    font-family: 'Golos Text', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--gold);
    margin-bottom: 14px;
    display: block;
}
.section-title {
    font-size: clamp(2rem, 3.5vw, 2.9rem);
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 18px;
    line-height: 1.15;
}
.section-desc {
    font-size: 16px;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 14px;
}
.section-header { margin-bottom: 60px; }

/* ── BUTTONS ── */
.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold);
    color: var(--dark);
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    transition: all .3s;
    border: none;
    cursor: pointer;
}
.btn-gold:hover {
    background: var(--gold-h);
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(202,160,92,.35);
}
.btn-gold i { font-size: 13px; transition: transform .3s; }
.btn-gold:hover i { transform: translateX(4px); }

.btn-outline-light {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid rgba(255,255,255,.3);
    transition: all .3s;
}
.btn-outline-light:hover {
    border-color: rgba(255,255,255,.7);
    background: rgba(255,255,255,.08);
    color: #fff;
    transform: translateY(-3px);
}

.btn-dark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--dark);
    color: #fff;
    padding: 16px 34px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    transition: all .3s;
}
.btn-dark:hover {
    background: #333;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,.25);
}

.btn-wa {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    padding: 16px 34px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    transition: all .3s;
}
.btn-wa:hover {
    background: #1da851;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(37,211,102,.3);
}

/* ── TRANSLATE WIDGET ── */
.translate-trigger {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(202,160,92,.15);
    border: 1px solid rgba(202,160,92,.3);
    color: var(--gold);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Golos Text', sans-serif;
    transition: all .2s;
    white-space: nowrap;
}
.translate-trigger:hover { background: rgba(202,160,92,.25); }

.topbar-right { position: relative; }

.lang-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: #1e1e1f;
    border: 1px solid rgba(202,160,92,.25);
    border-radius: 12px;
    padding: 6px;
    display: none;
    flex-direction: column;
    gap: 2px;
    z-index: 9999;
    min-width: 150px;
    box-shadow: 0 20px 40px rgba(0,0,0,.5);
}
.lang-menu.open { display: flex; }
.lang-menu button {
    background: none;
    border: none;
    color: rgba(255,255,255,.7);
    font-size: 13px;
    font-family: 'Golos Text', sans-serif;
    text-align: left;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all .2s;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 9px;
    width: 100%;
}
.lang-menu button img {
    width: 20px;
    height: 15px;
    border-radius: 2px;
    object-fit: cover;
    flex-shrink: 0;
}
.lang-menu button:hover { background: rgba(202,160,92,.15); color: var(--gold); }

/* ── TOPBAR ── */
.topbar {
    background: #111;
    padding: 10px 0;
    font-size: 13px;
    color: rgba(255,255,255,.5);
    display: none;
}
@media (min-width:768px) { .topbar { display: block; } }
.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.topbar-left { display: flex; gap: 24px; }
.topbar-left span i { color: var(--gold); margin-right: 6px; }
#google_translate_element select {
    background: transparent;
    border: 1px solid rgba(255,255,255,.2);
    color: rgba(255,255,255,.6);
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
}

/* ── HEADER ── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--dark);
    padding: 18px 0;
    transition: all .35s ease;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.site-header.scrolled {
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,.4);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.header-logo img {
    height: 52px;
    filter: brightness(0) invert(1);
    transition: height .3s;
}
.site-header.scrolled .header-logo img { height: 42px; }

.header-nav ul {
    display: flex;
    gap: 6px;
}
.header-nav a {
    color: rgba(255,255,255,.7);
    font-size: 15px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all .2s;
    display: block;
}
.header-nav a:hover {
    color: #fff;
    background: rgba(255,255,255,.07);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: var(--dark);
    padding: 11px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    transition: all .3s;
    white-space: nowrap;
}
.header-cta:hover {
    background: var(--gold-h);
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(202,160,92,.3);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all .3s;
}

/* ── HERO ── */
.hero-section {
    position: relative;
    overflow: hidden;
    padding: 180px 0 100px;
    background:
        linear-gradient(90deg, rgba(28,28,29,.95) 0%, rgba(28,28,29,.7) 65%, transparent 100%),
        linear-gradient(180deg, transparent 50%, rgba(28,28,29,.95) 100%),
        linear-gradient(135deg, #0d1420 0%, #1a2a40 40%, #2a3d58 100%);
}
.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5z' fill='%23ffffff' fill-opacity='0.025' fill-rule='evenodd'/%3E%3C/svg%3E");
    pointer-events: none;
}
.hero-section .container { position: relative; z-index: 2; }

.hero-content { max-width: 680px; margin-bottom: 70px; }
.hero-content .section-eyebrow { margin-bottom: 18px; }
.hero-title {
    font-size: clamp(2.6rem, 5.5vw, 4.2rem);
    font-weight: 400;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 22px;
}
.hero-desc {
    font-size: 17px;
    color: rgba(255,255,255,.65);
    line-height: 1.8;
    max-width: 520px;
    margin-bottom: 36px;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-cards {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 14px;
}
.hero-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-sm);
    padding: 22px 18px;
    text-align: center;
    transition: all .3s;
    cursor: default;
}
.hero-card:hover {
    background: rgba(202,160,92,.12);
    border-color: rgba(202,160,92,.4);
    transform: translateY(-6px);
}
.hero-card-icon {
    width: 50px; height: 50px;
    background: rgba(202,160,92,.15);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 12px;
    transition: all .3s;
}
.hero-card:hover .hero-card-icon { background: var(--gold); }
.hero-card-icon i { color: var(--gold); font-size: 20px; transition: color .3s; }
.hero-card:hover .hero-card-icon i { color: var(--dark); }
.hero-card span { color: rgba(255,255,255,.8); font-size: 14px; font-weight: 600; }

/* ── ABOUT ── */
.about-img-wrap {
    position: relative;
    height: 480px;
}
.about-img-main {
    width: 100%; height: 100%;
    background: linear-gradient(145deg, #2a3d58, #1a2a40);
    border-radius: var(--radius);
    background-image:
        repeating-linear-gradient(45deg, rgba(202,160,92,.04) 0px, rgba(202,160,92,.04) 1px, transparent 1px, transparent 50%),
        repeating-linear-gradient(-45deg, rgba(202,160,92,.04) 0px, rgba(202,160,92,.04) 1px, transparent 1px, transparent 50%);
    background-size: 30px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.about-img-main::after {
    content: '\f0ad';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 140px;
    color: rgba(202,160,92,.08);
}
.about-badge-float {
    position: absolute;
    bottom: 28px;
    left: 28px;
    background: var(--gold);
    border-radius: var(--radius-sm);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 20px 40px rgba(202,160,92,.3);
}
.about-badge-num {
    font-family: 'Cal Sans', sans-serif;
    font-size: 2.8rem;
    color: var(--dark);
    line-height: 1;
}
.about-badge-num sup { font-size: 1.4rem; }
.about-badge-text { font-size: 13px; font-weight: 700; color: var(--dark); text-transform: uppercase; letter-spacing: 1px; }

.about-features { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-dark);
    font-weight: 500;
}
.about-feature i { color: var(--gold); font-size: 18px; flex-shrink: 0; }

/* ── SERVICES ── */
.svc-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 34px 30px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all .35s ease;
}
.svc-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--dark) 0%, #2a3d58 100%);
    opacity: 0;
    transition: opacity .35s;
    border-radius: var(--radius);
}
.svc-card:hover { transform: translateY(-10px); box-shadow: 0 30px 60px rgba(28,28,29,.15); border-color: transparent; }
.svc-card:hover::before { opacity: 1; }
.svc-card > * { position: relative; z-index: 1; }

.svc-num {
    font-family: 'Cal Sans', sans-serif;
    font-size: 3rem;
    color: var(--border);
    position: absolute;
    top: 20px; right: 24px;
    line-height: 1;
    transition: color .35s;
    z-index: 1;
}
.svc-card:hover .svc-num { color: rgba(255,255,255,.08); }

.svc-icon {
    width: 60px; height: 60px;
    background: rgba(202,160,92,.12);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 22px;
    transition: all .35s;
}
.svc-card:hover .svc-icon { background: var(--gold); }
.svc-icon i { color: var(--gold); font-size: 24px; transition: color .35s; }
.svc-card:hover .svc-icon i { color: var(--dark); }

.svc-card h4 { font-size: 1.15rem; font-weight: 400; color: var(--text-dark); margin-bottom: 12px; transition: color .35s; }
.svc-card:hover h4 { color: #fff; }
.svc-card p { font-size: 14px; color: var(--text); line-height: 1.75; margin-bottom: 24px; transition: color .35s; }
.svc-card:hover p { color: rgba(255,255,255,.6); }

.svc-arrow {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    color: var(--text);
    transition: all .35s;
}
.svc-card:hover .svc-arrow { background: var(--gold); border-color: var(--gold); color: var(--dark); }

/* ── STATS ── */
.stats-section { padding: 80px 0; }
.stat-item { padding: 20px; }
.stat-item h3 {
    font-family: 'Cal Sans', sans-serif;
    font-size: clamp(3rem, 5vw, 4.5rem);
    color: var(--gold);
    line-height: 1;
    display: inline;
}
.stat-plus { font-family: 'Cal Sans', sans-serif; font-size: 2.5rem; color: var(--gold); }
.stat-item p { color: rgba(255,255,255,.55); font-size: 15px; font-weight: 500; margin-top: 10px; }

/* ── PROCESS ── */
.process-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: start;
    gap: 0;
    margin-top: 20px;
}
.process-step { text-align: center; padding: 20px 10px; }
.process-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 60px;
    opacity: .3;
}
.process-connector::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--gold);
}
.process-num {
    font-family: 'Cal Sans', sans-serif;
    font-size: 3rem;
    color: var(--gold);
    opacity: .3;
    line-height: 1;
    margin-bottom: 16px;
}
.process-icon {
    width: 70px; height: 70px;
    background: rgba(202,160,92,.1);
    border-radius: 20px;
    border: 2px solid rgba(202,160,92,.2);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px;
    transition: all .3s;
}
.process-step:hover .process-icon { background: var(--gold); border-color: var(--gold); transform: scale(1.08); }
.process-icon i { color: var(--gold); font-size: 26px; transition: color .3s; }
.process-step:hover .process-icon i { color: var(--dark); }
.process-step h4 { font-size: 1.05rem; color: var(--text-dark); margin-bottom: 10px; }
.process-step p { font-size: 13.5px; color: var(--text); line-height: 1.7; }

/* ── TESTIMONIALS ── */
.testi-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius);
    padding: 36px;
    transition: all .3s;
    height: 100%;
}
.testi-card:hover { background: rgba(255,255,255,.08); border-color: rgba(202,160,92,.25); }
.testi-stars { color: var(--gold); font-size: 14px; margin-bottom: 20px; display: flex; gap: 3px; }
.testi-text { color: rgba(255,255,255,.7); font-size: 15px; line-height: 1.8; margin-bottom: 28px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
    width: 48px; height: 48px;
    background: var(--gold);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 14px; color: var(--dark); flex-shrink: 0;
}
.testi-author h6 { color: #fff; font-size: 15px; margin-bottom: 3px; }
.testi-author span { color: rgba(255,255,255,.4); font-size: 13px; }

.testimonial-swiper { padding-bottom: 50px !important; }
.swiper-pagination-bullet { background: rgba(255,255,255,.3); opacity: 1; }
.swiper-pagination-bullet-active { background: var(--gold); }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 2px; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,.08); }
.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    color: rgba(255,255,255,.85);
    font-size: 16px;
    font-weight: 600;
    font-family: 'Golos Text', sans-serif;
    text-align: left;
    padding: 22px 0;
    cursor: pointer;
    gap: 16px;
    transition: color .2s;
}
.faq-q:hover { color: var(--gold); }
.faq-q i { font-size: 14px; color: var(--gold); flex-shrink: 0; transition: transform .3s; }
.faq-item.open .faq-q i { transform: rotate(45deg); }
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, padding .3s;
}
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p { color: rgba(255,255,255,.55); font-size: 15px; line-height: 1.8; padding-bottom: 20px; }

/* ── CTA ── */
.cta-section { background: var(--gold); padding: 90px 0; }
.cta-inner { text-align: center; }
.cta-inner h2 {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    color: var(--dark);
    margin-bottom: 16px;
}
.cta-inner p { color: rgba(28,28,29,.65); font-size: 17px; margin-bottom: 36px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── CONTACT ── */
.contact-info-list { display: flex; flex-direction: column; gap: 6px; }
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255,255,255,.07);
    background: rgba(255,255,255,.03);
    transition: all .3s;
}
.contact-info-item:hover { background: rgba(255,255,255,.06); border-color: rgba(202,160,92,.2); }
.ci-icon {
    width: 46px; height: 46px;
    background: rgba(202,160,92,.15);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.ci-icon i { color: var(--gold); font-size: 18px; }
.contact-info-item h6 { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--gold); margin-bottom: 5px; }
.contact-info-item p { color: rgba(255,255,255,.7); font-size: 15px; margin: 0; }
.contact-info-item a { color: rgba(255,255,255,.7); }
.contact-info-item a:hover { color: var(--gold); }
.contact-map iframe { border-radius: 16px; border: 1px solid rgba(255,255,255,.08) !important; }

.form-input {
    width: 100%;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    font-size: 15px;
    font-family: 'Golos Text', sans-serif;
    color: #fff;
    transition: all .25s;
    appearance: none;
}
.form-input::placeholder { color: rgba(255,255,255,.35); }
.form-input:focus { outline: none; border-color: var(--gold); background: rgba(255,255,255,.09); }
.form-select-dark option { background: var(--dark); color: #fff; }

/* ── FOOTER ── */
.site-footer { padding: 80px 0 0; border-top: 1px solid rgba(255,255,255,.06); }
.footer-top { padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,.06); }
.footer-logo { height: 65px; filter: brightness(0) invert(1); margin-bottom: 20px; }
.site-footer p { color: rgba(255,255,255,.4); font-size: 14px; line-height: 1.8; }
.site-footer h6 {
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-family: 'Golos Text', sans-serif;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,.45); font-size: 15px; transition: color .2s; display: inline-flex; align-items: center; gap: 8px; }
.footer-links a::before { content: '→'; color: var(--gold); font-size: 12px; }
.footer-links a:hover { color: var(--gold); }
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; color: rgba(255,255,255,.45); font-size: 14px; }
.footer-contact i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.footer-contact a { color: rgba(255,255,255,.45); }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom { padding: 24px 0; text-align: center; }
.footer-bottom p { color: rgba(255,255,255,.25); font-size: 13px; }

/* ── FLOATING BUTTONS ── */
.fab-wa, .fab-call {
    position: fixed;
    width: 58px; height: 58px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    color: #fff;
    z-index: 999;
    right: 24px;
    box-shadow: 0 6px 25px rgba(0,0,0,.25);
    transition: all .3s;
}
.fab-wa { background: #25D366; bottom: 24px; }
.fab-call { background: var(--dark); bottom: 96px; border: 2px solid rgba(202,160,92,.3); }
.fab-wa:hover, .fab-call:hover { color: #fff; transform: scale(1.1) translateY(-4px); }
.fab-call:hover { border-color: var(--gold); }

/* ── MOBİL ALT BAR ── */
.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    width: 100%;
    z-index: 1001;
    box-shadow: 0 -4px 20px rgba(0,0,0,.35);
}
.mbb-call, .mbb-wa {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 16px 10px;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: .3px;
    text-decoration: none;
    color: #fff !important;
    transition: filter .2s;
}
.mbb-call { background: var(--gold); }
.mbb-wa   { background: #25D366; }
.mbb-call:hover { filter: brightness(1.08); }
.mbb-wa:hover   { filter: brightness(1.08); }

/* ── MOBILE NAV ── */
@media (max-width: 991px) {
    .header-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: var(--dark);
        border-top: 1px solid rgba(255,255,255,.06);
        padding: 16px;
        z-index: 999;
    }
    .header-nav.open { display: block; }
    .header-nav ul { flex-direction: column; gap: 4px; }
    .header-nav a { padding: 12px 16px; border-radius: 10px; }
    .nav-toggle { display: flex; }
    .header-cta span { display: none; }
    .header-cta { padding: 10px 14px; border-radius: 50%; }
    .site-header { position: relative; }
    .hero-section { padding: 100px 0 70px; }
    .hero-cards { grid-template-columns: repeat(2, 1fr); }
    .process-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .process-connector { display: none; }
    .process-step { text-align: left; display: flex; gap: 20px; align-items: flex-start; padding: 10px; }
    .process-num { font-size: 2rem; min-width: 50px; padding-top: 8px; }
    .process-icon { margin: 0; flex-shrink: 0; }
    .py-section, .light-section, .dark-section, .hero-section,
    .stats-section, .process-section, .testimonials-section,
    .faq-section, .cta-section, .contact-section, .about-section,
    .services-section, .site-footer { padding: 70px 0; }
    .about-img-wrap { height: 350px; }
}

@media (max-width: 767px) {
    .hero-title { font-size: 2.2rem; }
    .hero-actions { flex-direction: column; }
    .btn-gold, .btn-outline-light { justify-content: center; text-align: center; }
    .hero-cards { grid-template-columns: repeat(2, 1fr); }
    .stats-section { padding: 55px 0; }
    .cta-actions { flex-direction: column; align-items: center; }
    .process-step { flex-direction: column; text-align: center; align-items: center; }
    .fab-wa, .fab-call { display: none; }
    .mobile-bottom-bar { display: flex; }
    body { padding-bottom: 58px; }
}
