/* ============================================================
   InTouch - TEMA 2 "MODERN KURUMSAL"
   Tüm stiller tek dosyada toplanmıştır.
   Renk paleti Tema 1 (Klasik) ile aynı: navy + kırmızı.
   Açık ve ferah modern kurumsal tasarım.
   ============================================================ */
:root {
    --navy: #0f1b3d;
    --navy-2: #1a2a5c;
    --navy-3: #24408a;
    --accent: #e31e24;
    --accent-2: #c41a1f;
    --accent-soft: #fdecec;
    --ink: #16213a;
    --muted: #5b6473;
    --bg-soft: #f6f8fc;
    --line: #e6eaf2;
    --white: #ffffff;
    --shadow-sm: 0 2px 10px rgba(15,27,61,.06);
    --shadow-md: 0 18px 45px rgba(15,27,61,.10);
    --shadow-lg: 0 30px 70px rgba(15,27,61,.14);
    --radius: 16px;
    --transition: all .35s cubic-bezier(.4,0,.2,1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Manrope', 'Inter', system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
    color: var(--ink);
    background: var(--white);
    font-size: 15px;
    line-height: 1.7;
    overflow-x: hidden;
}
h1, h2, h3, h4, h5, .display-font { font-family: 'Manrope', 'Inter', sans-serif; }

a { transition: var(--transition); }
img { max-width: 100%; }
.container-xl { max-width: 1240px; }

/* ============ Navbar ============ */
.navbar {
    padding: .95rem 0;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}
.navbar.scrolled {
    box-shadow: 0 8px 30px rgba(15,27,61,.08);
    border-bottom-color: var(--line);
    padding: .6rem 0;
}
.navbar-brand img { height: 46px; width: auto; object-fit: contain; }
.navbar-brand { font-weight: 800; font-size: 1.5rem; color: var(--navy) !important; }
.navbar-brand .accent { color: var(--accent); }
.nav-link {
    color: var(--ink) !important;
    font-size: 12.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    padding: .55rem 1rem !important;
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    left: 1rem; right: 1rem; bottom: .25rem;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}
.nav-link:hover::after { transform: scaleX(1); }
.nav-link:hover { color: var(--navy) !important; }
.btn-accent {
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 9px;
    padding: .65rem 1.5rem;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .6px;
    text-transform: uppercase;
    box-shadow: 0 8px 22px rgba(227,30,36,.28);
    transition: var(--transition);
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
}
.btn-accent:hover { background: var(--accent-2); color: #fff; transform: translateY(-2px); }
.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,.5);
    border-radius: 9px;
    padding: .62rem 1.5rem;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .6px;
    text-transform: uppercase;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}
