/* ============================================
   TURCAN DİZEL - REFINED INDUSTRIAL DESIGN
   Light Theme - Professional Edition
   ============================================ */

/* Typography - Refined Industrial */
@font-face {
    font-family: 'Ethnocentric';
    src: url('/fonts/Ethnocentric-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
    /* Core Brand Colors */
    --brand-grey: #686a6c;
    --brand-grey-light: #8a8c8e;
    --brand-grey-dark: #4a4c4e;

    /* Background Palette */
    --bg-primary: #ffffff;
    --bg-secondary: #fdfdfe;
    --bg-tertiary: #f9f9fa;
    --bg-elevated: #ffffff;

    /* Accent - Industrial Blue */
    --accent-primary: #729BB7;
    --accent-secondary: #8FB3CC;
    --accent-dark: #5A82A0;
    --accent-glow: rgba(114, 155, 183, 0.18);

    /* Text Hierarchy — başlıklar antrasit (logo grisi), siyah yok */
    --text-primary: #3d414a;
    --text-secondary: #4a4a4a;
    --text-tertiary: #686a6c;
    --text-muted: #9ca3af;

    /* Borders & Dividers */
    --border-light: rgba(0, 0, 0, 0.06);
    --border-medium: rgba(0, 0, 0, 0.1);
    --border-accent: rgba(114, 155, 183, 0.32);

    /* Refined Shadows */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.12);
    --shadow-accent: 0 4px 24px rgba(114, 155, 183, 0.28);
    --shadow-accent-lg: 0 8px 40px rgba(114, 155, 183, 0.34);

    /* Gradients */
    --gradient-accent: linear-gradient(135deg, #729BB7 0%, #5A82A0 100%);
    --gradient-subtle: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
    --gradient-brand: linear-gradient(135deg, #686a6c 0%, #4a4c4e 100%);

    /* Motion */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    --transition-fast: 0.15s var(--ease-out-quart);
    --transition-base: 0.25s var(--ease-out-expo);
    --transition-slow: 0.4s var(--ease-out-expo);

    /* Spacing Scale */
    --space-xs: 0.5rem;
    --space-sm: 0.75rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;

    /* Mockup paper palette (hero-8-polaroid-white) */
    --paper: #f5f3ee;
    --paper-2: #ecead9;
    --paper-warm: #efeadb;
    --ink: #1c1f24;
    --ink-2: #2b3038;
    --ink-muted: #65686e;
    --rule: rgba(28,31,36,.14);
    --anthra: #3d414a;
    --blue-deep: #3f6280;
    --photo-mat: #faf6ec;
}

/* ============================================
   RESET & BASE
   ============================================ */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: clip;   /* clip → yatay taşmayı keser ama position:sticky'yi bozmaz */
    width: 100%;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-primary);
    color: var(--text-secondary);
    line-height: 1.65;
    overflow-x: clip;
    width: 100%;
    max-width: 100%;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

a:hover {
    color: var(--accent-primary);
}

::selection {
    background: var(--accent-primary);
    color: #ffffff;
}

::-moz-selection {
    background: var(--accent-primary);
    color: #ffffff;
}

/* ============================================
   TYPOGRAPHY SYSTEM
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.15;
    color: var(--anthra);
    letter-spacing: -0.02em;
}

.display-font {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    letter-spacing: -0.03em;
}

p {
    color: var(--text-secondary);
}

/* ============================================
   NAVIGATION - Refined Header
   ============================================ */

.navbar-custom {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.125rem 0;
    background: transparent;
    transition: padding var(--transition-base), box-shadow var(--transition-base);
}

.navbar-custom.scrolled {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    padding: 0.625rem 0;
    box-shadow: 0 6px 22px -16px rgba(28,31,36,.18);
}

.container-custom {
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.navbar-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 1.5rem;
}

/* Brand Logo */
.navbar-brand-custom {
    display: flex;
    align-items: center;
    gap: 18px;
    text-decoration: none;
    transition: var(--transition-base);
    flex-shrink: 0;
    color: var(--ink);
}

.navbar-logo {
    height: 94px;
    width: auto;
    display: block;
    transition: transform var(--transition-base), filter var(--transition-base), height var(--transition-base);
}

.navbar-brand-meta {
    padding-left: 18px;
    border-left: 1px solid var(--rule);
    line-height: 1.35;
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .18em;
    color: var(--ink-muted);
    text-transform: uppercase;
    transition: opacity var(--transition-base);
}

.navbar-brand-meta b {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-weight: 400;
    display: block;
    font-size: 22px;
    letter-spacing: 0;
    color: var(--blue-deep);
    margin-bottom: 2px;
    text-transform: none;
}

.navbar-brand-custom:hover .navbar-logo {
    transform: scale(1.03);
}

.navbar-custom.scrolled .navbar-logo {
    height: 52px;
}

.navbar-custom.scrolled .navbar-brand-meta {
    opacity: 0;
    width: 0;
    padding-left: 0;
    border-left: 0;
    overflow: hidden;
    transition: opacity var(--transition-fast), width var(--transition-base), padding var(--transition-base);
}

@media screen and (max-width: 991px) {
    .navbar-brand-meta {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .navbar-logo {
        height: 50px;
    }
    .navbar-wrapper {
        gap: 1rem;
    }
}

/* Nav Layout */
.navbar-collapse {
    display: flex !important;
    align-items: center;
    margin-left: auto;
    justify-content: end;
}

.navbar-nav {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 0.125rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    display: block;
}

/* Nav Links */
.nav-link-custom {
    display: inline-block;
    color: #65686e !important;
    text-decoration: none;
    font-size: 0.95rem;
    padding: 0.55rem 0.7rem !important;
    position: relative;
    transition: background var(--transition-fast), color var(--transition-fast);
    border-radius: 6px;
    font-weight: 700;
    background: transparent;
    letter-spacing: 0;
    text-transform: uppercase;
}

.nav-link-custom::after {
    display: none;
}

.nav-link-custom:hover {
    color: var(--blue-deep) !important;
    background: #d9e8ec;
}

/* Nav CTA */
.nav-item-cta {
    margin-left: 0.75rem;
}

.nav-link-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem !important;
    background: var(--gradient-accent);
    color: #ffffff !important;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: var(--transition-base);
    box-shadow: var(--shadow-xs);
}

.nav-link-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-accent);
    color: #ffffff !important;
}

.nav-link-cta i {
    font-size: 0.8125rem;
    transition: transform var(--transition-fast);
}

.nav-link-cta:hover i {
    transform: translateX(2px);
}

