/* ============================================================
   ASIST YAZILIM - Web Sitesi CSS
   Renkleri değiştirmek için sadece :root değişkenlerini düzenleyin
   ============================================================ */

/* === BRAND VARIABLES === */
:root {
    /* Ana Renkler — bu değerleri değiştirerek tüm siteyi güncelleyebilirsiniz */
    --brand-primary:        #0d2b6e;
    --brand-primary-dark:   #091f52;
    --brand-primary-light:  #1a4bbf;
    --brand-secondary:      #1e40af;
    --brand-accent:         #f59e0b;
    --brand-accent-dark:    #d97706;

    /* UI Renkleri */
    --brand-white:          #ffffff;
    --brand-bg:             #f8fafc;
    --brand-light:          #eff6ff;
    --brand-border:         #e2e8f0;
    --brand-text:           #1e293b;
    --brand-text-muted:     #64748b;
    --brand-text-light:     #94a3b8;

    /* Gradient */
    --brand-gradient:       linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);

    /* Navbar */
    --navbar-height:        72px;

    /* Gölgeler */
    --shadow-sm:            0 2px 8px rgba(13, 43, 110, 0.08);
    --shadow-md:            0 4px 24px rgba(13, 43, 110, 0.12);
    --shadow-lg:            0 8px 40px rgba(13, 43, 110, 0.18);

    /* Radius */
    --radius:               12px;
    --radius-lg:            20px;
}

/* === BASE === */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--brand-text);
    background: var(--brand-white);
    margin: 0;
    padding: 0;
}

img { max-width: 100%; height: auto; }

a { text-decoration: none; }

/* === NAVBAR === */
.web-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--navbar-height);
    background: var(--brand-primary);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.web-nav.scrolled {
    background: var(--brand-primary-dark);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.web-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--navbar-height);
    gap: 1rem;
}

.web-nav-brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    color: var(--brand-white);
}

.web-nav-brand:hover { opacity: 0.85; }

/* Text logo */
.brand-text-logo {
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: 1.55rem;
    color: var(--brand-white);
    letter-spacing: -0.04em;
    line-height: 1;
    display: inline-flex;
    align-items: baseline;
}

.brand-text-logo--footer {
    font-size: 1.65rem;
}

.brand-dot {
    color: var(--brand-accent);
    margin: 0 1px;
}

.brand-sub {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-left: 0.12rem;
    align-self: flex-end;
    padding-bottom: 0.2rem;
}

.web-nav-menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.web-nav-link {
    color: rgba(255,255,255,0.85);
    padding: 0.45rem 0.9rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
}

.web-nav-link:hover {
    color: var(--brand-white);
    background: rgba(255,255,255,0.12);
}

.web-nav-link.active {
    color: var(--brand-accent);
    background: rgba(245,158,11,0.12);
}

.web-nav-cta {
    background: var(--brand-accent);
    color: var(--brand-primary-dark) !important;
    font-weight: 700 !important;
    padding: 0.5rem 1.1rem !important;
}

.web-nav-cta:hover {
    background: var(--brand-accent-dark) !important;
    color: var(--brand-primary-dark) !important;
}

.web-nav-link.web-nav-cta.active {
    background: var(--brand-accent-dark) !important;
    color: var(--brand-primary-dark) !important;
}

.web-nav-toggler {
    display: none;
    background: rgba(255,255,255,0.12);
    border: none;
    color: var(--brand-white);
    padding: 0.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.4rem;
    line-height: 1;
}

/* === HERO === */
.hero {
    margin-top: var(--navbar-height);
    position: relative;
}

.hero-slide {
    min-height: 580px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-slide-1 { background: linear-gradient(135deg, #0d2b6e 0%, #1e40af 50%, #1d4ed8 100%); }
.hero-slide-2 { background: linear-gradient(135deg, #091f52 0%, #0d2b6e 50%, #1e3a8a 100%); }
.hero-slide-3 { background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0d2b6e 100%); }

.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 70% 50%, rgba(245,158,11,0.08) 0%, transparent 60%),
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: cover, 40px 40px, 40px 40px;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 680px;
    padding: 3rem 0;
}

.hero-badge {
    display: inline-block;
    background: rgba(245,158,11,0.18);
    color: var(--brand-accent);
    border: 1px solid rgba(245,158,11,0.35);
    padding: 0.3rem 0.9rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--brand-white);
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 1.1rem;
}

.hero-title span { color: var(--brand-accent); }

.hero-text {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.78);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.hero-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }

