:root {
    --primary:      #1a3c6e;
    --primary-dark: #122b52;
    --accent:       #e8a020;
    --accent-dark:  #c8881a;
    --text-dark:    #1a1a2e;
    --text-muted:   #6c757d;
    --bg-light:     #f4f7fb;
    --white:        #ffffff;
}

* { box-sizing: border-box; }

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
}

/* ── NAVBAR ── */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0,0,0,.08);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.navbar-brand span { color: var(--accent); }

.navbar-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    padding: 6px 16px !important;
    border-radius: 6px;
    transition: all .2s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary) !important;
    background: var(--bg-light);
}

.btn-nav {
    background: var(--primary);
    color: var(--white) !important;
    font-weight: 600;
    padding: 8px 22px !important;
    border-radius: 8px;
}

.btn-nav:hover { background: var(--primary-dark); }

/* ── HERO ── */
.hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, #2563a8 100%);
    color: var(--white);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    right: -100px;
    top: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(232,160,32,.15) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    left: -60px;
    bottom: -80px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255,255,255,.04) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-badge {
    display: inline-block;
    background: rgba(232,160,32,.2);
    border: 1px solid rgba(232,160,32,.4);
    color: var(--accent);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero h1 span { color: var(--accent); }

.hero .lead {
    font-size: 1.1rem;
    opacity: .85;
    max-width: 520px;
    margin-bottom: 36px;
    line-height: 1.7;
}

.btn-primary-custom {
    background: var(--accent);
    color: var(--white);
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 8px;
    border: none;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
    transition: all .25s;
}

.btn-primary-custom:hover {
    background: var(--accent-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232,160,32,.4);
}

.hero-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: .95rem;
    color: var(--white);
    text-decoration: none;
    transition: all .2s;
}

.hero-phone:hover { background: rgba(255,255,255,.18); color: var(--white); }
.hero-phone i { color: var(--accent); }

.hero-social {
    display: flex;
    gap: 12px;
    margin-top: 36px;
}

.hero-social a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all .2s;
    font-size: .85rem;
}

.hero-social a:hover { background: var(--accent); border-color: var(--accent); }

.hero-graphic {
    width: 340px;
    height: 340px;
    background: rgba(255,255,255,.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255,255,255,.1);
}

.hero-graphic-inner {
    width: 240px;
    height: 240px;
    background: rgba(232,160,32,.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-graphic-inner i {
    font-size: 6rem;
    color: var(--accent);
}

/* ── STATS ── */
.stats-section {
    background: var(--white);
    box-shadow: 0 4px 30px rgba(0,0,0,.08);
    padding: 50px 0;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-number span { color: var(--accent); }

.stat-label {
    font-size: .9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 80px;
    background: #e2e8f0;
}

/* ── ABOUT ── */
.about-section {
    padding: 90px 0;
    background: var(--bg-light);
}

.section-tag {
    font-size: .8rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 18px;
}

.section-text {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
}

.feature-card {
    background: var(--white);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,.05);
    transition: all .25s;
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), #2563a8);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-card h6 {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: .88rem;
    margin: 0;
}

.about-visual {
    background: linear-gradient(135deg, var(--primary), #2563a8);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    color: var(--white);
}

.about-visual-icon { font-size: 5rem; margin-bottom: 20px; }

.about-visual-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.about-visual-sub {
    font-size: .9rem;
    opacity: .75;
}

.about-visual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 30px;
}

.about-visual-stat {
    background: rgba(255,255,255,.1);
    border-radius: 12px;
    padding: 16px;
}

.about-visual-stat-num {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent);
}

.about-visual-stat-lbl {
    font-size: .78rem;
    opacity: .8;
}

/* ── CTA ── */
.cta-section {
    background: linear-gradient(135deg, var(--accent) 0%, #f0b030 100%);
    padding: 70px 0;
}

.cta-section h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--white);
}

.cta-sub {
    color: rgba(255,255,255,.8);
    margin-top: 12px;
    font-size: 1rem;
}

.cta-call-label {
    color: rgba(255,255,255,.7);
    font-size: .85rem;
    margin-bottom: 4px;
}