/* Mobile Toggle */
.navbar-toggler {
    display: none;
    border: none !important;
    background: transparent !important;
    padding: 0.5rem !important;
    cursor: pointer;
}

.navbar-toggler-icon-custom {
    color: var(--ink);
    font-size: 1.5rem;
}

/* Mobile Nav */
@media (max-width: 991px) {
    .navbar-toggler {
        display: block;
    }

    .navbar-collapse {
        display: none !important;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgb(246 250 255 / 98%);
        backdrop-filter: blur(20px);
        padding: 1.5rem 2rem 2rem;
        border-bottom: 1px solid var(--rule);
        box-shadow: var(--shadow-lg);
    }

    .navbar-collapse.show {
        display: block !important;
    }

    .navbar-nav {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 0;
    }

    .nav-link-custom {
        padding: 1rem 0 !important;
        border-radius: 0;
    }

    .nav-link-custom::after {
        display: none;
    }

    .nav-item-cta {
        margin-left: 0;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid var(--border-light);
    }

    .nav-link-cta {
        width: 100%;
        justify-content: center;
        padding: 1rem !important;
    }

    .container-custom {
        padding: 0 1.5rem;
        flex-wrap: wrap;
    }
}

/* ============================================
   NAV DROPDOWN - Hizmetlerimiz
   ============================================ */

.nav-item-dropdown {
    position: relative;
}

.nav-item-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 0.75rem;
    background: transparent;
    pointer-events: auto;
}

.nav-link-dropdown {
    display: inline-flex !important;
    align-items: center;
    gap: 0.4rem;
}

.nav-dropdown-caret {
    font-size: 0.7rem;
    line-height: 1;
    transition: transform var(--transition-base);
}

.nav-item-dropdown:hover .nav-dropdown-caret,
.nav-item-dropdown.open .nav-dropdown-caret {
    transform: rotate(-180deg);
}

.nav-dropdown-menu {
    list-style: none;
    margin: 0;
    padding: 0.5rem;
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    min-width: 280px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity var(--transition-base), transform var(--transition-base), visibility var(--transition-base);
    z-index: 1000;
}

.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: var(--bg-elevated);
    border-top: 1px solid var(--border-light);
    border-left: 1px solid var(--border-light);
}

.nav-item-dropdown:hover .nav-dropdown-menu,
.nav-item-dropdown:focus-within .nav-dropdown-menu,
.nav-item-dropdown.open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 0.85rem;
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.3;
    transition: background var(--transition-fast), color var(--transition-fast);
}

.nav-dropdown-link i {
    width: 22px;
    color: var(--accent-primary);
    font-size: 0.95rem;
    flex-shrink: 0;
    text-align: center;
}

.nav-dropdown-link:hover,
.nav-dropdown-link:focus {
    background: var(--accent-glow);
    color: var(--accent-primary);
}

.nav-dropdown-divider {
    height: 1px;
    background: var(--border-light);
    margin: 0.4rem 0.4rem;
}

/* Mobile dropdown */
@media (max-width: 991px) {
    .nav-item-dropdown::after {
        display: none;
    }

    .nav-dropdown-caret {
        margin-left: auto;
        font-size: 0.85rem;
    }

    .nav-link-dropdown {
        justify-content: space-between;
        width: 100%;
    }

    .nav-dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        max-height: 0;
        overflow: hidden;
        padding: 0 0.25rem;
        margin: 0;
        border: none;
        border-radius: 0;
        box-shadow: none;
        background: transparent;
        min-width: 0;
        transition: max-height 0.3s ease, padding 0.3s ease;
    }

    .nav-dropdown-menu::before {
        display: none;
    }

    .nav-item-dropdown.open .nav-dropdown-menu {
        max-height: 600px;
        padding: 0.5rem 0.25rem 0.25rem;
        transform: none;
    }

    .nav-dropdown-link {
        padding: 0.85rem 1rem;
        font-size: 0.9rem;
        border-bottom: 1px solid var(--border-light);
        border-radius: 0;
    }

    .nav-dropdown-menu li:last-child .nav-dropdown-link {
        border-bottom: none;
    }

    .nav-dropdown-divider {
        display: none;
    }
}

/* ============================================
   HERO SECTION — Split: left=polaroid stage, right=bg image shows through
   ============================================ */

.hero-section.hero-polaroid {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    height: 100vh;
    max-height: 1080px;
    background: #ffffff url('/images/hero4-blue-new.png') center center / cover no-repeat;
    color: var(--anthra);
    padding-top: 0;
}

/* White veil over LEFT half so polaroid stage sits on a clean light area
   while the original photo on the right side of the bg image stays visible. */
.hero-section.hero-polaroid::before {
    content: "";
    position: absolute;
    inset: 0 50% 0 0;
    background: linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.92) 70%, rgba(255,255,255,.0) 100%);
    z-index: 1;
    pointer-events: none;
}

@media (max-width: 991px) {
    .hero-section.hero-polaroid {
        height: auto;
        min-height: auto;
        max-height: none;
    }
    .hero-section.hero-polaroid::before {
        inset: 0;
        background: rgba(255,255,255,.94);
    }
}

/* Atmospheric overlays were warm/yellow — removed to keep bg neutral.
   .hero-fog, .hero-grain, .hero-pattern-dots, .hero-vignette markup
   stays in cshtml but is suppressed visually here. */
.hero-fog,
.hero-grain,
.hero-pattern-dots,
.hero-vignette {
    display: none !important;
}

/* Big outlined year, peeks behind frame (aligned with polaroid center) */
.hero-year-mark {
    position: absolute;
    top: 50%;
    left: calc(15% + clamp(170px, 18vw, 280px)); /* 15% gutter + half photo width */
    transform: translate(-50%, -55%);
    z-index: 5;
    pointer-events: none;
}
.hero-yr {
    position: absolute; top: 0; left: 0;
    font-family: 'Instrument Serif', serif;
    font-weight: 300;
    font-size: clamp(110px, 10vw, 200px);
    line-height: .85;
    letter-spacing: -.04em;
    color: transparent;
    -webkit-text-stroke: 1px rgba(61,65,74,.18);
    transform: translate(-50%, -50%);
    white-space: nowrap;
    opacity: 0;
    transition: opacity 1.4s ease;
}
.hero-yr i {
    font-style: italic;
    -webkit-text-stroke: 1px rgba(63,98,128,.4);
}
.hero-yr.is-active { opacity: 1; }