.carousel-indicators [data-bs-target] {
    width: 32px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255,255,255,0.4);
    border: none;
    opacity: 1;
    transition: background 0.3s, width 0.3s;
}

.carousel-indicators .active {
    background: var(--brand-accent);
    width: 48px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 3rem;
    opacity: 0.6;
}

/* === BUTTONS === */
.web-btn-primary {
    background: var(--brand-accent);
    color: var(--brand-primary-dark);
    font-weight: 700;
    padding: 0.75rem 1.75rem;
    border-radius: 10px;
    border: 2px solid transparent;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    font-size: 0.95rem;
}

.web-btn-primary:hover {
    background: var(--brand-accent-dark);
    color: var(--brand-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245,158,11,0.35);
}

.web-btn-outline {
    background: transparent;
    color: var(--brand-white);
    font-weight: 600;
    padding: 0.75rem 1.75rem;
    border-radius: 10px;
    border: 2px solid rgba(255,255,255,0.45);
    transition: border-color 0.2s, background 0.2s, color 0.2s;
    font-size: 0.95rem;
}

.web-btn-outline:hover {
    border-color: var(--brand-white);
    background: rgba(255,255,255,0.1);
    color: var(--brand-white);
}

.web-btn-blue {
    background: var(--brand-gradient);
    color: var(--brand-white);
    font-weight: 700;
    padding: 0.75rem 1.75rem;
    border-radius: 10px;
    border: none;
    transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
    font-size: 0.95rem;
}

.web-btn-blue:hover {
    opacity: 0.92;
    color: var(--brand-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* === SECTIONS === */
.web-section { padding: 5rem 0; }

.web-section-alt { background: var(--brand-bg); }

.web-section-dark {
    background: var(--brand-gradient);
    color: var(--brand-white);
}

.section-kicker {
    display: inline-block;
    color: var(--brand-primary-light);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
}

.web-section-dark .section-kicker { color: var(--brand-accent); }

.section-title {
    font-size: clamp(1.6rem, 4vw, 2.25rem);
    font-weight: 800;
    color: var(--brand-text);
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.web-section-dark .section-title { color: var(--brand-white); }

.section-lead {
    font-size: 1.05rem;
    color: var(--brand-text-muted);
    max-width: 540px;
}

.web-section-dark .section-lead { color: rgba(255,255,255,0.75); }

/* === FEATURE CARDS === */
.feature-card {
    background: var(--brand-white);
    border: 1px solid var(--brand-border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    height: 100%;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(13,43,110,0.15);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
}

.icon-blue   { background: #eff6ff; color: var(--brand-secondary); }
.icon-gold   { background: #fef3c7; color: var(--brand-accent-dark); }
.icon-green  { background: #f0fdf4; color: #16a34a; }
.icon-purple { background: #faf5ff; color: #7c3aed; }

.feature-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--brand-text);
    margin-bottom: 0.6rem;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--brand-text-muted);
    line-height: 1.65;
    margin: 0;
}

/* === SERVICE CARDS === */
.service-card {
    background: var(--brand-white);
    border: 1px solid var(--brand-border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--brand-gradient);
    border-radius: 4px 0 0 4px;
    transform: scaleY(0);
    transition: transform 0.25s ease;
    transform-origin: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(13,43,110,0.2);
}

.service-card:hover::after { transform: scaleY(1); }

.service-card-icon {
    font-size: 2rem;
    color: var(--brand-primary-light);
}

.service-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--brand-text);
    margin: 0;
}

.service-card p {
    font-size: 0.87rem;
    color: var(--brand-text-muted);
    line-height: 1.65;
    margin: 0;
    flex: 1;
}

.service-card-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--brand-primary-light);
}

/* === STATS === */
.stats-section {
    background: var(--brand-gradient);
    padding: 3.5rem 0;
}

.stat-item { text-align: center; }

.stat-number {
    font-size: clamp(2.2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--brand-white);
    letter-spacing: -0.04em;
    line-height: 1;
    display: block;
}

.stat-number span { color: var(--brand-accent); }

.stat-label {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.72);
    font-weight: 500;
    margin-top: 0.4rem;
    display: block;
}

/* === TEKLIF FORM === */
.teklif-section {
    background: var(--brand-bg);
    padding: 5rem 0;
}

.teklif-card {
    background: var(--brand-white);
    border: 1px solid var(--brand-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
}

/* === FORM INPUTS === */
.web-form-group { margin-bottom: 1.1rem; }

.web-form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--brand-text);
    margin-bottom: 0.4rem;
}