.cta-phone {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-dark);
    text-decoration: none;
}

.btn-cta {
    background: var(--primary);
    color: var(--white);
    font-weight: 700;
    padding: 14px 36px;
    border-radius: 8px;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
    transition: all .25s;
}

.btn-cta:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
}

/* ── SERVICES ── */
.services-section {
    background: var(--primary);
    padding: 90px 0;
}

.services-section .section-tag { color: rgba(255,255,255,.6); }
.services-section .section-title { color: var(--white); }

.service-card {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    transition: all .3s;
    height: 100%;
}

.service-card:hover {
    background: rgba(255,255,255,.13);
    border-color: var(--accent);
    transform: translateY(-6px);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent), #f0b030);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    margin: 0 auto 20px;
}

.service-card h5 {
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    font-size: 1.05rem;
}

.service-card p {
    color: rgba(255,255,255,.65);
    font-size: .88rem;
    line-height: 1.7;
    margin: 0;
}

/* ── NEWS ── */
.news-section {
    padding: 90px 0;
    background: var(--white);
}

.news-all-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    font-size: .9rem;
}

.news-all-link:hover { color: var(--accent); }

.news-card {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,.07);
    transition: all .3s;
    background: var(--white);
    border: 1px solid #edf2f7;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,.12);
}

.news-img {
    height: 200px;
    background: linear-gradient(135deg, #dae4f0 0%, #c5d5e8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--primary);
}

.news-body { padding: 24px; }

.news-meta {
    font-size: .78rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.news-meta span { margin-right: 14px; }

.news-body h5 {
    font-weight: 700;
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.read-more {
    color: var(--accent);
    font-weight: 600;
    font-size: .85rem;
    text-decoration: none;
}

.read-more:hover { color: var(--accent-dark); }

/* ── INFO ── */
.info-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.info-card {
    background: var(--white);
    border-radius: 14px;
    padding: 36px 28px;
    text-align: center;
    box-shadow: 0 2px 16px rgba(0,0,0,.05);
    height: 100%;
    transition: all .25s;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0,0,0,.1);
}

.info-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary), #2563a8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    margin: 0 auto 20px;
}

.info-card strong {
    display: block;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.info-card p {
    color: var(--text-muted);
    font-size: .88rem;
    line-height: 1.7;
    margin: 0;
}

/* ── FOOTER ── */
.footer {
    background: var(--primary-dark);
    color: rgba(255,255,255,.75);
    padding: 70px 0 0;
}

.footer-logo {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-logo span { color: var(--accent); }

.footer-logo-img {
    height: 52px;
    width: auto;
    object-fit: contain;
}

.footer-desc {
    font-size: .88rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.footer h6 {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 18px;
    font-size: 1rem;
}

.footer-newsletter-text {
    font-size: .85rem;
    margin-bottom: 16px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
    font-size: .88rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-contact li i {
    color: var(--accent);
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-contact li a {
    color: rgba(255,255,255,.75);
    text-decoration: none;
}

.footer-contact li a:hover { color: var(--accent); }

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.7);
    text-decoration: none;
    transition: all .2s;
    font-size: .85rem;
}

.footer-social a:hover { background: var(--accent); color: var(--white); }

.footer-pages {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-pages a {
    color: rgba(255,255,255,.7);
    text-decoration: none;
    font-size: .88rem;
    transition: color .2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-pages a::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
}

.footer-pages a:hover { color: var(--accent); }

.newsletter-form .input-group input {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    color: var(--white);
    padding: 10px 16px;
    border-radius: 8px 0 0 8px;
}

.newsletter-form .input-group input::placeholder { color: rgba(255,255,255,.4); }

.newsletter-form .input-group input:focus {
    background: rgba(255,255,255,.12);
    outline: none;
    box-shadow: none;
    border-color: var(--accent);
}

.newsletter-form button {
    background: var(--accent);
    border: none;
    color: var(--white);
    padding: 10px 18px;
    border-radius: 0 8px 8px 0;
    font-weight: 600;
    transition: all .2s;
    cursor: pointer;
}

.newsletter-form button:hover { background: var(--accent-dark); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    margin-top: 50px;
    padding: 22px 0;
}

.footer-bottom a {
    color: rgba(255,255,255,.5);
    text-decoration: none;
    font-size: .82rem;
}

.footer-bottom a:hover { color: var(--accent); }

.copyright {
    font-size: .82rem;
    color: rgba(255,255,255,.45);
}

/* ── BACK TO TOP ── */
#backToTop {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 42px;
    height: 42px;
    background: var(--accent);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(232,160,32,.4);
    transition: all .2s;
    z-index: 999;
}

#backToTop:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}

/* ── SAYFA HERO (alt sayfalar) ── */
.page-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    right: -80px; top: -80px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(232,160,32,.12) 0%, transparent 70%);
    border-radius: 50%;
}

.page-hero-content h1 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
}