/* Polaroid photo stage — left-aligned with caption (15% gutter) */
.hero-photo-stage {
    position: absolute;
    top: 235px;          /* biraz daha aşağıda */
    left: 15%;           /* matches .hero-history-content left padding */
    right: 50%;
    bottom: 170px;       /* leaves room for söz */
    z-index: 6;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    pointer-events: none;
}
.hero-photo-stack {
    position: relative;
    width: clamp(340px, 36vw, 560px);
    aspect-ratio: 4 / 3.6;
}
.hero-frame {
    position: absolute; inset: 0;
    background: #ffffff;
    padding: 18px 18px 64px;
    box-shadow:
        0 50px 90px -28px rgba(28,31,36,.35),
        0 18px 32px -10px rgba(28,31,36,.22),
        0 0 0 1px rgba(28,31,36,.06),
        inset 0 0 0 1px rgba(255,255,255,.6);
    opacity: 0;
    transition: opacity 1.4s ease, transform 1.4s ease;
    transform-origin: center;
}
.hero-f1 { transform: rotate(-2.2deg) translateY(2%) scale(.98); }
.hero-f2 { transform: rotate(1.2deg)  translateY(2%) scale(.98); }
.hero-f3 { transform: rotate(-.6deg)  translateY(2%) scale(.98); }
.hero-f4 { transform: rotate(2deg)    translateY(2%) scale(.98); }
.hero-frame.is-active { opacity: 1; }
.hero-f1.is-active { transform: rotate(-2.2deg) translateY(0) scale(1); }
.hero-f2.is-active { transform: rotate(1.2deg)  translateY(0) scale(1); }
.hero-f3.is-active { transform: rotate(-.6deg)  translateY(0) scale(1); }
.hero-f4.is-active { transform: rotate(2deg)    translateY(0) scale(1); }

.hero-frame::before {
    content: ""; position: absolute; inset: 0; pointer-events: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='.5'/></svg>");
    mix-blend-mode: multiply; opacity: .2;
}
.hero-photo-inner {
    position: relative; width: 100%; height: 100%; overflow: hidden;
    background: #0e1116;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,.18), inset 0 0 32px rgba(0,0,0,.25);
}
.hero-photo-inner img {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; display: block;
}
.hero-f1 .hero-photo-inner img { filter: sepia(.5) saturate(.85) contrast(1.05) brightness(.94); }
.hero-f2 .hero-photo-inner img { filter: saturate(.85) contrast(1.06) brightness(.92); }
.hero-f3 .hero-photo-inner img { filter: saturate(.9) contrast(1.04) brightness(.96); }
.hero-f4 .hero-photo-inner img { filter: saturate(.92) contrast(1.05) brightness(.95); }

.hero-mat-caption {
    position: absolute; left: 16px; right: 16px; bottom: 14px;
    display: flex; justify-content: space-between; align-items: baseline;
    font-family: 'Caveat', cursive;
    font-weight: 600;
    color: var(--anthra);
    font-size: 20px;
    letter-spacing: .01em;
}
.hero-mat-caption span:first-child {
    font-size: 22px; font-weight: 700; color: var(--blue-deep);
}
.hero-mat-caption span:last-child {
    font-size: 15px; color: var(--anthra); font-weight: 500; opacity: .75;
}

/* Tape strip on top of polaroid */
.hero-frame::after {
    content: ""; position: absolute;
    top: -10px; left: 50%;
    transform: translateX(-50%) rotate(-2deg);
    width: 74px; height: 22px;
    background: rgba(200,190,160,.55);
    border: 1px solid rgba(180,170,140,.65);
    box-shadow: 0 4px 10px -4px rgba(28,31,36,.25);
    pointer-events: none;
}

/* Left foreground content (captions only — timeline removed) — pinned to LEFT half */
.hero-history-content {
    position: absolute; top: 0; bottom: 0; left: 0; right: 50%;
    z-index: 8;
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 120px 56px 48px 15%; /* left = 15% of viewport */
    color: var(--anthra);
    pointer-events: none;
}
.hero-history-content > * { pointer-events: auto; }

.hero-timeline {
    display: flex; align-items: center; gap: 24px;
    pointer-events: none;
}
.hero-tl-label {
    font-family: 'Instrument Serif', serif;
    font-size: 22px; letter-spacing: .02em;
    font-weight: 400; font-style: italic;
    color: var(--anthra); line-height: 1;
}
.hero-tl-rail {
    flex: 1; height: 1px;
    background: rgba(61,65,74,.25);
    position: relative; max-width: 320px;
}
.hero-tl-dot {
    position: absolute; top: 50%;
    width: 9px; height: 9px; border-radius: 50%;
    background: rgba(61,65,74,.35);
    transform: translate(-50%, -50%);
    transition: all .5s ease;
}
.hero-tl-dot:nth-child(1) { left: 0%; }
.hero-tl-dot:nth-child(2) { left: 50%; }
.hero-tl-dot:nth-child(3) { left: 100%; }
.hero-tl-dot.is-active {
    background: var(--blue-deep);
    box-shadow: 0 0 0 5px rgba(63,98,128,.18);
    width: 12px; height: 12px;
}

/* Tek sabit söz — eğik, italik, hafif silik, karizmatik */
.hero-quote {
    margin: 0;
    max-width: 480px;
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(30px, 3.4vw, 52px);
    line-height: 1.18;
    letter-spacing: -0.01em;
    color: var(--anthra);
    opacity: 0.48;
    transform: rotate(-2deg);
    transform-origin: left bottom;
    position: relative;
}
.hero-quote::before {
    content: "\201C";
    margin-right: 0.04em;
    color: var(--blue-deep);
    opacity: 0.55;
}
.hero-quote::after {
    content: "\201D";
    margin-left: 0.04em;
    color: var(--blue-deep);
    opacity: 0.55;
}

.hero-caption-block {
    position: relative;
    max-width: 420px;
    min-height: 140px;
}
.hero-cap {
    position: absolute; left: 0; right: 0; bottom: 0;
    opacity: 0;
    transition: opacity 1.4s ease;
}
.hero-cap.is-active { opacity: 1; }
.hero-cap-pre {
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--blue-deep);
    font-weight: 600;
    margin-bottom: 10px;
    display: flex; align-items: center; gap: 12px;
}
.hero-cap-pre::before {
    content: "";
    width: 30px; height: 1px;
    background: var(--blue-deep);
}
.hero-cap-year {
    font-family: 'Instrument Serif', serif;
    font-weight: 400;
    font-size: clamp(28px, 2.6vw, 40px);
    line-height: 1.05;
    letter-spacing: -.015em;
    color: var(--anthra);
    margin-bottom: 8px;
}
.hero-cap-year i {
    font-style: italic;
    color: var(--blue-deep);
    font-weight: 300;
}
.hero-cap-text {
    /* Yatay (italik) yerine düz Outfit — başlık italikliği aksanıyla kontrast yaratır */
    font-family: 'Outfit', sans-serif;
    font-style: normal;
    font-size: 22px;
    line-height: 1.55;
    color: var(--anthra);
    font-weight: 400;
    max-width: 420px;
}
.hero-cap-text b {
    /* "Gürol Turcan" vurgusu — hafif kalınlık, antrasit, italik değil */
    font-style: normal;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    color: var(--anthra);
    letter-spacing: 0;
}