.web-form-group .form-control,
.web-form-group .form-select {
    border: 1.5px solid var(--brand-border);
    border-radius: 8px;
    padding: 0.7rem 1rem;
    font-size: 0.92rem;
    color: var(--brand-text);
    transition: border-color 0.2s, box-shadow 0.2s;
    background: var(--brand-white);
}

.web-form-group .form-control:focus,
.web-form-group .form-select:focus {
    border-color: var(--brand-primary-light);
    box-shadow: 0 0 0 3px rgba(13,43,110,0.1);
    outline: none;
}

/* === PAGE HERO (inner pages) === */
.page-hero {
    background: var(--brand-gradient);
    padding: 5rem 0 4rem;
    margin-top: var(--navbar-height);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.page-hero-content { position: relative; z-index: 1; }

.page-hero-kicker {
    display: inline-block;
    background: rgba(245,158,11,0.18);
    color: var(--brand-accent);
    border: 1px solid rgba(245,158,11,0.35);
    padding: 0.28rem 0.85rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.page-hero-title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    color: var(--brand-white);
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 0.8rem;
}

.page-hero-text {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.75);
    max-width: 540px;
    line-height: 1.7;
}

/* === ABOUT PAGE === */
.about-card {
    background: var(--brand-white);
    border: 1px solid var(--brand-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: 100%;
    transition: transform 0.2s, box-shadow 0.2s;
}

.about-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.about-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.client-logo-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

.client-logo-item {
    background: var(--brand-white);
    border: 1px solid var(--brand-border);
    border-radius: 10px;
    padding: 0.75rem 1.5rem;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--brand-text-muted);
    transition: border-color 0.2s, color 0.2s, transform 0.2s;
}

.client-logo-item:hover {
    border-color: var(--brand-primary-light);
    color: var(--brand-primary-light);
    transform: translateY(-2px);
}

/* === DOWNLOADS PAGE === */
.download-card {
    background: var(--brand-white);
    border: 1px solid var(--brand-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    height: 100%;
    text-align: center;
    transition: transform 0.25s, box-shadow 0.25s;
}

.download-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.download-icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.download-version {
    display: inline-block;
    background: var(--brand-light);
    color: var(--brand-primary-light);
    border-radius: 999px;
    padding: 0.25rem 0.8rem;
    font-size: 0.78rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

/* === CONTACT PAGE === */
.contact-info-card {
    background: var(--brand-white);
    border: 1px solid var(--brand-border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    display: flex;
    align-items: flex-start;
    gap: 1.1rem;
    height: 100%;
    transition: transform 0.2s, box-shadow 0.2s;
}

.contact-info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-info-card h4 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--brand-text-muted);
    margin-bottom: 0.35rem;
}

.contact-info-card p {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--brand-text);
    margin: 0;
    line-height: 1.5;
}

.contact-form-card {
    background: var(--brand-white);
    border: 1px solid var(--brand-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
}

/* === FOOTER === */
.web-footer {
    background: var(--brand-primary-dark);
    color: rgba(255,255,255,0.78);
    padding: 4rem 0 0;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--brand-white);
    margin-bottom: 1rem;
}

.footer-desc {
    font-size: 0.88rem;
    line-height: 1.65;
    color: rgba(255,255,255,0.62);
    margin-bottom: 1.25rem;
}

.footer-heading {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brand-accent);
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.footer-links a {
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.footer-links a:hover { color: var(--brand-white); }

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 0.75rem;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.65);
}

.footer-contact-item i { color: var(--brand-accent); font-size: 1rem; margin-top: 0.1rem; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 3rem;
    padding: 1.25rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.footer-bottom p { margin: 0; font-size: 0.83rem; color: rgba(255,255,255,0.45); }

/* === BREADCRUMB === */
.web-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.83rem;
    color: rgba(255,255,255,0.55);
    margin-top: 0.75rem;
}

.web-breadcrumb a { color: rgba(255,255,255,0.65); }
.web-breadcrumb a:hover { color: var(--brand-white); }
.web-breadcrumb .separator { opacity: 0.4; }

/* === ALERT === */
.web-alert-success {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #15803d;
    border-radius: 10px;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.92rem;
    font-weight: 500;
}

.web-alert-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #b91c1c;
    border-radius: 10px;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.92rem;
    font-weight: 500;
}

/* === DIVIDER === */
.section-divider {
    width: 56px;
    height: 4px;
    background: var(--brand-gradient);
    border-radius: 2px;
    margin-bottom: 1.5rem;
}

/* === ANIMATIONS === */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

