﻿/* =========================================
   BirİlkDijital2 – Ana Stil Dosyası
   ========================================= */

/* ---- Temel Reset & Değişkenler ---- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --navy: #050d1a;
    --navy-mid: #0a1628;
    --navy-light: #0d1f3c;
    --blue-dark: #0f2a5e;
    --blue: #1a3e8f;
    --blue-mid: #2255c4;
    --accent: #6c63ff;
    --accent-glow: #8b83ff;
    --purple: #7c3aed;
    --white: #ffffff;
    --gray-100: #f0f4ff;
    --gray-300: #b0bcd6;
    --gray-500: #6b7ea8;
    --glass-bg: rgba(255, 255, 255, 0.06);
    --glass-border: rgba(255, 255, 255, 0.12);
    --radius: 16px;
    --radius-sm: 10px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-card: 0 8px 40px rgba(0, 0, 20, 0.5);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    background: var(--navy);
    color: var(--white);
    line-height: 1.65;
    overflow-x: hidden;
}

.placeholder-text .highlight-word {
    font-weight: 700;
    color: #00c6ff;
    animation: glow 1.5s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 5px #00c6ff;
    }

    to {
        text-shadow: 0 0 15px #00c6ff;
    }
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
}

/* =====================
   SCROLLBAR
   ===================== */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--navy);
}

::-webkit-scrollbar-thumb {
    background: var(--blue-mid);
    border-radius: 3px;
}

/* =====================
   SHARED UTILITIES
   ===================== */
.gradient-text {
    background: linear-gradient(135deg, #6c63ff 0%, #a78bfa 50%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-light {
    background: linear-gradient(135deg, #a78bfa 0%, #c4b5fd 50%, #93c5fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(108, 99, 255, 0.18);
    border: 1px solid rgba(108, 99, 255, 0.4);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #a78bfa;
    margin-bottom: 18px;
}

.section-title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--white);
}

.section-desc {
    font-size: 17px;
    color: var(--gray-300);
    max-width: 600px;
    margin: 0 auto;
}

/* =====================
   BUTTONS
   ===================== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, #6c63ff, #7c3aed);
    color: var(--white);
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 24px rgba(108, 99, 255, 0.4);
    border: 1px solid rgba(108, 99, 255, 0.6);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 36px rgba(108, 99, 255, 0.6);
    background: linear-gradient(135deg, #7c73ff, #8b4aed);
}

.btn-primary:hover .btn-arrow,
.btn-primary:hover .btn-arrow-animated {
    transform: translateX(5px);
}

.btn-arrow,
.btn-arrow-animated {
    transition: transform 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: transparent;
    color: var(--white);
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: var(--transition);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* =====================
   NAVBAR
   ===================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(5, 13, 26, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 0;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-logo {
    font-size: 22px;
    font-weight: 800;
    flex-shrink: 0;
}

.logo-bir {
    color: var(--white);
}

.logo-ilk {
    color: var(--accent);
}

.logo-dijital {
    color: var(--gray-300);
    font-weight: 400;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 1;
}

.nav-link {
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-300);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.btn-nav {
    flex-shrink: 0;
    padding: 9px 22px;
    background: linear-gradient(135deg, #6c63ff, #7c3aed);
    color: var(--white);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 2px 16px rgba(108, 99, 255, 0.35);
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 24px rgba(108, 99, 255, 0.5);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
    margin-left: auto;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* =====================
   HERO SECTION
   ===================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.05);
    transition: transform 8s ease;
}

.hero-bg-image.zoomed {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(5, 13, 26, 0.88) 0%, rgba(10, 22, 40, 0.75) 50%, rgba(5, 13, 26, 0.60) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 120px 24px 80px;
    max-width: 720px;
    padding-left: 60px;
}

.hero-badge {
    display: inline-block;
    padding: 7px 18px;
    background: rgba(108, 99, 255, 0.18);
    border: 1px solid rgba(108, 99, 255, 0.4);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: #a78bfa;
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(34px, 5.5vw, 64px);
    font-weight: 900;
    line-height: 1.12;
    margin-bottom: 22px;
    letter-spacing: -1px;
}

.hero-desc {
    font-size: 18px;
    color: var(--gray-300);
    margin-bottom: 36px;
    max-width: 520px;
    line-height: 1.7;
}

.solutions-label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--gray-500);
    text-transform: uppercase;
    margin-bottom: 14px;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 10px;
    margin-bottom: 36px;
}

.solution-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-100);
    transition: var(--transition);
    backdrop-filter: blur(8px);
}

.solution-item:hover {
    background: rgba(108, 99, 255, 0.15);
    border-color: rgba(108, 99, 255, 0.4);
    transform: translateY(-2px);
}

.sol-icon {
    font-size: 17px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-scroll-hint {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
        opacity: 0.5;
    }

    50% {
        transform: translateY(-10px);
        opacity: 1;
    }
}

/* =====================
   ESNAF CARD SLIDER
   ===================== */