@media (max-width: 991px) {
    /* Mobilde absolute yerleşim fotoğraf ile açıklamayı üst üste bindiriyordu.
       Normal akışa alıp dikey istifliyoruz: polaroid üstte, açıklama altında. */
    .hero-photo-stage {
        position: relative;
        inset: auto;
        padding: 150px 24px 0;
        justify-content: center;
    }
    .hero-photo-stack {
        width: min(72vw, 420px);
    }
    .hero-history-content {
        position: relative;
        inset: auto;
        justify-content: flex-start;
        padding: 32px 28px 52px;
    }
    .hero-caption-block {
        min-height: 180px;
    }
    .hero-year-mark {
        display: none;
    }
}
@media (max-width: 600px) {
    .hero-photo-stack {
        width: min(82vw, 320px);
    }
    .hero-cap-year { font-size: 26px; }
    .hero-cap-text { font-size: 15px; }
    .hero-mat-caption { font-size: 18px; }
    .hero-mat-caption span:first-child { font-size: 19px; }
    .hero-mat-caption span:last-child { font-size: 13px; }
}

/* Geniş ama KISA yükseklikli masaüstü ekranlarda (ör. 1366x768, 1440x900) polaroid
   ve açıklama mutlak yerleşimde üst üste biniyordu. Bu ekranlarda sol yarıyı normal
   dikey akışa alıyoruz: fotoğraf üstte, açıklama altında. 1080p düzeni etkilenmez. */
@media (min-width: 992px) and (max-height: 850px) {
    .hero-section.hero-polaroid {
        height: auto;
        min-height: 100vh;
        max-height: none;
    }
    .hero-photo-stage {
        position: relative;
        inset: auto;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        padding: 110px 0 0 15%;
        justify-content: flex-start;
    }
    .hero-history-content {
        position: relative;
        inset: auto;
        right: auto;
        justify-content: flex-start;
        padding: 28px 56px 56px 15%;
    }
    .hero-year-mark {
        display: none;
    }
}

/* ============================================
   GENERIC CTA BUTTON
   (used on About, Services, error pages)
   ============================================ */

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 1rem 2rem;
    background: var(--gradient-accent);
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: var(--radius-md);
    transition: var(--transition-base);
    box-shadow: var(--shadow-accent);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.25) 0%, transparent 50%);
    opacity: 0;
    transition: var(--transition-fast);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-accent-lg);
    color: #ffffff;
}

.cta-button:hover::before {
    opacity: 1;
}

.cta-button i {
    font-size: 0.875rem;
    transition: transform var(--transition-fast);
}

.cta-button:hover i {
    transform: translateX(4px);
}

/* ============================================
   SECTIONS - Common
   ============================================ */

.section {
    padding: 5rem 0;
    position: relative;
    transition: opacity var(--transition-slow), transform var(--transition-slow), background var(--transition-base);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.875rem;
    transition: color var(--transition-base), gap var(--transition-fast);
}

.section-label::before,
.section-label::after {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--accent-primary);
    opacity: 0.5;
    transition: width var(--transition-base), background var(--transition-base), opacity var(--transition-base);
}

.section-title {
    font-size: clamp(2.25rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--anthra);
    margin-bottom: 0.875rem;
    letter-spacing: -0.02em;
    transition: color var(--transition-base), transform var(--transition-base);
}

.section-subtitle {
    font-size: 1.0625rem;
    color: var(--text-tertiary);
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.7;
    transition: color var(--transition-base);
}

/* ============================================
   SABİT SAYFA ARKA PLANI (FULL-COVER)
   Tek resim tüm ekranı kaplar, scroll'da sabit (fixed) durur.
   Resim her view'da farklı olabilir: view içinde
       @{ ViewData["PageBg"] = "/images/bg/xxx.png"; }
   ile seçilir; _Layout bunu --page-bg değişkenine basar.
   mix-blend-mode: multiply → resmin beyaz/açık zemini kaybolur,
   yalnızca teknik çizgiler kalır; saydam bölümlerin altında görünür.
   ============================================ */

.bg-parts-decor {
    position: fixed;
    inset: 0;
    z-index: -1;                /* body (position:relative) içinde tüm içeriğin arkasında */
    pointer-events: none;
    opacity: var(--page-bg-opacity, 0.1);   /* varsayılan 0.1; view başına ViewData["PageBgOpacity"] ile ayarlanabilir */
    mix-blend-mode: multiply;
    background-image: var(--page-bg, url('/images/bg/breadcrumb-bg.png'));
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;     /* tek resim tüm ekranı kaplasın */
    background-attachment: fixed;
}

/* Mobilde background-attachment:fixed titrek olabilir — akışa al, ama görünür kalsın. */
@media (max-width: 991px) {
    .bg-parts-decor {
        background-attachment: scroll;
    }
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about-section {
    background: var(--bg-secondary);
    position: relative;
    transition: background var(--transition-base);
    background-size: cover;
    background-position: unset;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 10%, var(--border-medium), transparent 90%);
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    background: #ffffffc9;
    height: 100%;
    backdrop-filter: blur(6px);
    padding: 2rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text-content {
    padding-right: 1.5rem;
}

.about-text {
    font-size: 1.0625rem;
    line-height: 1.85;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    text-align: justify;
}

/* About-section vurgu span'leri — düz metin gibi davransınlar (rengi/kalınlığı sıfırla). */
.highlight,
.highlight-accent {
    color: inherit;
    font-weight: inherit;
}

/* Stats */
.stats-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.stat-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 1.75rem 1.25rem;
    text-align: center;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-slow);
}

.stat-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-primary);
    line-height: 1;
    margin-bottom: 0.375rem;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

@media (max-width: 991px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-text-content {
        padding-right: 0;
    }
}

@media (max-width: 640px) {
    .stats-container {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services-section {
    background: var(--bg-primary);
    position: relative;
    transition: background var(--transition-base);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem;
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 2rem;
}

.service-card {
    flex: 0 1 290px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 2.25rem 1.75rem;
    text-align: center;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-accent);
    opacity: 0;
    transition: var(--transition-base);
}

.service-card:hover {
    border-color: transparent;
    transform: translateY(-6px);
    box-shadow: var(--shadow-accent);
}

.service-card:hover::before {
    opacity: 0.04;
}

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    border-radius: var(--radius-md);
    transition: var(--transition-base);
}

