/* =====================================================================
   OVİT ASANSÖR — Site Teması
   Tüm marka değerleri :root CSS değişkenlerinden gelir; değişkenler
   layout'ta Settings tablosundan basılır (panel → Görünüm modülü).
   ===================================================================== */

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; max-width: 100%; }

body {
    font-family: var(--font-body, 'Inter'), system-ui, -apple-system, "Segoe UI", sans-serif;
    color: #1f2937;
    line-height: 1.75;
    font-size: 15.5px;
    background: #fff;
    /* Kısa sayfalarda footer altında beyaz boşluk kalmasın: gövde esner,
       footer her zaman en altta durur. */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
main { flex: 1; }

h1, h2, h3, h4, h5 { font-family: var(--font-heading, 'Inter'), system-ui, sans-serif; color: var(--color-primary); line-height: 1.3; }
img { max-width: 100%; height: auto; }
a { color: var(--color-primary); text-decoration: none; }
a:hover { color: var(--color-primary-2); }

.container { width: min(90%, 1240px); margin: 0 auto; }

/* ---- Butonlar -------------------------------------------------------- */
.btn {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .8rem 1.8rem; border: 0; cursor: pointer;
    border-radius: var(--radius-btn, 999px);
    font-weight: 700; font-size: .9rem; font-family: inherit;
    transition: transform .15s ease, box-shadow .15s ease;
}
.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-2));
    color: #fff;
    box-shadow: 0 12px 24px rgba(15, 23, 42, .14);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(15, 23, 42, .2); color: #fff; }