.page-hero .breadcrumb-item,
.page-hero .breadcrumb-item a {
    color: rgba(255,255,255,.65);
    text-decoration: none;
}

.page-hero .breadcrumb-item a:hover { color: var(--accent); }
.page-hero .breadcrumb-item.active { color: var(--accent); }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.4); }

/* ── İLETİŞİM SAYFASI ── */
.contact-section {
    padding: 90px 0;
    background: var(--bg-light);
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--white);
    border-radius: 12px;
    padding: 20px 22px;
    box-shadow: 0 2px 12px rgba(0,0,0,.05);
    transition: all .25s;
}

.contact-info-card:hover {
    transform: translateX(4px);
    box-shadow: 0 6px 20px rgba(0,0,0,.09);
}

.contact-info-icon {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--primary), #2563a8);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-info-label {
    font-size: .75rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 3px;
}

.contact-info-value {
    font-size: .93rem;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    line-height: 1.5;
    display: block;
}

.contact-info-value:hover { color: var(--primary); }

.contact-social {
    display: flex;
    gap: 10px;
    margin-top: 28px;
}

.contact-social a {
    width: 40px; height: 40px;
    background: var(--primary);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    text-decoration: none;
    font-size: .9rem;
    transition: all .2s;
}

.contact-social a:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

/* Harita kartı */
.contact-map-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(0,0,0,.07);
    height: 100%;
    min-height: 480px;
}

/* Form kartı */
.contact-form-card {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 30px rgba(0,0,0,.07);
}

.contact-form-card h4 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 6px;
}

.contact-form-card > p {
    color: var(--text-muted);
    font-size: .9rem;
    margin-bottom: 28px;
}

.contact-form .form-label {
    font-size: .82rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.contact-form .form-label span { color: var(--accent); }

.contact-form .form-control,
.contact-form .form-select {
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: .9rem;
    color: var(--text-dark);
    transition: border-color .2s, box-shadow .2s;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26,60,110,.1);
    outline: none;
}

.contact-form textarea { resize: vertical; min-height: 130px; }

.btn-submit {
    background: linear-gradient(135deg, var(--primary), #2563a8);
    color: var(--white);
    font-weight: 700;
    padding: 13px 32px;
    border-radius: 8px;
    border: none;
    font-size: .95rem;
    cursor: pointer;
    transition: all .25s;
    display: inline-flex;
    align-items: center;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26,60,110,.35);
}

/* Harita */
.map-section { background: var(--white); }

.map-header {
    padding: 60px 0 30px;
    background: var(--white);
}

.map-wrapper {
    line-height: 0;
    filter: grayscale(15%);
    transition: filter .3s;
}

.map-wrapper:hover { filter: grayscale(0%); }

/* ── LEGAL SAYFALAR (Gizlilik, KVKK vb.) ── */
.legal-section {
    padding: 80px 0 100px;
    background: var(--bg-light);
}

.legal-card {
    background: var(--white);
    border-radius: 18px;
    padding: 48px;
    box-shadow: 0 4px 30px rgba(0,0,0,.07);
}

.legal-intro {
    background: linear-gradient(135deg, #eef3fb, #e6eef8);
    border-left: 4px solid var(--primary);
    border-radius: 0 12px 12px 0;
    padding: 28px 32px;
    margin-bottom: 40px;
    position: relative;
}

.legal-intro-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 14px;
    display: block;
}