.service-icon i {
    font-size: 1.5rem;
    color: var(--accent-primary);
    transition: var(--transition-base);
}

.service-icon-img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    transition: transform var(--transition-base);
}

.service-card:hover .service-icon-img {
    transform: scale(1.08);
}

.service-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.service-card p {
    font-size: 0.9375rem;
    color: var(--text-tertiary);
    line-height: 1.65;
    margin: 0;
}

.service-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

@media (max-width: 1200px) {
    .service-card {
        flex-basis: calc(50% - 0.625rem);
    }
}

@media (max-width: 640px) {
    .service-card {
        flex-basis: 100%;
    }
}

/* ============================================
   CAREER SECTION
   ============================================ */

.career-section {
    background: var(--bg-secondary);
    position: relative;
    transition: background var(--transition-base);
}

.career-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 10%, var(--border-medium), transparent 90%);
}

.career-content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    padding: 0 2rem;
}

.career-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 3.5rem 3rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.career-card > * {
    position: relative;
    z-index: 1;
}

.career-text {
    font-size: 1.0625rem;
    line-height: 1.85;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
}

.career-text:last-of-type {
    margin-bottom: 2rem;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: transparent;
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    border: 2px solid var(--accent-primary);
    border-radius: var(--radius-md);
    transition: background var(--transition-base), color var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base), transform var(--transition-base), gap var(--transition-fast);
}

.contact-button:hover {
    background: var(--accent-primary);
    color: #ffffff;
    box-shadow: var(--shadow-accent);
    transform: translateY(-2px);
    gap: 0.625rem;
}

.contact-button i {
    transition: transform var(--transition-fast);
}

.contact-button:hover i {
    transform: translateX(2px);
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-section {
    background: var(--bg-primary);
    position: relative;
    transition: background var(--transition-base);
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.contact-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 2.25rem 1.75rem;
    text-align: center;
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.contact-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-glow);
    border-radius: 50%;
    transition: var(--transition-base);
}

.contact-icon i {
    font-size: 1.375rem;
    color: var(--accent-primary);
    transition: var(--transition-base);
}

.contact-card:hover .contact-icon {
    background: var(--accent-primary);
    transform: scale(1.05);
}

.contact-card:hover .contact-icon i {
    color: #ffffff;
}

.contact-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.625rem;
}

.contact-card p {
    font-size: 0.9375rem;
    color: var(--text-tertiary);
    line-height: 1.6;
    margin: 0;
}

.phone-link,
.email-link {
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-fast), transform var(--transition-fast), text-decoration var(--transition-fast);
}

.phone-link:hover,
.email-link:hover {
    color: var(--accent-dark);
    transform: translateX(2px);
    text-decoration: underline;
}

.map-link-small {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    margin-top: 0.625rem;
    color: var(--accent-primary);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color var(--transition-fast), gap var(--transition-fast), transform var(--transition-fast);
}

.map-link-small:hover {
    color: var(--accent-dark);
    gap: 0.5rem;
    transform: translateX(2px);
}

.map-link-small i {
    font-size: 0.6875rem;
    transition: transform var(--transition-fast);
}

.map-link-small:hover i {
    transform: translateX(2px);
}

/* Map */
.map-container {
    margin-top: 2.5rem;
}

.map-wrapper {
    position: relative;
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    transition: box-shadow var(--transition-base), border-color var(--transition-base), transform var(--transition-base);
}

.map-wrapper:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-primary);
    transform: translateY(-2px);
}

.map-wrapper iframe {
    display: block;
    width: 100%;
    height: 420px;
    border: 0;
}

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .map-wrapper iframe {
        height: 280px;
    }
}

/* ============================================
   FORMLAR (İletişim + Kariyer/Staj) — ortak stil
   ============================================ */
.site-form-wrap {
    max-width: 720px;
    margin: 0 auto 3rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    box-shadow: var(--shadow-sm);
}

.site-form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.4rem;
}

.site-form-sub {
    color: var(--text-tertiary);
    margin-bottom: 1.5rem;
}

.site-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.site-field {
    margin-bottom: 1rem;
}

.site-field label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.4rem;
}

.site-field label span {
    color: var(--accent-primary);
}

.site-field input,
.site-field textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-primary);
    background: var(--bg-secondary);
    transition: var(--transition-base);
}

.site-field input:focus,
.site-field textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    background: var(--bg-elevated);
    box-shadow: 0 0 0 3px rgba(63, 98, 128, 0.12);
}

.site-field textarea {
    resize: vertical;
}

/* Dosya (CV) yükleme alanı */
.site-field input[type="file"] {
    padding: 0.55rem 0.75rem;
    background: var(--bg-secondary);
    cursor: pointer;
}

.site-field input[type="file"]::file-selector-button {
    margin-right: 0.85rem;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 999px;
    background: var(--accent-primary);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-base);
}

.site-field input[type="file"]::file-selector-button:hover {
    background: var(--accent-dark);
}

.site-field-hint {
    margin-top: 0.35rem;
    font-size: 0.78rem;
    color: var(--text-tertiary);
}

/* Honeypot — ekran dışı, erişilebilirlikten gizli */
.site-hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.site-form-submit {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 0.5rem;
    padding: 0.9rem 2rem;
    background: var(--accent-primary);
    color: #fff;
    border: none;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-base);
    box-shadow: 0 10px 28px -12px rgba(63, 98, 128, 0.6);
}

.site-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px -12px rgba(63, 98, 128, 0.7);
}

.site-form-kvkk {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: var(--text-tertiary);
}

.site-form-kvkk a {
    color: var(--accent-primary);
    text-decoration: underline;
}