.esnaf-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 100%);
}

.esnaf-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobilslider-arrow {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
}

.mobilslider-arrow:hover {
    background: linear-gradient(135deg, #6c63ff, #7c3aed);
    border-color: transparent;
    transform: scale(1.1);
}

.esnaf-slider-track-outer {
    flex: 1;
    overflow: hidden;
}

.esnaf-slider-track {
    display: flex;
    gap: 24px;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    padding: 20px 4px;
}

/* Card */
.esnaf-card {
    flex: 0 0 calc((100% - 48px) / 3);
    background: linear-gradient(160deg, rgba(13, 31, 60, 0.9), rgba(5, 13, 26, 0.95));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    cursor: pointer;
    box-shadow: var(--shadow-card);
}

.esnaf-card:hover {
    transform: translateY(-10px) scale(1.025);
    box-shadow: 0 20px 60px rgba(108, 99, 255, 0.25);
    border-color: rgba(108, 99, 255, 0.35);
}

.esnaf-card-img-wrap {
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, #0a1628, #0d1f3c);
}

.esnaf-card-img-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.08), rgba(124, 58, 237, 0.08));
    border-bottom: 1px dashed rgba(108, 99, 255, 0.3);
}

.placeholder-icon {
    font-size: 48px;
}

.placeholder-text {
    font-size: 12px;
    color: var(--gray-500);
    font-weight: 500;
}

.esnaf-card-body {
    padding: 24px;
}

.esnaf-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(108, 99, 255, 0.15);
    border: 1px solid rgba(108, 99, 255, 0.3);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    color: #a78bfa;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.esnaf-card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white);
}

.esnaf-card-desc {
    font-size: 14px;
    color: var(--gray-300);
    line-height: 1.6;
    margin-bottom: 20px;
}

.esnaf-detail-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #00eaff;
    padding: 8px 0;
    border-bottom: 1px solid transparent;
    transition: 0.3s ease;
    /* Neon animasyon */
    animation: neonGlow 1.8s ease-in-out infinite alternate;
}

/* Neon Glow */
@keyframes neonGlow {
    from {
        text-shadow: 0 0 5px #00eaff, 0 0 10px #00eaff, 0 0 20px rgba(0, 234, 255, 0.7);
    }

    to {
        text-shadow: 0 0 10px #00eaff, 0 0 20px #00eaff, 0 0 35px rgba(0, 234, 255, 0.9);
    }
}