.legal-intro p {
    color: var(--text-dark);
    font-size: .95rem;
    line-height: 1.75;
    margin-bottom: 10px;
}

.legal-block {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 28px 0;
    border-bottom: 1px solid #edf2f7;
}

.legal-block:last-of-type { border-bottom: none; }

.legal-block-icon {
    width: 46px; height: 46px;
    background: linear-gradient(135deg, var(--primary), #2563a8);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    font-size: 1.05rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.legal-block h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.legal-block p {
    color: var(--text-muted);
    font-size: .9rem;
    line-height: 1.8;
    margin-bottom: 8px;
}

.legal-footer-note {
    margin-top: 36px;
    padding: 16px 22px;
    background: rgba(232,160,32,.08);
    border: 1px solid rgba(232,160,32,.25);
    border-radius: 10px;
    font-size: .88rem;
    color: var(--text-dark);
}

.legal-footer-note a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.legal-footer-note a:hover { color: var(--accent); }

/* ── REFERANSLAR ── */
.brands-section {
    padding: 90px 0;
    background: var(--bg-light);
}

.clients-section {
    padding: 90px 0;
    background: var(--white);
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-top: 48px;
}

.logo-item {
    background: var(--white);
    border: 1.5px solid #e2e8f0;
    border-radius: 14px;
    aspect-ratio: 3/2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: all .25s;
    overflow: hidden;
}

.logo-item:hover {
    border-color: var(--primary);
    box-shadow: 0 6px 20px rgba(26,60,110,.1);
    transform: translateY(-3px);
}

.logo-item img {
    max-width: 100%;
    max-height: 64px;
    object-fit: contain;
    filter: grayscale(40%);
    opacity: .75;
    transition: all .25s;
}

.logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.logo-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #cbd5e0;
}

.logo-placeholder i { font-size: 1.6rem; }
.logo-placeholder span { font-size: .7rem; font-weight: 600; letter-spacing: .5px; text-transform: uppercase; }

.client-card {
    background: var(--white);
    border: 1.5px solid #e2e8f0;
    border-radius: 14px;
    padding: 28px 24px;
    text-align: center;
    transition: all .25s;
    height: 100%;
}

.client-card:hover {
    border-color: var(--primary);
    box-shadow: 0 6px 24px rgba(26,60,110,.1);
    transform: translateY(-3px);
}

.client-card-icon {
    width: 52px;
    height: 52px;
    background: var(--bg-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary);
    margin: 0 auto 16px;
    transition: all .25s;
}

.client-card:hover .client-card-icon {
    background: var(--primary);
    color: var(--white);
}

.client-card h6 {
    font-weight: 700;
    color: var(--primary);
    font-size: .95rem;
    margin-bottom: 4px;
}

.client-card p {
    font-size: .8rem;
    color: var(--text-muted);
    margin: 0;
}

/* ── SCROLL ANİMASYON ── */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .6s ease, transform .6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-up[data-delay="1"] { transition-delay: .1s; }
.fade-up[data-delay="2"] { transition-delay: .2s; }
.fade-up[data-delay="3"] { transition-delay: .3s; }
.fade-up[data-delay="4"] { transition-delay: .4s; }

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
    .logo-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 767px) {
    .hero { padding: 70px 0 60px; }
    .stat-divider { display: none; }
    .page-hero { padding: 44px 0; }
    .legal-card { padding: 24px 20px; }
    .legal-block { flex-direction: column; gap: 12px; }
    .logo-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }

    /* Hakkımızda görsel kutu mobilde daha kompakt */
    .about-visual { padding: 32px 24px; }
    .about-visual-icon { font-size: 3rem; margin-bottom: 12px; }

    /* CTA telefon numarası taşmasın */
    .cta-phone { font-size: 1.2rem; }

    /* Servisler başlığındaki zorla satır sonu mobilde kaldırılır */
    .services-section .section-title br { display: none; }

    /* İletişim haritası mobilde sabit yükseklik */
    .contact-map-card { min-height: 320px; height: 320px; }

    /* Section title mobilde biraz küçülsün */
    .section-title { font-size: 1.5rem; }
}