.site-alert {
    max-width: 720px;
    margin: 0 auto 1.5rem;
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.site-alert-success {
    background: #e6f5ec;
    color: #1d7a44;
    border: 1px solid #b7e2c7;
}

.site-alert-error {
    background: #fdecec;
    color: #c0392b;
    border: 1px solid #f3c2c2;
}

@media (max-width: 600px) {
    .site-form-row {
        grid-template-columns: 1fr;
    }

    .site-form-wrap {
        padding: 1.5rem;
    }
}

/* ============================================
   FOOTER - Gelişmiş Tasarım
   ============================================ */

.footer-custom {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-light);
    padding: 4rem 0 1.5rem;
    transition: background var(--transition-base), border-color var(--transition-base);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-brand-column {
    max-width: 300px;
}

.footer-brand {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
}

.footer-logo {
    height: auto;
    width: auto;
    max-width: 340px;
    max-height: 130px;
    opacity: 1;
    filter: none;
    transition: var(--transition-base);
}

.footer-logo:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

/* Footer logosu mobilde küçülür, ultra small cihazlarda biraz daha. */
@media (max-width: 768px) {
    .footer-logo {
        height: 120px;
    }
}

@media (max-width: 400px) {
    .footer-logo {
        height: 95px;
    }
}

.footer-tagline {
    font-size: 0.9375rem;
    color: var(--text-tertiary);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.footer-founder {
    font-size: 0.875rem;
    color: var(--accent-primary);
    font-weight: 600;
    margin: 0;
}

.footer-column-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color var(--transition-base);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links li {
    margin: 0;
}

.footer-links a {
    color: var(--text-tertiary);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: -1rem;
    opacity: 0;
    transition: var(--transition-fast);
    color: var(--accent-primary);
}

.footer-links a:hover {
    color: var(--accent-primary);
    padding-left: 1rem;
}

.footer-links a:hover::before {
    opacity: 1;
    left: 0;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-contact li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.footer-contact i {
    color: var(--accent-primary);
    font-size: 1.125rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
    transition: color var(--transition-base), transform var(--transition-fast);
}

.footer-contact li:hover i {
    transform: scale(1.1);
}

.footer-contact strong {
    display: block;
    font-size: 0.8125rem;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.375rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-contact p {
    font-size: 0.875rem;
    color: var(--text-tertiary);
    margin: 0;
    line-height: 1.6;
}

.footer-contact a {
    color: var(--text-tertiary);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-contact a:hover {
    color: var(--accent-primary);
}

.footer-kvkk {
    margin-top: 2rem;
}

.footer-kvkk-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding-top: 1.5rem;
}

.footer-kvkk-links a {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-kvkk-links a:hover {
    color: var(--accent-primary);
}

.footer-kvkk-sep {
    color: var(--border-light);
    font-size: 0.75rem;
}

.footer-bottom {
    margin-top: 1.5rem;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background: var(--border-light);
    margin: 0 0 1.5rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin: 0;
}

.footer-credit {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin: 0;
}

.footer-credit a {
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-fast);
}

.footer-credit a:hover {
    color: var(--accent-dark);
    text-decoration: underline;
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .footer-brand-column {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .footer-custom {
        padding: 3rem 0 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-brand {
        justify-content: center;
    }

    .footer-column-title {
        text-align: center;
    }

    .footer-links {
        align-items: center;
    }

    .footer-contact {
        align-items: center;
        text-align: center;
    }

    .footer-contact li {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

/* ============================================
   FLOATING BUTTONS
   ============================================ */

.floating-buttons {
    position: fixed;
    bottom: 1.75rem;
    right: 1.75rem;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

/* ============================================================
   INJECTION CHARACTER (ENJEKSİYON ADAM) — ALTYAPI, YORUMDA
   Karakter görseli üretilince hem bu CSS bloğunu hem de
   _Layout.cshtml içindeki HTML bloğunu yorumdan çıkar.
   Karakter, WhatsApp butonunun hemen üstünde/yanında durur,
   sağdan kayarak girer ve diyalog baloncuğu gösterir.
   ============================================================ */
/*
.injection-character {
    position: fixed;
    right: 1.5rem;
    bottom: 6.5rem;
    z-index: 998;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
    pointer-events: none;
    transform: translateX(120%);
    opacity: 0;
    animation: injectionSlideIn 0.6s ease-out 1.2s forwards;
}

.injection-character-img {
    width: 120px;
    height: auto;
    display: block;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.25));
}

.injection-character-bubble {
    pointer-events: auto;
    max-width: 220px;
    background: #ffffff;
    color: var(--text-primary, #1a1a1a);
    border: 1px solid var(--border-light, #e5e5e5);
    border-radius: 14px;
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    line-height: 1.4;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    position: relative;
}

.injection-character-bubble::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 28px;
    width: 16px;
    height: 16px;
    background: #ffffff;
    border-right: 1px solid var(--border-light, #e5e5e5);
    border-bottom: 1px solid var(--border-light, #e5e5e5);
    transform: rotate(45deg);
}

@keyframes injectionSlideIn {
    to { transform: translateX(0); opacity: 1; }
}

@media (max-width: 768px) {
    .injection-character { display: none; }
}
*/

/* WhatsApp */
.whatsapp-btn {
    width: 54px;
    height: 54px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.625rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
    transition: transform var(--transition-base), box-shadow var(--transition-base), background var(--transition-base);
}

.whatsapp-btn:hover {
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.45);
    color: #ffffff;
}

/* Hafif yukarı-aşağı salınım (translate özelliği, hover'daki transform'a karışmaz) */
.whatsapp-btn {
    animation: whatsappBob 3.2s ease-in-out infinite;
}

@keyframes whatsappBob {
    0%, 100% {
        translate: 0 0;
    }
    50% {
        translate: 0 -6px;
    }
}

/* Scroll Top */
.scroll-top-btn {
    position: relative;
    width: 46px;
    height: 46px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-tertiary);
    text-decoration: none;
    font-size: 1.125rem;
    cursor: pointer;
    transition: background var(--transition-base), border-color var(--transition-base), color var(--transition-base), opacity var(--transition-base), visibility var(--transition-base), transform var(--transition-base), box-shadow var(--transition-base);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    box-shadow: var(--shadow-sm);
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: var(--shadow-accent);
}

/* Dışa doğru genişleyen pulse halkası (tema mavisi) */
.scroll-top-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
    box-shadow: 0 0 0 0 rgba(114, 155, 183, 0);
}

.scroll-top-btn.visible::after {
    animation: scrollTopPulse 2.2s ease-out infinite;
}

@keyframes scrollTopPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(114, 155, 183, 0.55);
    }
    70% {
        box-shadow: 0 0 0 16px rgba(114, 155, 183, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(114, 155, 183, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .scroll-top-btn.visible::after {
        animation: none;
    }
}

@media (max-width: 768px) {
    .floating-buttons {
        bottom: 1.25rem;
        right: 1.25rem;
    }

    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .scroll-top-btn {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }
}

/* ============================================
   MOBILE BOTTOM NAVIGATION
   Yalnızca mobilde (<=991px) görünür; masaüstünde gizli.
   ============================================ */
.mobile-bottom-nav {
    display: none;
}

@media (max-width: 991px) {
    .mobile-bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        height: 64px;
        align-items: stretch;
        justify-content: space-around;
        background: var(--bg-elevated);
        border-top: 1px solid var(--border-light);
        box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.08);
        padding: 0 0.25rem;
        /* iOS ana ekran çubuğu için güvenli alan */
        padding-bottom: env(safe-area-inset-bottom, 0);
        -webkit-backdrop-filter: saturate(180%) blur(8px);
        backdrop-filter: saturate(180%) blur(8px);
    }

    .mbn-item {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 3px;
        text-decoration: none;
        color: var(--text-tertiary);
        font-family: inherit;
        font-size: 0.68rem;
        font-weight: 600;
        letter-spacing: 0.01em;
        background: none;
        border: none;
        cursor: pointer;
        transition: color var(--transition-base);
    }

    .mbn-item i {
        font-size: 1.2rem;
        line-height: 1;
    }

    .mbn-item:hover,
    .mbn-item:focus-visible,
    .mbn-item.active {
        color: var(--blue-deep);
    }

    .mbn-item.active i {
        color: var(--accent-primary);
    }

    /* Ortadaki yükseltilmiş "Ara" butonu */
    .mbn-call {
        flex: 0 0 auto;
        position: relative;
        padding: 0 0.5rem;
    }

    .mbn-call .mbn-call-circle {
        width: 56px;
        height: 56px;
        margin-top: -22px;
        margin-bottom: 2px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--accent-primary) 0%, var(--blue-deep) 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 1.3rem;
        border: 4px solid var(--bg-elevated);
        box-shadow: 0 8px 22px -6px rgba(63, 98, 128, 0.6);
        transition: transform var(--transition-base), box-shadow var(--transition-base);
    }

    .mbn-call:hover .mbn-call-circle,
    .mbn-call:active .mbn-call-circle {
        transform: translateY(-2px);
        box-shadow: 0 12px 26px -6px rgba(63, 98, 128, 0.7);
    }

    .mbn-call span {
        color: var(--blue-deep);
    }

    /* İçerik ve footer alt menünün arkasında kalmasın */
    body {
        padding-bottom: 64px;
    }

    /* Floating butonları alt menünün üstüne taşı (çakışmayı önle) */
    .floating-buttons {
        bottom: 5.25rem;
    }
}

/* ============================================
   ANIMATIONS & TRANSITIONS
   ============================================ */

@keyframes customFadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes customFadeInDown {
    from {
        opacity: 0;
        transform: translateY(-16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes customFadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-24px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes customFadeInRight {
    from {
        opacity: 0;
        transform: translateX(24px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* Interactive Hover Effects */
.hover-lift {
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.hover-lift:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.hover-glow {
    transition: box-shadow var(--transition-base);
}

.hover-glow:hover {
    box-shadow: var(--shadow-accent);
}

.hover-scale {
    transition: transform var(--transition-base);
}

.hover-scale:hover {
    transform: scale(1.03);
}

/* Link Underline Animation */
.link-animated {
    position: relative;
    text-decoration: none;
    color: var(--accent-primary);
    transition: color var(--transition-fast);
}

.link-animated::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-base);
}

.link-animated:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Button Shine Effect */
.btn-shine {
    position: relative;
    overflow: hidden;
}

.btn-shine::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s var(--ease-out-expo);
}

.btn-shine:hover::after {
    left: 100%;
}

/* Card Reveal Effect */
.card-reveal {
    position: relative;
    overflow: hidden;
}

.card-reveal::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(114, 155, 183, 0.05), transparent);
    transition: left 0.6s var(--ease-out-expo);
}

.card-reveal:hover::before {
    left: 100%;
}

/* Icon Bounce on Hover */
.icon-bounce {
    transition: transform var(--transition-base);
}

.icon-bounce:hover {
    animation: float 1s ease-in-out infinite;
}

/* Text Gradient Animation */
.text-gradient-animated {
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary), var(--accent-primary));
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s linear infinite;
}

/* Focus States for Accessibility */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--accent-primary);
    outline-offset: 3px;
    border-radius: var(--radius-sm);
}

/* Smooth Image Loading */
img {
    transition: opacity var(--transition-base);
}

img[loading="lazy"].loaded,
img:not([loading="lazy"]) {
    opacity: 1;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .section {
        padding: 5rem 0;
    }

    .hero-content {
        padding: 1.5rem;
        left: auto;
        margin-top: 0;
        top: 15%;
    }

    .hero-subtitle {
        font-size: 0.875rem;
        letter-spacing: 0.2em;
    }

    .hero-description {
        font-size: 1rem;
    }

    .scroll-indicator {
        display: none;
    }

    .career-card {
        padding: 2.5rem 1.75rem;
    }
}

/* ============================================
   UTILITIES
   ============================================ */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mt-4 { margin-top: 4rem; }

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mb-4 { margin-bottom: 4rem; }

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ============================================
   PAGE HERO - Hakkımızda & Hizmet Sayfaları
   ============================================ */

.page-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Açık tema — antrasit logo görünür kalsın, breadcrumb beyaz zeminde okunur */
    background: url('/images/bg/breadcrumb-bg.png') center / cover no-repeat,
                linear-gradient(135deg, #e9eef3 0%, #f6f8fa 55%, #ffffff 100%);
    position: relative;
    padding-top: 100px;
    text-align: center;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(114, 155, 183, 0.14) 0%, transparent 60%);
    pointer-events: none;
}

.page-hero-content {
    position: relative;
    z-index: 10;
    padding: 2rem;
}

.page-hero-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--blue-deep);
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.page-hero-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: clamp(3rem, 8vw, 6rem);
    margin-bottom: 1rem;
    color: var(--anthra);
}