/* Ok da neon gibi görünsün */
.esnaf-detail-btn svg {
    filter: drop-shadow(0 0 6px #00eaff) drop-shadow(0 0 12px rgba(0, 234, 255, 0.7));
    transition: 0.3s ease;
}

/* Hover'da beyaz + neon kapanır */
.esnaf-detail-btn:hover {
    color: #ffffff;
    border-bottom-color: #00eaff;
    animation: none;
}

.esnaf-detail-btn:hover svg {
    filter: none;
}

/* Ok sağa kayma animasyonu */
.arrow-animate {
    display: inline-flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.esnaf-detail-btn:hover .arrow-animate {
    transform: translateX(5px);
}

/*.esnaf-detail-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;

    color: #00c6ff;
    padding: 8px 0;
    border-bottom: 1px solid transparent;
    transition: var(--transition);*/
/* Yeni eklenen glow efekti */
/*animation: detailGlow 1.5s ease-in-out infinite alternate;
}

@keyframes detailGlow {
    from {
        text-shadow: 0 0 5px #00c6ff;
    }

    to {
        text-shadow: 0 0 15px #00c6ff;
    }
}*/

/* Hover durumunda beyaz olsun */
/*.esnaf-detail-btn:hover {
    color: var(--white);
    border-bottom-color: var(--accent);
    animation: none;*/
/* hover'da glow dursun */
/*}*/

/* Ok animasyonu korunuyor */
/*.arrow-animate {
    display: inline-flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.esnaf-detail-btn:hover .arrow-animate {
    transform: translateX(5px);
}*/

/*.esnaf-detail-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-glow);
    padding: 8px 0;
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

    .esnaf-detail-btn:hover {
        color: var(--white);
        border-bottom-color: var(--accent);
    }

.arrow-animate {
    display: inline-flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.esnaf-detail-btn:hover .arrow-animate {
    transform: translateX(5px);
}*/

/* Slider Dots */
.mobilslider-dots,
.av-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 36px;
}

.dot,
.av-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    transition: var(--transition);
}

.dot.active,
.av-dot.active {
    background: var(--accent);
    width: 28px;
    border-radius: 4px;
}

/* =====================
   CTA SECTION (Bizimle Çalışın)
   ===================== */
.cta-section {
    position: relative;
    padding: 120px 24px;
    text-align: center;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 13, 26, 0.85) 0%, rgba(5, 13, 26, 0.78) 50%, rgba(5, 13, 26, 0.88) 100%);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(32px, 5vw, 54px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--white);
}

.cta-desc {
    font-size: 17px;
    color: var(--gray-300);
    margin-bottom: 40px;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* =====================
   AVANTAJLAR SLIDER
   ===================== */
.avantajlar-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--navy-mid) 0%, var(--navy) 100%);
}

.avantajlar-slider-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
}

.av-arrow {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
}

.av-arrow:hover {
    background: linear-gradient(135deg, #6c63ff, #7c3aed);
    border-color: transparent;
    transform: scale(1.1);
}

.avantajlar-track-outer {
    flex: 1;
    overflow: hidden;
    border-radius: var(--radius);
}

.avantajlar-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

/* AV Slide */
.av-slide {
    flex: 0 0 100%;
    position: relative;
    min-height: 480px;
    border-radius: var(--radius);
    overflow: hidden;
}

.av-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.av-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(5, 13, 26, 0.92) 0%, rgba(10, 22, 40, 0.88) 100%);
}

/* 2x2 Grid */
.av-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 2px;
    height: 100%;
    min-height: 480px;
}

/* AV Block */
.av-block {
    padding: 36px 32px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    transition: transform 0.35s ease, background 0.35s ease;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.av-block:hover {
    transform: scale(1.02);
    background: rgba(108, 99, 255, 0.12);
    border-color: rgba(108, 99, 255, 0.3);
    z-index: 3;
}

.av-block-icon {
    font-size: 32px;
    margin-bottom: 4px;
}

.av-block-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
}

.av-block-desc {
    font-size: 13.5px;
    color: var(--gray-300);
    line-height: 1.6;
    flex: 1;
}


.av-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #00eaff;
    padding: 8px 0;
    border-bottom: 1px solid transparent;
    transition: 0.3s ease;
    /* Neon animasyon */
    animation: neonGlow 1.8s ease-in-out infinite alternate;
}