.btn-outline {
    background: transparent; color: #fff;
    border: 2px solid rgba(255, 255, 255, .6);
}
.btn-outline:hover { border-color: #fff; color: #fff; }
.btn-light { background: #fff; color: var(--color-primary); }
.btn-light:hover { color: var(--color-primary-2); }

/* ---- Üst bar ---------------------------------------------------------- */
.topbar { background: var(--color-primary); color: #dbe4ee; font-size: .8rem; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; padding: .45rem 0; gap: 1rem; flex-wrap: wrap; }
.topbar a { color: #dbe4ee; }
.topbar a:hover { color: #fff; }
.topbar .tb-left, .topbar .tb-right { display: flex; gap: 1.2rem; align-items: center; flex-wrap: wrap; }

/* ---- Header / Navigasyon ---------------------------------------------- */
.site-header {
    background: #fff;
    box-shadow: 0 2px 12px rgba(15, 23, 42, .06);
    position: sticky; top: 0; z-index: 50;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 72px; gap: 1.5rem; }
.brand { display: flex; align-items: center; gap: .7rem; font-weight: 800; font-size: 1.25rem; color: var(--color-primary); }
.brand img { height: 46px; object-fit: contain; }

.main-nav { display: flex; align-items: center; gap: .2rem; }
.main-nav > a, .main-nav > .nav-item > a {
    display: block; padding: .8rem .85rem;
    color: #1f2937; font-weight: 600; font-size: .9rem;
    border-bottom: 3px solid transparent;
}
.main-nav > a:hover, .main-nav > a.active,
.main-nav .nav-item > a:hover, .main-nav .nav-item > a.active {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
}
.nav-item { position: relative; }
.nav-item .dropdown {
    position: absolute; top: 100%; left: 0; min-width: 240px;
    background: #fff; border: 1px solid #e4e9f0; border-top: 3px solid var(--color-primary);
    border-radius: 0 0 8px 8px; box-shadow: 0 18px 40px rgba(15, 23, 42, .12);
    display: none; padding: .5rem 0; z-index: 60;
}
.nav-item:hover .dropdown, .nav-item:focus-within .dropdown { display: block; }
.dropdown a { display: block; padding: .5rem 1.1rem; font-size: .87rem; color: #1f2937; }
.dropdown a:hover { background: #f4f7fb; color: var(--color-primary); }

.nav-cta { margin-left: .6rem; }
.hamburger {
    display: none; background: none; border: 0; font-size: 1.7rem;
    color: var(--color-primary); cursor: pointer; padding: .3rem;
}

/* ---- Hero slider + sayaç şeridi ----------------------------------------- */
.hero-wrap { display: flex; background: var(--color-primary); }
.hero { position: relative; flex: 1 1 85%; min-height: 520px; overflow: hidden; }
.hero-slide {
    position: absolute; inset: 0;
    display: flex; align-items: center;
    background-size: cover; background-position: center;
    opacity: 0; transition: opacity .8s ease; z-index: 1;
}
.hero-slide.active { opacity: 1; z-index: 2; }
.hero-slide::before {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(10, 20, 35, .78) 0%, rgba(10, 20, 35, .45) 60%, rgba(10, 20, 35, .25) 100%);
}
.hero-slide .container { position: relative; z-index: 2; }
.hero-content { max-width: 620px; color: #fff; }
.hero-badge {
    display: inline-flex; align-items: center; gap: .45rem;
    background: rgba(255, 255, 255, .12); border: 1px solid rgba(255, 255, 255, .28);
    backdrop-filter: blur(4px); border-radius: 999px;
    padding: .35rem 1rem; font-size: .76rem; font-weight: 700;
    letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1.2rem;
}
.hero-content h2 { color: #fff; font-size: clamp(1.8rem, 4.2vw, 3.2rem); font-weight: 800; margin-bottom: 1rem; letter-spacing: -1px; line-height: 1.15; }
.hero-content p { font-size: 1.07rem; color: rgba(255, 255, 255, .88); margin-bottom: 1.8rem; max-width: 520px; }
.hero-actions { display: flex; gap: .9rem; flex-wrap: wrap; }
.hero-nav {
    position: absolute; bottom: 1.4rem; left: 0; right: 0; z-index: 3;
    display: flex; gap: .5rem; justify-content: center;
}
.hero-dot {
    width: 30px; height: 4px; border-radius: 2px; border: 0; cursor: pointer;
    background: rgba(255, 255, 255, .35); transition: background .2s;
}
.hero-dot.active { background: #fff; }

.counter-strip {
    flex: 0 0 15%; min-width: 190px;
    background: linear-gradient(180deg, var(--color-primary), var(--color-primary-2));
    display: flex; flex-direction: column; justify-content: center;
    padding: 2rem 1.4rem; gap: 1.6rem; color: #fff;
}
.counter-item { text-align: left; border-left: 3px solid rgba(255, 255, 255, .25); padding-left: 1rem; }
.counter-item .ci-icon { font-size: 1.3rem; opacity: .75; }
.counter-item .ci-value { font-size: 2rem; font-weight: 800; line-height: 1.2; }
.counter-item .ci-label { font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; opacity: .8; }

/* ---- Bölüm başlıkları --------------------------------------------------- */
.section { padding: 5rem 0; }
.section-alt { background: #f6f8fb; }
.kicker {
    display: block; font-size: .72rem; font-weight: 800;
    letter-spacing: .22em; text-transform: uppercase;
    color: var(--color-accent); margin-bottom: .55rem;
}
.section-head { text-align: center; max-width: 660px; margin: 0 auto 3rem; }
.section-head h2 { font-size: clamp(1.6rem, 3vw, 2.15rem); font-weight: 800; letter-spacing: -.4px; }
.section-head h2 .accent { color: var(--color-accent); }
.section-head .divider {
    width: 64px; height: 3px; margin: .9rem auto;
    background: linear-gradient(90deg, var(--color-primary), var(--color-primary-2));
    border-radius: 2px;
}
.section-head p { color: #64748b; font-size: .95rem; }

/* ---- Kurumsal tanıtım bölümü (ana sayfa) --------------------------------- */
.about-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 3.5rem; align-items: center; }
.about-img { position: relative; }
.about-img img { border-radius: var(--radius-card, 10px); box-shadow: 0 24px 60px rgba(15, 28, 45, .18); width: 100%; }
.about-img::before {
    content: ""; position: absolute; inset: 1.4rem -1.4rem -1.4rem 1.4rem;
    border: 2px solid var(--color-primary); opacity: .15;
    border-radius: var(--radius-card, 10px); z-index: -1;
}
.about-year {
    position: absolute; bottom: -1.2rem; right: -0.6rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-2));
    color: #fff; border-radius: var(--radius-card, 10px);
    padding: .9rem 1.4rem; text-align: center;
    box-shadow: 0 14px 34px rgba(15, 28, 45, .3);
}
.about-year strong { display: block; font-size: 1.6rem; font-weight: 800; line-height: 1.1; }
.about-year span { font-size: .68rem; text-transform: uppercase; letter-spacing: .1em; opacity: .85; }
.about-content h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 800; letter-spacing: -.4px; margin-bottom: 1rem; }
.about-content > p { color: #5b6672; margin-bottom: 1.4rem; }
.check-list { list-style: none; margin: 0 0 1.8rem; display: grid; grid-template-columns: 1fr 1fr; gap: .65rem 1.4rem; }
.check-list li { display: flex; gap: .6rem; align-items: flex-start; font-size: .92rem; font-weight: 600; color: var(--color-primary); }
.check-list li::before {
    content: "✓"; flex-shrink: 0;
    width: 22px; height: 22px; border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-2));
    color: #fff; font-size: .72rem; display: flex; align-items: center; justify-content: center;
    margin-top: .15rem;
}

/* Ürün kartı kategori çipi */
.cat-chip {
    display: inline-block; font-size: .68rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .08em;
    color: var(--color-primary-2); background: #eef4fb;
    border-radius: 999px; padding: .2rem .7rem; margin-bottom: .55rem;
    align-self: flex-start;
}

/* ---- CTA bandı --------------------------------------------------------- */
.cta-band {
    background: linear-gradient(120deg, var(--color-band) 0%, var(--color-primary) 100%);
    color: #fff; padding: 2rem 0;
}
.cta-band .container { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.cta-band h3 { color: #fff; font-size: 1.15rem; font-weight: 700; }
.cta-band p { color: rgba(255, 255, 255, .75); font-size: .88rem; }

/* ---- Kartlar ----------------------------------------------------------- */
.grid { display: grid; gap: 1.6rem; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
    background: #fff; border: 1px solid #e8edf3;
    border-radius: var(--radius-card, 10px); overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
    display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 18px 48px rgba(30, 58, 95, .14); }
.card-img { height: 200px; overflow: hidden; background: linear-gradient(135deg, #e8eff6, #f4f7fb); display: flex; align-items: center; justify-content: center; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.card:hover .card-img img { transform: scale(1.05); }
.card-img .placeholder { font-size: 2.6rem; color: var(--color-primary); opacity: .35; }
.card-body { padding: 1.3rem 1.4rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.card-body h3 {
    font-size: .95rem; font-weight: 700; text-transform: uppercase; letter-spacing: .4px;
    border-left: 3px solid var(--color-primary); padding-left: .7rem; margin-bottom: .7rem;
}
.card-body h3 a { color: inherit; }
.card-body p {
    font-size: .88rem; color: #5b6672; flex: 1;
    display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden;
}
.card-more {
    margin-top: 1rem; font-size: .85rem; font-weight: 700;
    display: inline-flex; align-items: center; gap: .4rem; color: var(--color-primary);
}
.card:hover .card-more { gap: .7rem; }
.card-more { transition: gap .2s ease; }

/* Ürün kategori pill filtreleri */
.pill-filters { display: flex; gap: .6rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.4rem; }
.pill {
    padding: .5rem 1.3rem; border-radius: 999px; font-size: .85rem; font-weight: 600;
    background: #fff; color: var(--color-primary);
    border: 1px solid #dbe4ee; box-shadow: 0 2px 8px rgba(15, 23, 42, .05);
}
.pill:hover { border-color: var(--color-primary); }
.pill.active { background: linear-gradient(135deg, var(--color-primary), var(--color-primary-2)); color: #fff; border-color: transparent; }

/* ---- Yorumlar ----------------------------------------------------------- */
.testimonial {
    background: #fff; border: 1px solid #e8edf3; border-radius: var(--radius-card, 10px);
    padding: 1.8rem; position: relative;
}
.testimonial .quote { font-size: 2rem; color: var(--color-primary); opacity: .25; line-height: 1; }
.testimonial .stars { color: #f5c34b; font-size: .95rem; margin: .4rem 0 .7rem; }
.testimonial p { font-size: .9rem; color: #4b5563; }
.testimonial .t-name { margin-top: 1rem; font-weight: 700; font-size: .9rem; color: var(--color-primary); }
.testimonial .t-title { font-size: .78rem; color: #8b96a3; }

/* ---- SSS (native details) ------------------------------------------------ */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
    background: #fff; border: 1px solid #e8edf3; border-radius: var(--radius-card, 10px);
    margin-bottom: .8rem; overflow: hidden;
}
.faq-item summary {
    padding: 1.05rem 1.3rem; cursor: pointer; font-weight: 600; font-size: .93rem;
    color: var(--color-primary); list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.3rem; color: var(--color-primary); transition: transform .2s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 1.3rem 1.2rem; font-size: .89rem; color: #5b6672; }

/* ---- İçerik sayfaları ---------------------------------------------------- */
.page-hero {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-2));
    color: #fff; padding: 3.2rem 0 2.6rem;
}
.page-hero h1 { color: #fff; font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 800; }
.breadcrumb { font-size: .8rem; color: rgba(255, 255, 255, .75); margin-bottom: .5rem; }
.breadcrumb a { color: rgba(255, 255, 255, .9); }

.prose { max-width: 820px; }
.prose p { margin-bottom: 1.1rem; }
.prose h2, .prose h3, .prose h4 { margin: 1.8rem 0 .8rem; }
.prose ul, .prose ol { margin: 0 0 1.2rem 1.4rem; }
.prose li { margin-bottom: .35rem; }
.prose img { border-radius: var(--radius-card, 10px); }

/* Detay yerleşimi: içerik + kenar kutusu */
.detail-layout { display: grid; grid-template-columns: 1fr 340px; gap: 2.5rem; align-items: start; }
.side-box {
    background: linear-gradient(180deg, #f8fbff, #eef4fb);
    border: 1px solid #d9e8f5; border-radius: var(--radius-card, 10px);
    padding: 1.5rem; position: sticky; top: 96px;
}
.side-box h3 { font-size: 1rem; margin-bottom: 1rem; }
.spec-table { width: 100%; border-collapse: collapse; font-size: .86rem; }
.spec-table td { padding: .5rem 0; border-bottom: 1px solid #e2ebf4; vertical-align: top; }
.spec-table td:first-child { font-weight: 600; color: var(--color-primary); width: 45%; padding-right: .8rem; }
.warranty-badge {
    display: inline-flex; align-items: center; gap: .5rem;
    background: #fff; border: 1px solid #d9e8f5; border-radius: 999px;
    padding: .45rem 1rem; font-size: .85rem; font-weight: 700; color: var(--color-primary);
    margin-bottom: 1rem;
}

/* ---- Formlar ------------------------------------------------------------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-field { display: flex; flex-direction: column; gap: .35rem; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: .84rem; font-weight: 600; color: var(--color-primary); }
.form-field input, .form-field textarea, .form-field select {
    padding: .7rem .9rem; border: 1px solid #cdd8e4; border-radius: 8px;
    font-family: inherit; font-size: .92rem; background: #fff;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
    outline: none; border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(30, 58, 95, .08);
}
.form-error { color: #c0392b; font-size: .78rem; }
.form-note { font-size: .78rem; color: #7c8794; }
.consent-row { display: flex; gap: .6rem; align-items: flex-start; font-size: .8rem; color: #5b6672; }
.consent-row input { margin-top: .25rem; }
.alert { padding: .9rem 1.2rem; border-radius: 8px; font-size: .9rem; margin-bottom: 1.4rem; }
.alert-success { background: #e7f6ec; color: #1d6f42; border: 1px solid #bfe5cc; }
.alert-error { background: #fdeceb; color: #b3352c; border: 1px solid #f3c3bf; }

/* Bal küpü (honeypot) alanı — insanlar görmez, botlar doldurur */
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ---- İletişim kutuları ---------------------------------------------------- */
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-bottom: 2.5rem; }
.contact-card {
    background: #fff; border: 1px solid #e8edf3; border-radius: var(--radius-card, 10px);
    padding: 1.6rem; text-align: center;
}
.contact-card .cc-icon {
    width: 52px; height: 52px; margin: 0 auto .9rem; border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-2));
    color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
}
.contact-card h3 { font-size: .95rem; margin-bottom: .4rem; }
.contact-card p, .contact-card a { font-size: .88rem; color: #5b6672; }

/* ---- Footer --------------------------------------------------------------- */
.site-footer { background: var(--color-footer, #0c0c0c); color: #8d8d8d; }
.footer-main { display: grid; grid-template-columns: 1.4fr 1fr .8fr .8fr; gap: 2.5rem; padding: 3.2rem 0 2.6rem; }
.footer-main h4 { color: #cecccc; font-size: .92rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1.1rem; }
.footer-main p, .footer-main a, .footer-main li { font-size: .86rem; color: #8d8d8d; }
.footer-main a:hover { color: #fff; }
.footer-main ul { list-style: none; }
.footer-main li { margin-bottom: .5rem; }
.footer-brand { font-weight: 800; font-size: 1.2rem; color: #fff; margin-bottom: .8rem; display: block; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .08); padding: 1.1rem 0; font-size: .78rem; }
.footer-bottom .container { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.footer-bottom a { color: #8d8d8d; }
.footer-bottom a:hover { color: #fff; }

/* ---- Tıkla-oynat video ------------------------------------------------------- */
.video-embed { aspect-ratio: 16 / 9; border-radius: var(--radius-card, 10px); overflow: hidden; }
.video-embed iframe { width: 100%; height: 100%; border: 0; display: block; }
.video-poster {
    width: 100%; height: 100%; cursor: pointer;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-2));
    color: #fff; display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: .6rem; text-align: center; padding: 1.5rem;
}
.video-poster:hover .video-play { transform: scale(1.08); }
.video-play {
    width: 72px; height: 72px; border-radius: 50%;
    background: rgba(255, 255, 255, .16); border: 2px solid rgba(255, 255, 255, .5);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; padding-left: .4rem; transition: transform .2s ease;
}
.video-label { font-weight: 700; font-size: 1.05rem; }
.video-note { font-size: .75rem; opacity: .7; max-width: 380px; }

/* ---- Kabin galerisi ------------------------------------------------------------ */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.gallery-grid a {
    display: block; border-radius: var(--radius-card, 10px); overflow: hidden;
    aspect-ratio: 4 / 3; box-shadow: 0 4px 16px rgba(15, 28, 45, .08);
}
.gallery-grid img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .35s ease;
}
.gallery-grid a:hover img { transform: scale(1.06); }
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---- Dil seçici (açılır menü) ------------------------------------------------ */
.lang-dd { position: relative; }
.lang-dd-btn {
    display: inline-flex; align-items: center; gap: .35rem;
    background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 6px; color: #dbe4ee; font-size: .76rem; font-weight: 700;
    padding: .22rem .6rem; cursor: pointer; font-family: inherit;
}
.lang-dd-btn:hover { background: rgba(255, 255, 255, .16); color: #fff; }
.lang-caret { font-size: .6rem; opacity: .8; }
.lang-dd-menu {
    display: none; position: absolute; top: calc(100% + 6px); right: 0;
    min-width: 170px; background: #fff; border: 1px solid #e4e9f0;
    border-top: 3px solid var(--color-primary);
    border-radius: 0 0 8px 8px; box-shadow: 0 18px 40px rgba(15, 23, 42, .16);
    padding: .35rem 0; z-index: 80;
}
.lang-dd.open .lang-dd-menu, .lang-dd:focus-within .lang-dd-menu { display: block; }
.lang-dd-menu a {
    display: flex; justify-content: space-between; align-items: center; gap: 1rem;
    padding: .45rem .9rem; font-size: .84rem; color: #1f2937; white-space: nowrap;
}
.lang-dd-menu a:hover { background: #f4f7fb; color: var(--color-primary); }
.lang-dd-menu a.active { color: var(--color-primary); font-weight: 700; background: #eef4fb; }
.lang-code { font-size: .68rem; color: #8b96a3; font-weight: 700; }

/* Google Translate widget kalıntıları gizlenir (üst bant, rozet, açılır kutu).
   DİKKAT: konteyner display:none YAPILMAZ — bazı tarayıcılarda widget hiç
   kurulmuyor; ekran dışına taşınarak gizlenir. */
#google_translate_element {
    position: absolute; left: -9999px; top: 0;
    height: 1px; width: 1px; overflow: hidden;
}
.skiptranslate iframe.skiptranslate, iframe.goog-te-banner-frame { display: none !important; }
body { top: 0 !important; }
.goog-te-gadget, .goog-logo-link, #goog-gt-tt, .goog-te-balloon-frame { display: none !important; }
font[style] { background: transparent !important; box-shadow: none !important; }

/* ---- Animasyonlar ----------------------------------------------------------- */
@media (prefers-reduced-motion: no-preference) {
    .reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
    .reveal.visible { opacity: 1; transform: none; }
}

/* ---- Responsive -------------------------------------------------------------- */
@media (max-width: 1100px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .counter-strip { min-width: 160px; }
}

@media (max-width: 900px) {
    .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .about-img::before { display: none; }
    .check-list { grid-template-columns: 1fr; }
    .hero-wrap { flex-direction: column; }
    .hero { min-height: 440px; }
    .counter-strip {
        flex-direction: row; flex-wrap: wrap; justify-content: space-around;
        padding: 1.4rem; gap: 1rem;
    }
    .counter-item { border-left: 0; padding-left: 0; text-align: center; }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .detail-layout { grid-template-columns: 1fr; }
    .side-box { position: static; }
    .contact-cards { grid-template-columns: 1fr; }
    .footer-main { grid-template-columns: 1fr 1fr; }

    .hamburger { display: block; }
    .main-nav {
        display: none; position: absolute; top: 100%; left: 0; right: 0;
        background: #fff; flex-direction: column; align-items: stretch;
        box-shadow: 0 20px 40px rgba(15, 23, 42, .15); padding: .6rem 0;
    }
    .main-nav.open { display: flex; }
    .main-nav > a, .main-nav .nav-item > a { border-bottom: 1px solid #eef2f7; padding: .9rem 1.4rem; }
    .nav-item .dropdown { position: static; display: block; border: 0; box-shadow: none; padding: 0 0 .4rem 1rem; }
    .nav-cta { margin: .8rem 1.4rem 0; }
}

@media (max-width: 560px) {
    .grid-3, .grid-4, .form-grid { grid-template-columns: 1fr; }
    .footer-main { grid-template-columns: 1fr; gap: 1.8rem; }
    .section { padding: 3rem 0; }
    .cta-band .container { flex-direction: column; text-align: center; }
}

/* Kampanya popup'ı */
.camp-overlay {
    position: fixed; inset: 0; z-index: 100;
    background: rgba(10, 20, 35, .6);
    display: none; align-items: center; justify-content: center; padding: 1.2rem;
}
.camp-overlay.show { display: flex; }
.camp-box {
    background: #fff; border-radius: var(--radius-card, 10px);
    max-width: 480px; width: 100%; overflow: hidden; position: relative;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .35);
}
.camp-box img { width: 100%; max-height: 240px; object-fit: cover; display: block; }
.camp-body { padding: 1.6rem; text-align: center; }
.camp-body h3 { font-size: 1.25rem; font-weight: 800; margin-bottom: .6rem; }
.camp-body p { font-size: .92rem; color: #5b6672; margin-bottom: 1.2rem; }
.camp-close {
    position: absolute; top: .6rem; right: .6rem;
    width: 34px; height: 34px; border-radius: 50%; border: 0; cursor: pointer;
    background: rgba(10, 20, 35, .55); color: #fff; font-size: 1rem; line-height: 1;
}
.camp-close:hover { background: rgba(10, 20, 35, .8); }

/* Sabit WhatsApp butonu */
.wa-float {
    position: fixed; bottom: 1.4rem; right: 1.4rem; z-index: 90;
    width: 56px; height: 56px; border-radius: 50%;
    background: #25d366; color: #fff;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 10px 28px rgba(37, 211, 102, .45);
    transition: transform .2s ease;
}
.wa-float:hover { transform: scale(1.08); color: #fff; }

:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 2px; }

@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; }
    .reveal { opacity: 1; transform: none; }
}