.page-hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-tertiary);
    max-width: 600px;
    margin: 0 auto;
}

.page-hero .breadcrumb-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 50%;
    max-width: 100%;
    margin: 0 auto 1.5rem;
    padding: 0.4rem 1rem;
    background: #fff;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
}

@media (max-width: 991px) {
    .page-hero .breadcrumb-nav {
        width: auto;
    }
}

@media (max-width: 768px) {
    .page-hero .page-hero-title {
        font-size: 2rem;
    }

    .page-hero .breadcrumb-nav {
        font-size: 0.75rem;
        padding: 0.35rem 0.75rem;
        gap: 0.4rem;
    }

    .page-hero .breadcrumb-nav .breadcrumb-home {
        width: 30px;
        height: 30px;
    }

    .page-hero .breadcrumb-nav .breadcrumb-home i {
        font-size: 0.75rem;
    }
}

.page-hero .breadcrumb-nav .breadcrumb-home {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    border: 1px solid var(--accent-primary);
    border-radius: 50%;
    color: var(--blue-deep);
    transition: background var(--transition-fast), color var(--transition-fast);
}

.page-hero .breadcrumb-nav .breadcrumb-home:hover {
    background: var(--accent-primary);
    color: #fff;
}

.page-hero .breadcrumb-nav .breadcrumb-home i {
    font-size: 0.85rem;
}