/* Neon Glow */
@keyframes neonGlow {
    from {
        text-shadow: 0 0 5px #00eaff, 0 0 10px #00eaff, 0 0 20px rgba(0, 234, 255, 0.7);
    }

    to {
        text-shadow: 0 0 10px #00eaff, 0 0 20px #00eaff, 0 0 35px rgba(0, 234, 255, 0.9);
    }
}

/* Ok da neon gibi görünsün */
.av-btn svg {
    filter: drop-shadow(0 0 6px #00eaff) drop-shadow(0 0 12px rgba(0, 234, 255, 0.7));
    transition: 0.3s ease;
}

/* Hover'da beyaz + neon kapanır */
.av-btn:hover {
    color: #ffffff;
    border-bottom-color: #00eaff;
    animation: none;
}

.av-btn:hover svg {
    filter: none;
}

/* Ok sağa kayma animasyonu */
.arrow-animate {
    display: inline-flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.av-btn:hover .arrow-animate {
    transform: translateX(5px);
}



/* =====================
   FOOTER
   ===================== */
.footer {
    background: #020811;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 64px 24px 0;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer-brand .nav-logo {
    font-size: 24px;
    font-weight: 800;
    display: inline-block;
    margin-bottom: 12px;
}

.footer-brand p {
    color: var(--gray-500);
    font-size: 14px;
    line-height: 1.7;
    max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 14px;
    color: var(--gray-500);
    transition: color 0.25s;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-contact p {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 8px;
}

.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
    font-size: 13px;
    color: var(--gray-500);
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 1024px) {
    .esnaf-card {
        flex: 0 0 calc((100% - 24px) / 2);
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {

    .nav-links,
    .btn-nav {
        display: none;
    }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(5, 13, 26, 0.98);
        backdrop-filter: blur(20px);
        padding: 20px;
        border-bottom: 1px solid var(--glass-border);
        gap: 4px;
    }

    .hamburger {
        display: flex;
    }

    .hero-content {
        padding: 100px 24px 60px;
    }

    .solutions-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .esnaf-slider-wrapper {
        position: relative;
        padding: 0;
    }

    .mobilslider-arrow {
        display: none !important;
    }

    .esnaf-card {
        flex: 0 0 100%;
        border-radius: 0;
        /* optional: flat edges on mobile if it spans fully, or keep radius if there's slightly padding */
    }

    .esnaf-slider-track {
        padding: 20px 0;
    }

    /* Reduce vertical padding and margin of header so it doesn't crash into slider */
    .section-header {
        margin-bottom: 25px;
        padding: 0 15px;
        /* Give text breathing room */
    }

    .esnaf-section {
        padding: 60px 0;
    }

    /* =========================================
       AVANTAJLAR SLIDER MOBILE FIXES
       ========================================= */
    .avantajlar-section {
        display: none !important;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .cta-bg {
        background-attachment: scroll;
    }
     .btn-primary {
         font-size:0.8rem;
    }
}

@media (max-width: 480px) {
    .solutions-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .hero-title {
        font-size: 30px;
    }

    .section-title {
        font-size: 26px;
    }

    .cta-title {
        font-size: 28px;
    }

    .av-block {
        padding: 24px 20px;
    }
}

/* =====================
   ANIMASYON - Giriş
   ===================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    animation: fadeInUp 0.6s ease both;
    animation-delay: 0.2s;
}

.hero-title {
    animation: fadeInUp 0.7s ease both;
    animation-delay: 0.4s;
}

.hero-desc {
    animation: fadeInUp 0.7s ease both;
    animation-delay: 0.55s;
}

.hero-solutions {
    animation: fadeInUp 0.7s ease both;
    animation-delay: 0.7s;
}

.hero-actions {
    animation: fadeInUp 0.7s ease both;
    animation-delay: 0.85s;
}

/* Intersection Observer için */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* CTA Footer section gap */
.cta-footer {
    padding: 100px 24px;
}