.btn-outline:hover { background: #fff; color: var(--navy); }

/* ============ Hero ============ */
.hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(118deg, var(--navy) 0%, var(--navy-2) 52%, #162449 100%);
    color: #fff;
    padding: 0;
}
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: .55;
    -webkit-mask-image: radial-gradient(circle at 20% 30%, black, transparent 70%);
    mask-image: radial-gradient(circle at 20% 30%, black, transparent 70%);
}
.hero::after {
    content: '';
    position: absolute;
    right: -14%; top: -40%;
    width: 56%; height: 170%;
    background: linear-gradient(135deg, transparent 32%, rgba(227,30,36,.85) 32.4%, rgba(227,30,36,.16) 72%, transparent 72.4%);
    opacity: .5;
    transform: rotate(3deg);
}
.hero .container { position: relative; z-index: 2; }
.hero-slide { min-height: calc(100vh - 76px); display: flex; align-items: center; padding: 90px 0 80px; }
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--accent);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.eyebrow::before { content: ''; width: 36px; height: 2px; background: var(--accent); }
.hero h1 {
    font-size: clamp(40px, 5vw, 66px);
    line-height: 1.04;
    letter-spacing: -2.5px;
    font-weight: 800;
    margin: 0 0 22px;
    max-width: 700px;
}
.hero h1 .hl { color: var(--accent); }
.hero .lead { color: #c6cede; font-size: 15.5px; max-width: 560px; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-media {
    position: relative;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: var(--radius);
    overflow: hidden;
    background: rgba(10,28,64,.6);
    box-shadow: 0 40px 90px rgba(0,0,0,.4);
}
.hero-media img, .hero-media video { display: block; width: 100%; height: 430px; object-fit: cover; }
.hero-badge {
    position: absolute;
    left: 14px; top: 14px;
    background: rgba(15,27,61,.75);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .6px;
    backdrop-filter: blur(6px);
}
.hero .carousel-indicators { bottom: 24px; margin-bottom: 0; }
.hero .carousel-indicators [data-bs-target] { width: 26px; height: 3px; border: 0; border-radius: 3px; background: rgba(255,255,255,.35); }
.hero .carousel-indicators .active { background: var(--accent); }
.hero-mini-stats { display: flex; gap: 26px; margin-top: 38px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); }
.hero-mini-stats .mstat strong { font-size: 24px; font-weight: 800; color: #fff; }
.hero-mini-stats .mstat strong em { color: var(--accent); font-style: normal; }
.hero-mini-stats .mstat span { display: block; font-size: 9.5px; color: #93a1bb; text-transform: uppercase; letter-spacing: 1px; font-weight: 700; }

/* ============ Sections ============ */
section { padding: 96px 0; }
.kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--accent);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.kicker::before { content: ''; width: 34px; height: 2px; background: var(--accent); }
.section-title {
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.1;
    letter-spacing: -1.8px;
    font-weight: 800;
    color: var(--navy);
    margin: 0 0 16px;
}
.section-copy { color: var(--muted); max-width: 640px; margin: 0; }
.section-head { margin-bottom: 46px; }
.section-head.center { text-align: center; }
.section-head.center .kicker::before { display: none; }

/* ============ Hizmet Kartları ============ */
.service-card {
    height: 100%;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 30px 26px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card::after {
    content: '';
    position: absolute;
    left: 0; right: 0; top: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
    width: 52px; height: 52px;
    border-radius: 13px;
    background: linear-gradient(135deg, var(--navy), var(--navy-3));
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    box-shadow: 0 10px 24px rgba(15,27,61,.22);
    transition: var(--transition);
}
.service-card:hover .service-icon { background: linear-gradient(135deg, var(--accent), var(--accent-2)); transform: rotate(-6deg) scale(1.06); }
.service-card h3 { font-size: 17px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.service-card p { font-size: 13px; color: var(--muted); margin: 0; }
.service-link { display: inline-flex; align-items: center; gap: 6px; color: var(--accent); font-size: 12.5px; font-weight: 800; text-decoration: none; margin-top: 14px; }
.service-link:hover { color: var(--navy); gap: 10px; }

/* ============ Neden Biz (koyu) ============ */
.why-us { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%); color: #fff; position: relative; overflow: hidden; }
.why-us::before {
    content: '';
    position: absolute;
    right: -8%; top: -20%;
    width: 460px; height: 460px;
    background: radial-gradient(circle, rgba(227,30,36,.18) 0%, transparent 65%);
}
.why-us .section-title { color: #fff; }
.why-us .section-copy { color: #aeb9ce; }
.why-us .kicker { color: var(--accent); }
.why-feature {
    display: flex;
    gap: 16px;
    margin-bottom: 22px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px;
    padding: 18px;
    transition: var(--transition);
}
.why-feature:hover { background: rgba(255,255,255,.07); border-color: rgba(227,30,36,.35); transform: translateX(4px); }
.why-feature .wf-icon {
    width: 46px; height: 46px; min-width: 46px;
    border-radius: 12px;
    background: rgba(227,30,36,.16);
    color: var(--accent);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.25rem;
}
.why-feature h5 { color: #fff; font-size: 15px; font-weight: 800; margin-bottom: 3px; }
.why-feature p { color: #9aa7bd; font-size: 12.5px; margin: 0; }

/* ============ İstatistik ============ */
.stats-band { background: linear-gradient(120deg, var(--accent) 0%, var(--accent-2) 100%); }
.stats-band .stat-box { text-align: center; padding: 26px 12px; color: #fff; }
.stats-band .stat-box strong { display: block; font-size: 44px; font-weight: 800; letter-spacing: -2px; line-height: 1; }
.stats-band .stat-box span { display: block; font-size: 10.5px; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase; margin-top: 8px; opacity: .9; }

/* ============ Müşteri Yorumları ============ */
.testimonials { background: var(--bg-soft); }
.testimonial-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 30px 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    position: relative;
}
.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 8px; right: 22px;
    font-size: 90px;
    line-height: 1;
    color: var(--accent-soft);
    font-family: Georgia, serif;
    font-weight: 700;
    z-index: 0;
}
.testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: transparent; }
.t-stars { color: var(--accent); font-size: 15px; margin-bottom: 16px; position: relative; z-index: 1; }
.t-text { color: #3f4756; font-size: 14px; line-height: 1.8; flex: 1; position: relative; z-index: 1; }
.t-author { display: flex; align-items: center; gap: 13px; margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line); }
.t-author img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.t-avatar {
    width: 46px; height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--navy-3));
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800;
    font-size: 18px;
}
.t-author strong { display: block; font-size: 14px; color: var(--navy); }
.t-author span:not(.t-avatar) { display: block; font-size: 12px; color: var(--muted); }

/* ============ Referanslar ============ */
.references { background: var(--bg-soft); }
.ref-item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 22px 18px;
    min-height: 120px;
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
}
.ref-item:hover { box-shadow: var(--shadow-sm); border-color: #d3dbe8; transform: translateY(-3px); }
.ref-item img { max-height: 82px; max-width: 100%; object-fit: contain; }
.ref-item .ref-text { color: var(--navy); font-weight: 800; font-size: 15px; letter-spacing: .5px; opacity: .55; }

/* ============ Blog ============ */
.blog-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.blog-card .bc-img { height: 200px; object-fit: cover; width: 100%; }
.blog-card .bc-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.blog-card .bc-meta { font-size: 11.5px; color: var(--muted); margin-bottom: 10px; display: flex; gap: 14px; }
.blog-card h5 { font-size: 16px; font-weight: 800; color: var(--navy); line-height: 1.4; }
.blog-card h5 a { color: inherit; text-decoration: none; }
.blog-card h5 a:hover { color: var(--accent); }
.blog-card .bc-excerpt { font-size: 13px; color: var(--muted); margin: 10px 0 0; }
.post-cat {
    display: inline-block;
    background: var(--accent-soft);
    color: var(--accent);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .8px;
    border-radius: 50px;
    padding: 4px 11px;
    margin-bottom: 12px;
}

/* ============ Duyurular ============ */
.announcement-item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 22px 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: var(--transition);
}
.announcement-item:hover { border-color: var(--accent); box-shadow: var(--shadow-sm); }
.announcement-item .ai-icon {
    width: 46px; height: 46px; min-width: 46px;
    border-radius: 12px;
    background: var(--accent-soft);
    color: var(--accent);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
}
.announcement-item h5 { font-size: 15px; font-weight: 800; color: var(--navy); }
.announcement-item h5 a { color: inherit; text-decoration: none; }
.announcement-item h5 a:hover { color: var(--accent); }
.announcement-item p { color: var(--muted); font-size: 13px; margin: 4px 0 0; }

/* ============ CTA ============ */
.cta-band {
    background: linear-gradient(120deg, var(--accent-soft), #fff);
    border: 1px solid #f2c4c5;
    border-radius: 22px;
    padding: 70px 30px;
    text-align: center;
}
.cta-band .kicker { justify-content: center; }
.cta-band .kicker::before { display: none; }
.cta-band .section-title { max-width: 620px; margin: 0 auto 18px; }
.cta-band .section-copy { margin: 0 auto 30px; }

/* ============ İç Sayfa Başlığı ============ */
.page-header {
    background: linear-gradient(118deg, var(--navy) 0%, var(--navy-2) 55%, #162449 100%);
    color: #fff;
    padding: 148px 0 72px;
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute; inset: 0;
    background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: .5;
}
.page-header .container { position: relative; z-index: 2; }
.page-header h1 { font-size: clamp(30px, 4vw, 46px); font-weight: 800; letter-spacing: -1.5px; }
.page-header p { color: #b6c0d5; max-width: 620px; margin-top: 10px; }
.page-header .breadcrumb { --bs-breadcrumb-divider-color: rgba(255,255,255,.4); margin-top: 18px; }
.page-header .breadcrumb-item a { color: #9aa7bd; text-decoration: none; }
.page-header .breadcrumb-item.active { color: var(--accent); }

/* ============ İçerik ============ */
.page-content { background: var(--white); }
.page-content .content-body { color: #3f4756; font-size: 15px; line-height: 1.85; }
.page-content .content-body img { border-radius: 12px; }
.page-content .content-body h2, .page-content .content-body h3 { color: var(--navy); margin-top: 26px; font-weight: 800; }
.content-body ul, .content-body ol { padding-left: 1.3rem; }

/* ============ İletişim ============ */
.contact { background: var(--bg-soft); }
.contact-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 34px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--line);
    height: 100%;
}
.contact-info-item { display: flex; gap: 15px; align-items: flex-start; margin-bottom: 22px; }
.contact-info-icon {
    width: 46px; height: 46px; min-width: 46px;
    border-radius: 12px;
    background: var(--accent-soft);
    color: var(--accent);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
}
.contact-info-item h6 { font-size: 11px; font-weight: 800; color: var(--navy); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 2px; }
.contact-info-item p { font-size: 13.5px; color: var(--muted); margin: 0; }
.form-control, .form-select {
    border: 1.5px solid var(--line);
    border-radius: 10px;
    padding: .8rem 1rem;
    font-size: 14px;
    transition: var(--transition);
    background: #fff;
}
.form-control:focus, .form-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(227,30,36,.12);
}
.form-floating label { font-size: 13.5px; color: var(--muted); }
.btn-submit { background: var(--accent); color: #fff; border: none; padding: .85rem 1.8rem; font-weight: 800; border-radius: 10px; width: 100%; text-transform: uppercase; letter-spacing: 1px; font-size: 13px; transition: var(--transition); }
.btn-submit:hover { background: var(--accent-2); color: #fff; transform: translateY(-2px); box-shadow: 0 10px 25px rgba(227,30,36,.3); }

/* ============ Doküman ============ */
.doc-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px;
    height: 100%;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.doc-card:hover { box-shadow: var(--shadow-md); border-color: transparent; transform: translateY(-4px); }
.doc-icon { width: 52px; height: 52px; border-radius: 13px; background: var(--accent-soft); color: var(--accent); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 16px; }
.doc-card h5 { font-size: 15px; font-weight: 800; color: var(--navy); }
.doc-card p { font-size: 13px; color: var(--muted); flex: 1; }

/* ============ Footer ============ */
.footer { background: #060f27; color: #fff; padding: 70px 0 26px; }
.footer-brand img { height: 50px; width: auto; object-fit: contain; }
.footer-brand { font-weight: 800; font-size: 1.5rem; color: #fff; }
.footer-brand .accent { color: var(--accent); }
.footer-desc { color: #7c8aa5; font-size: 13px; max-width: 340px; margin-top: 16px; line-height: 1.8; }
.footer-title { color: #fff; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 18px; }
.footer-links a { display: block; color: #8b98b3; text-decoration: none; font-size: 13px; margin-bottom: 9px; transition: var(--transition); }
.footer-links a:hover { color: var(--accent); padding-left: 5px; }
.social-icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,.07);
    display: inline-flex; align-items: center; justify-content: center;
    color: #9aa7bd;
    font-size: 1rem;
    margin-right: 8px;
    text-decoration: none;
    transition: var(--transition);
}
.social-icon:hover { background: var(--accent); color: #fff; transform: translateY(-3px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); margin-top: 48px; padding-top: 22px; }
.footer-bottom p { color: #56637d; font-size: 12px; margin: 0; }
.footer-bottom a { color: #7c8aa5; text-decoration: none; font-size: 12px; }
.footer-bottom a:hover { color: var(--accent); }

/* ============ Scroll Top ============ */
.scroll-top {
    position: fixed;
    bottom: 26px; right: 26px;
    width: 46px; height: 46px;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    opacity: 0; visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: 0 8px 22px rgba(227,30,36,.35);
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--accent-2); transform: translateY(-3px); }

/* ============ Reveal ============ */
.reveal { opacity: 0; transform: translateY(26px); transition: all .7s cubic-bezier(.4,0,.2,1); }
.reveal.show { opacity: 1; transform: none; }

/* ============ 404 ============ */
.error-404 { text-align: center; padding: 120px 0; background: var(--bg-soft); }
.error-404 h1 { font-size: 7rem; font-weight: 800; color: var(--accent); line-height: 1; }
.error-404 h2 { color: var(--navy); font-weight: 800; }

/* ============ Responsive ============ */
@media (max-width: 991px) {
    .hero-slide { min-height: auto; padding: 120px 0 90px; }
    .hero-media { margin-top: 46px; }
    .navbar-collapse { background: #fff; border-radius: 14px; padding: 18px; margin-top: 12px; box-shadow: var(--shadow-md); }
    section { padding: 70px 0; }
}
@media (max-width: 575px) {
    .hero h1 { letter-spacing: -1.5px; }
    .hero-media img, .hero-media video { height: 300px; }
    .hero-mini-stats { flex-wrap: wrap; gap: 16px; }
}