.page-hero .breadcrumb-nav a {
    color: var(--blue-deep);
}

.page-hero .breadcrumb-nav a:hover {
    color: var(--accent-dark);
}

.page-hero .breadcrumb-nav span {
    color: var(--text-tertiary);
}

/* ============================================
   SERVICE DETAIL PAGES
   ============================================ */

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    transition: color var(--transition-base);
}

.breadcrumb-nav a {
    color: var(--accent-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.breadcrumb-nav a:hover {
    color: var(--accent-dark);
}

.breadcrumb-nav span {
    color: var(--text-dark);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
    margin-top: 2rem;
}

.service-detail-main h2 {
    font-size: 2rem;
    color: var(--text-white);
    margin-bottom: 1rem;
    transition: color var(--transition-base);
}

.service-detail-main h3 {
    font-size: 1.5rem;
    color: var(--text-white);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    transition: color var(--transition-base);
}

.lead-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 2rem;
    transition: color var(--transition-base);
}

.service-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features-list li {
    display: flex;
    gap: 1rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-light);
    transition: border-color var(--transition-base), padding var(--transition-fast);
}

.service-features-list li:last-child {
    border-bottom: none;
}

.service-features-list li:hover {
    border-color: var(--accent-primary);
    padding-left: 0.5rem;
}

.service-features-list i {
    color: var(--accent-primary);
    font-size: 1.25rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
    transition: color var(--transition-base), transform var(--transition-fast);
}

.service-features-list li:hover i {
    transform: scale(1.1);
}

.service-features-list strong {
    display: block;
    color: var(--text-white);
    font-size: 1.0625rem;
    margin-bottom: 0.5rem;
    transition: color var(--transition-base);
}

.service-features-list p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
    transition: color var(--transition-base);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: color var(--transition-base), gap var(--transition-fast), transform var(--transition-fast);
}

.service-link:hover {
    color: var(--accent-dark);
    gap: 0.75rem;
    transform: translateX(2px);
}

.service-link i {
    font-size: 0.875rem;
    transition: transform var(--transition-fast);
}

.service-link:hover i {
    transform: translateX(4px);
}

/* Sidebar */
.service-detail-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-bottom: 1.5rem;
    transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.sidebar-card:hover {
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-md);
}

.sidebar-card h3 {
    font-size: 1.25rem;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    transition: color var(--transition-base);
}

.sidebar-card .info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    transition: transform var(--transition-fast);
}

.sidebar-card .info-item:hover {
    transform: translateX(4px);
}

.sidebar-card .info-item:last-child {
    margin-bottom: 0;
}

.sidebar-card .info-item i {
    color: var(--accent-primary);
    font-size: 1.25rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
    transition: color var(--transition-base), transform var(--transition-fast);
}

.sidebar-card .info-item:hover i {
    transform: scale(1.1);
}

.sidebar-card .info-item strong {
    display: block;
    color: var(--text-white);
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
    transition: color var(--transition-base);
}

.sidebar-card .info-item p {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
    transition: color var(--transition-base);
}

.sidebar-card .nav-link-cta {
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
}

/* Why Us Grid */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.why-us-item {
    background: var(--bg-elevated);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    text-align: center;
    transition: border-color var(--transition-base), transform var(--transition-base), box-shadow var(--transition-base);
}

.why-us-item:hover {
    border-color: var(--accent-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.why-us-item i {
    font-size: 2rem;
    color: var(--accent-primary);
    margin-bottom: 1rem;
    transition: color var(--transition-base), transform var(--transition-fast);
}

.why-us-item:hover i {
    transform: scale(1.1);
}

.why-us-item h4 {
    font-size: 1.0625rem;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    transition: color var(--transition-base);
}

.why-us-item p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
    transition: color var(--transition-base);
}

/* Warning Box */
.warning-box {
    background: rgba(114, 155, 183, 0.1);
    border-left: 4px solid var(--accent-primary);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    transition: background var(--transition-base), border-color var(--transition-base);
}

.warning-box:hover {
    background: rgba(114, 155, 183, 0.15);
}

.warning-box i {
    color: var(--accent-primary);
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: color var(--transition-base), transform var(--transition-fast);
}

.warning-box:hover i {
    transform: scale(1.1);
}

.warning-box p {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.75rem;
    transition: color var(--transition-base);
}

.warning-box ul {
    margin: 0;
    padding-left: 1.5rem;
    color: var(--text-muted);
}

.warning-box li {
    margin-bottom: 0.5rem;
    transition: color var(--transition-base);
}

/* Maintenance Schedule */
.maintenance-schedule {
    margin-top: 2rem;
}

.schedule-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    transition: border-color var(--transition-base), transform var(--transition-base), box-shadow var(--transition-base);
}

.schedule-item:hover {
    border-color: var(--accent-primary);
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
}

.schedule-km {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--accent-primary);
    min-width: 100px;
    text-align: center;
    transition: color var(--transition-base);
}

.schedule-content h4 {
    color: var(--text-white);
    font-size: 1.0625rem;
    margin-bottom: 0.5rem;
    transition: color var(--transition-base);
}

.schedule-content p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    margin: 0;
    transition: color var(--transition-base);
}

/* Parts Grid */
.parts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.part-item {
    background: var(--bg-elevated);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    transition: border-color var(--transition-base), transform var(--transition-base), box-shadow var(--transition-base);
}

.part-item:hover {
    border-color: var(--accent-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.part-item i {
    font-size: 2rem;
    color: var(--accent-primary);
    margin-bottom: 1rem;
    transition: color var(--transition-base), transform var(--transition-fast);
}

.part-item:hover i {
    transform: scale(1.1);
}

.part-item h4 {
    color: var(--text-white);
    font-size: 1.0625rem;
    margin-bottom: 1rem;
    transition: color var(--transition-base);
}

.part-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.part-item li {
    color: var(--text-muted);
    font-size: 0.875rem;
    padding: 0.25rem 0;
    padding-left: 1.25rem;
    position: relative;
    transition: color var(--transition-base);
}

.part-item li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-primary);
    transition: color var(--transition-base), transform var(--transition-fast);
}

.part-item li:hover::before {
    transform: scale(1.3);
}

/* Responsive */
@media (max-width: 991px) {
    .service-detail-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-sidebar {
        position: static;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .parts-grid {
        grid-template-columns: 1fr;
    }
}