.fade-up { animation: fadeUp 0.6s ease both; }
.fade-up-d1 { animation-delay: 0.1s; }
.fade-up-d2 { animation-delay: 0.2s; }
.fade-up-d3 { animation-delay: 0.3s; }
.fade-up-d4 { animation-delay: 0.4s; }

/* v3 vurgu rengi — "Asistan<span class="brand-v3">v3</span>" için */
.brand-v3 { color: var(--brand-accent); }

/* === TEKLIF MODAL === */
.teklif-modal-dialog { max-width: 520px; }

.teklif-modal-content {
    border: none;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.teklif-modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    background: var(--brand-gradient);
    padding: 1.4rem 1.75rem;
}

.teklif-modal-title {
    color: var(--brand-white);
    font-weight: 800;
    font-size: 1.1rem;
    margin: 0;
}

.teklif-modal-sub {
    color: rgba(255,255,255,0.65);
    font-size: 0.82rem;
    margin: 0.2rem 0 0;
}

.teklif-modal-body { padding: 1.75rem; }

.teklif-success-icon {
    width: 64px;
    height: 64px;
    background: #f0fdf4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.75rem;
    color: #16a34a;
}

/* === RESPONSIVE === */

/* Yatay taşmayı önle */
body { overflow-x: hidden; }

@media (max-width: 991.98px) {
    .web-nav-menu {
        display: none;
        position: absolute;
        top: var(--navbar-height);
        left: 0;
        right: 0;
        background: var(--brand-primary-dark);
        flex-direction: column;
        padding: 0.75rem;
        gap: 0.1rem;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    }

    .web-nav-menu.open { display: flex; }

    .web-nav-link {
        padding: 0.72rem 1rem;
        border-radius: 8px;
        font-size: 0.95rem;
    }

    .web-nav-cta { text-align: center; margin-top: 0.25rem; }

    .web-nav-toggler { display: flex; align-items: center; justify-content: center; }

    .hero-slide { min-height: 460px; }
    .hero-content { padding: 2.5rem 0; }

    .web-section { padding: 3.5rem 0; }
    .teklif-section { padding: 3.5rem 0; }
    .teklif-card { padding: 1.75rem; }
    .contact-form-card { padding: 1.75rem; }

    .page-hero { padding: 4rem 0 3.5rem; }
}

@media (max-width: 767.98px) {
    .web-section { padding: 3rem 0; }
    .teklif-section { padding: 3rem 0; }
    .stats-section { padding: 2.5rem 0; }

    .page-hero { padding: 3rem 0 2.75rem; }
    .page-hero-title { font-size: 1.9rem; }

    .teklif-card,
    .contact-form-card,
    .download-card { padding: 1.5rem; }

    .about-card { padding: 1.5rem; }

    .client-logo-item {
        font-size: 0.82rem;
        padding: 0.6rem 1rem;
    }

    /* Servis kartlarındaki icon biraz küçülsün */
    .service-card-icon { font-size: 1.6rem; }

    /* Footer kolonları arasına boşluk */
    .web-footer .col-6 { margin-bottom: 0.5rem; }
}

@media (max-width: 575.98px) {
    :root { --navbar-height: 64px; }

    .hero-slide { min-height: 400px; }
    .hero-content { padding: 2rem 0; }
    .hero-title { font-size: 1.75rem; }
    .hero-text { font-size: 0.97rem; }
    .hero-badge { font-size: 0.72rem; }

    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; text-align: center; }

    .page-hero { padding: 2.5rem 0 2.25rem; }
    .page-hero-title { font-size: 1.65rem; }
    .page-hero-text { font-size: 0.95rem; }

    .web-section { padding: 2.5rem 0; }
    .teklif-section { padding: 2.5rem 0; }
    .stats-section { padding: 2rem 0; }

    .section-title { font-size: 1.5rem; }

    /* 2 kolonlu servis kartları — mobilde 1 kolona düş */
    .col-6 > .service-card { padding: 1.25rem; }
    .service-card-icon { font-size: 1.4rem; }
    .service-card h3 { font-size: 0.9rem; }
    .service-card p { font-size: 0.82rem; }

    /* Feature card */
    .feature-card { padding: 1.5rem 1.25rem; }

    /* Teklif & contact form */
    .teklif-card,
    .contact-form-card { padding: 1.25rem; }

    /* Stat rakamları */
    .stat-number { font-size: 2rem; }

    /* Footer */
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-bottom p { font-size: 0.78rem; }

    /* İndirmeler accordion */
    .accordion-button { font-size: 0.9rem; padding: 0.9rem 1rem; }
}
