/* Express Vip Kurye — Premium Design System */
:root {
    --white: #ffffff;
    --bg: #ffffff;
    --bg-soft: #f8fafc;
    --bg-muted: #f4f7fb;
    --dark: #101426;
    --dark-soft: #111827;
    --text: #1f2937;
    --text-muted: #6b7280;
    --border: #e5e7eb;
    --primary: #ef3f45;
    --primary-dark: #d92f35;
    --accent: #ff6238;
    --gold: #ffb703;
    --gradient: linear-gradient(135deg, #ef3f45 0%, #ff6238 55%, #ff7a45 100%);
    --gradient-dark: linear-gradient(135deg, #101426 0%, #1a2340 50%, #162040 100%);
    --glass: rgba(255, 255, 255, 0.72);
    --glass-border: rgba(255, 255, 255, 0.55);
    --shadow-xs: 0 1px 2px rgba(16, 20, 38, 0.04);
    --shadow-sm: 0 4px 20px rgba(16, 20, 38, 0.06);
    --shadow-md: 0 12px 40px rgba(16, 20, 38, 0.08);
    --shadow-lg: 0 24px 60px rgba(16, 20, 38, 0.12);
    --shadow-glow: 0 12px 40px rgba(239, 63, 69, 0.22);
    --radius: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --topbar-height: 50px;
    --navbar-height: 108px;
    --header-total-height: 158px;
    --header-h: var(--navbar-height);
    --logo-height: 82px;
    --logo-height-scrolled: 58px;
    --card-radius: 28px;
    --card-radius-lg: 32px;
    --card-shadow: 0 8px 32px rgba(16, 20, 38, 0.06), 0 2px 8px rgba(16, 20, 38, 0.04);
    --card-shadow-hover: 0 30px 80px rgba(16, 20, 38, 0.14), 0 12px 32px rgba(239, 63, 69, 0.08);
    --card-border: rgba(229, 231, 235, 0.85);
    --font: 'DM Sans', system-ui, sans-serif;
    --font-display: 'Outfit', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font);
    color: var(--text);
    background: var(--bg);
    line-height: 1.65;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    padding-top: var(--header-total-height);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img, video, iframe { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.25s var(--ease), transform 0.25s var(--ease), opacity 0.25s var(--ease); }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

main, header, footer, .section {
    max-width: 100%;
}

main { padding-top: 0; min-width: 0; }

/* Loader */
.page-loader {
    position: fixed; inset: 0; z-index: 99999;
    background: var(--white);
    display: grid; place-items: center;
    transition: opacity 0.5s, visibility 0.5s;
}
.page-loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner { text-align: center; }
.loader-ring {
    width: 52px; height: 52px; margin: 0 auto 14px;
    border-radius: 50%;
    border: 3px solid var(--border);
    border-top-color: var(--primary);
    animation: spin 0.8s linear infinite;
}
.loader-inner span { font-family: var(--font-display); font-weight: 700; color: var(--dark); font-size: 0.95rem; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    z-index: 9999;
    transition: transform 0.4s var(--ease), background 0.4s var(--ease), box-shadow 0.4s var(--ease), backdrop-filter 0.4s;
}
.page-inner .site-header,
.page-inner .site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(18px) saturate(180%);
    -webkit-backdrop-filter: blur(18px) saturate(180%);
    border-bottom: 1px solid rgba(229, 231, 235, 0.85);
    box-shadow: var(--shadow-sm);
}
.page-inner .nav-menu a { color: var(--text); }
.page-inner .brand-express { color: var(--dark); }
.page-home .site-header.is-scrolled {
    background: var(--glass);
    backdrop-filter: blur(18px) saturate(180%);
    -webkit-backdrop-filter: blur(18px) saturate(180%);
    border-bottom: 1px solid rgba(229, 231, 235, 0.7);
    box-shadow: var(--shadow-sm);
}
.page-home .site-header:not(.is-scrolled) .nav-menu a { color: var(--text); }
.page-home .site-header:not(.is-scrolled) .navbar-main {
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.site-header.is-scrolled {
    --navbar-height: 78px;
    --logo-height: var(--logo-height-scrolled);
}
.site-header.is-scrolled .navbar-main {
    height: var(--navbar-height);
    min-height: var(--navbar-height);
}
.site-header.is-scrolled .brand-text { font-size: 1.22rem; }

.header-top {
    background: var(--dark);
    color: rgba(255,255,255,0.82);
    font-size: 0.82rem;
    padding: 7px 0;
    min-height: var(--topbar-height);
    transition: max-height 0.35s var(--ease), opacity 0.35s, padding 0.35s, min-height 0.35s;
    max-height: var(--topbar-height);
    overflow: hidden;
}
.site-header.is-scrolled .header-top {
    max-height: 0;
    min-height: 0;
    opacity: 0;
    padding: 0;
}
.header-top-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.header-contact { display: flex; flex-wrap: wrap; gap: 20px; }
.header-contact a:hover { color: var(--gold); }
.header-contact i { color: var(--primary); margin-right: 6px; font-size: 0.78rem; }
.header-social { display: flex; gap: 8px; }
.header-social a {
    width: 30px; height: 30px; border-radius: 8px;
    background: rgba(255,255,255,0.08);
    display: grid; place-items: center;
    transition: background 0.25s, transform 0.25s;
}
.header-social a:hover { background: var(--primary); transform: translateY(-2px); }

.navbar-main {
    height: var(--navbar-height);
    min-height: var(--navbar-height);
    display: flex;
    align-items: center;
    transition: height 0.35s var(--ease), min-height 0.35s var(--ease);
}
.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    min-width: 0;
}
.navbar-brand {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    flex-shrink: 0;
    padding: 10px 18px 10px 6px;
    margin-right: 4px;
    min-width: 0;
    max-height: 100%;
}

.site-logo,
.navbar-brand img {
    height: var(--logo-height);
    width: auto;
    max-width: min(300px, 38vw);
    object-fit: contain;
    object-position: left center;
    transition: height 0.35s var(--ease), max-width 0.35s var(--ease);
}

.brand-text { font-family: var(--font-display); font-weight: 800; line-height: 1.15; transition: font-size 0.35s; }
.brand-express { color: var(--dark); font-size: 1.55rem; display: block; }
.brand-vip { color: var(--primary); font-size: 0.8rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700; }

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 1;
    min-width: 0;
}
.nav-menu a {
    position: relative;
    padding: 10px 14px;
    font-weight: 500;
    font-size: 0.92rem;
    color: var(--text);
    border-radius: 10px;
}
.nav-menu a::after {
    content: '';
    position: absolute;
    left: 14px; right: 14px; bottom: 6px;
    height: 2px;
    background: var(--gradient);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s var(--ease);
}
.nav-menu a:hover { color: var(--primary); }
.nav-menu a:hover::after, .nav-menu a.active::after { transform: scaleX(1); }
.nav-menu a.active { color: var(--dark); font-weight: 600; }

.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 24px; border-radius: 999px;
    font-weight: 600; font-size: 0.92rem;
    border: 2px solid transparent;
    transition: transform 0.25s var(--ease), box-shadow 0.25s, background 0.25s, color 0.25s;
    white-space: nowrap;
}
.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: var(--shadow-glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(239,63,69,0.32); color: white; }
.btn-ghost { background: rgba(255,255,255,0.12); color: white; border-color: rgba(255,255,255,0.22); backdrop-filter: blur(8px); }
.btn-ghost:hover { background: white; color: var(--dark); }
.btn-outline { background: transparent; color: var(--dark); border-color: var(--border); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-white { background: white; color: var(--primary); box-shadow: var(--shadow-md); }
.btn-white:hover { transform: translateY(-2px); color: var(--primary-dark); }
.btn-outline-white { background: transparent; color: white; border-color: rgba(255,255,255,0.45); }
.btn-outline-white:hover { background: white; color: var(--primary); }
.btn-lg { padding: 15px 30px; font-size: 1rem; }
.btn-sm { padding: 9px 18px; font-size: 0.84rem; }
.btn-header {
    padding: 11px 22px;
    font-size: 0.88rem;
    flex-shrink: 0;
}

.nav-toggle {
    display: none;
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--bg-soft);
    align-items: center; justify-content: center;
    flex-direction: column; gap: 5px;
}
.nav-toggle span {
    width: 20px; height: 2px; background: var(--dark);
    border-radius: 2px; transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-drawer {
    position: fixed; inset: 0; z-index: 9999;
    background: rgba(16, 20, 38, 0.55);
    backdrop-filter: blur(6px);
    opacity: 0; visibility: hidden;
    transition: opacity 0.35s, visibility 0.35s;
}
.mobile-drawer.is-open { opacity: 1; visibility: visible; }
.mobile-drawer__panel {
    position: absolute; top: 0; right: 0; bottom: 0;
    width: min(100%, 380px);
    background: var(--white);
    padding: 28px 24px;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
}
.mobile-drawer.is-open .mobile-drawer__panel { transform: translateX(0); }
.mobile-drawer__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; }
.mobile-drawer__close {
    width: 42px; height: 42px; border-radius: 12px;
    background: var(--bg-soft);
    display: grid; place-items: center; font-size: 1.2rem;
}
.mobile-drawer__nav a {
    display: block; padding: 14px 0;
    font-size: 1.05rem; font-weight: 600;
    border-bottom: 1px solid var(--border);
    color: var(--text);
}
.mobile-drawer__nav a.active { color: var(--primary); }
.mobile-drawer__cta { margin-top: 24px; }
.mobile-drawer__cta .btn { width: 100%; }

/* Hero — sadece anasayfa */
.page-home .hero-premium {
    position: relative;
    min-height: calc(100vh - var(--header-total-height));
    max-height: 900px;
    display: flex;
    align-items: center;
    padding: 40px 0 80px;
    overflow: hidden;
    margin-top: calc(-1 * var(--header-total-height));
    padding-top: calc(var(--header-total-height) + 48px);
}
.hero-premium {
    position: relative;
    overflow: hidden;
}

.hero-premium__bg {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 10% 20%, rgba(239,63,69,0.08), transparent 50%),
        radial-gradient(ellipse 60% 50% at 90% 80%, rgba(255,98,56,0.07), transparent 50%),
        linear-gradient(180deg, #fafbfd 0%, #ffffff 45%, #f4f7fb 100%);
}
.hero-premium__grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    align-items: center;
    min-width: 0;
}
.hero-premium__content { max-width: 600px; }
.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 16px 8px 10px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 0.82rem; font-weight: 600;
    color: var(--text-muted);
    box-shadow: var(--shadow-xs);
    margin-bottom: 22px;
}
.hero-eyebrow i {
    width: 28px; height: 28px; border-radius: 50%;
    background: var(--gradient);
    color: white;
    display: grid; place-items: center; font-size: 0.85rem;
}
.hero-premium h1 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.8vw, 3.6rem);
    font-weight: 800;
    line-height: 1.08;
    color: var(--dark);
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}
.hero-premium h1 .text-gradient {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-premium__desc {
    font-size: 1.08rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 28px;
    max-width: 520px;
}
.hero-premium__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 32px; }
.hero-trust {
    display: flex; flex-wrap: wrap; gap: 12px;
}
.hero-trust__item {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 14px;
    background: rgba(255,255,255,0.8);
    border: 1px solid var(--border);
    border-radius: 12px;
    font-size: 0.84rem; font-weight: 600;
    box-shadow: var(--shadow-xs);
}
.hero-trust__item i { color: var(--primary); font-size: 1rem; }

.hero-slider-wrap { position: relative; }
.hero-slide-content { display: none; animation: fadeUp 0.6s var(--ease); }
.hero-slide-content.is-active { display: block; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

.hero-controls {
    display: flex; align-items: center; gap: 14px;
    margin-top: 28px;
}
.hero-arrow {
    width: 44px; height: 44px; border-radius: 12px;
    border: 1px solid var(--border);
    background: white;
    display: grid; place-items: center;
    color: var(--dark);
    transition: all 0.25s;
    box-shadow: var(--shadow-xs);
}
.hero-arrow:hover { background: var(--dark); color: white; border-color: var(--dark); }
.hero-dots { display: flex; gap: 8px; }
.hero-dot {
    width: 8px; height: 8px; border-radius: 999px;
    background: #d1d5db; transition: all 0.3s;
}
.hero-dot.is-active { width: 28px; background: var(--gradient); }

/* Hero Visual */
.hero-visual {
    position: relative;
    min-height: 420px;
    display: grid;
    place-items: center;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}
.hero-visual__blob {
    position: absolute; border-radius: 50%;
    filter: blur(60px); opacity: 0.5;
    animation: blobFloat 8s ease-in-out infinite;
}
.hero-visual__blob--1 { width: 280px; height: 280px; background: rgba(239,63,69,0.25); top: 10%; right: 10%; }
.hero-visual__blob--2 { width: 220px; height: 220px; background: rgba(255,98,56,0.2); bottom: 15%; left: 5%; animation-delay: -3s; }
@keyframes blobFloat { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(12px,-18px) scale(1.05); } }

.hero-visual__route {
    position: relative; width: 100%; max-width: 380px;
    opacity: 0.85;
}
.route-line { stroke-dashoffset: 0; animation: routeDraw 4s ease-in-out infinite; }
@keyframes routeDraw { 0%,100% { stroke-dashoffset: 0; } 50% { stroke-dashoffset: 30; } }
.route-dot { animation: pulseDot 2s ease-in-out infinite; }
.route-dot--b { animation-delay: 1s; }
@keyframes pulseDot { 0%,100% { r: 6; opacity: 1; } 50% { r: 9; opacity: 0.7; } }

.hero-visual__card {
    position: absolute;
    display: flex; align-items: center; gap: 10px;
    padding: 12px 16px;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    box-shadow: var(--shadow-md);
    font-size: 0.82rem;
    animation: cardFloat 5s ease-in-out infinite;
}
.hero-visual__card strong { display: block; color: var(--dark); font-size: 0.88rem; }
.hero-visual__card span { color: var(--text-muted); font-size: 0.75rem; }
.hero-visual__card i {
    width: 36px; height: 36px; border-radius: 10px;
    background: var(--gradient);
    color: white;
    display: grid; place-items: center;
}
.hero-visual__card--1 { top: 8%; left: 0; }
.hero-visual__card--2 { top: 42%; right: 0; animation-delay: -1.5s; }
.hero-visual__card--3 { bottom: 12%; left: 8%; animation-delay: -2.5s; }
@keyframes cardFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.hero-visual__bike {
    position: absolute; bottom: 28%; right: 18%;
    width: 88px; height: 88px; border-radius: 50%;
    background: var(--gradient-dark);
    color: white;
    display: grid; place-items: center;
    font-size: 2.2rem;
    box-shadow: var(--shadow-lg);
    animation: bikePulse 3s ease-in-out infinite;
}
@keyframes bikePulse { 0%,100% { transform: scale(1); box-shadow: var(--shadow-lg); } 50% { transform: scale(1.05); box-shadow: 0 20px 50px rgba(16,20,38,0.2); } }

/* Visual Media Placeholders */
.visual-media {
    position: relative; width: 100%; height: 100%;
    min-height: 200px;
    overflow: hidden;
    border-radius: inherit;
    display: grid; place-items: center;
}
.visual-media--image img { width: 100%; height: 100%; object-fit: cover; }
.visual-media__glow {
    position: absolute; inset: 0;
    background: var(--gradient);
    opacity: 0.88;
}
.visual-variant-0 .visual-media__glow { background: linear-gradient(135deg, #ef3f45, #ff6238); }
.visual-variant-1 .visual-media__glow { background: linear-gradient(135deg, #101426, #2a3558); }
.visual-variant-2 .visual-media__glow { background: linear-gradient(135deg, #ff6238, #ffb703); }
.visual-variant-3 .visual-media__glow { background: linear-gradient(135deg, #1a2340, #ef3f45); }
.visual-variant-4 .visual-media__glow { background: linear-gradient(135deg, #162040, #ff6238); }

.visual-media__pattern {
    position: absolute; inset: 0; opacity: 0.12;
    background-image: radial-gradient(circle at 2px 2px, white 1px, transparent 0);
    background-size: 22px 22px;
}
.visual-media__icon {
    position: relative; z-index: 2;
    width: 72px; height: 72px; border-radius: 20px;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.25);
    display: grid; place-items: center;
    font-size: 2rem; color: white;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.visual-media__label {
    position: absolute; bottom: 16px; left: 16px; right: 16px;
    z-index: 2; color: rgba(255,255,255,0.9);
    font-size: 0.78rem; font-weight: 600;
    text-align: center;
    opacity: 0; transform: translateY(8px);
    transition: opacity 0.3s, transform 0.3s;
}
.blog-card:hover .visual-media__label { opacity: 1; transform: translateY(0); }
.service-card__image .visual-media__label { display: none; }
.service-card__image .visual-media__icon { opacity: 0.35; transform: scale(1.2); }

/* Sections */
.section {
    padding: 96px 0;
    position: relative;
    width: 100%;
    max-width: 100%;
}
.section--soft { background: var(--bg-soft); }
.section--muted { background: var(--bg-muted); }
.section-header { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.section-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.78rem; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--primary); margin-bottom: 14px;
}
.section-eyebrow::before,
.section-eyebrow::after {
    content: ''; width: 24px; height: 2px;
    background: var(--gradient); border-radius: 2px;
}
.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 3.2vw, 2.65rem);
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 14px;
}
.section-header p { color: var(--text-muted); font-size: 1.05rem; }

/* Trust Strip */
.trust-strip {
    margin-top: -48px;
    position: relative;
    z-index: 5;
    padding-bottom: 24px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}
.trust-strip__grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.trust-strip__item {
    display: flex; align-items: center; gap: 14px;
    padding: 22px 24px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--card-border);
    border-radius: var(--card-radius);
    box-shadow: var(--card-shadow);
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s;
}
.trust-strip__item:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-shadow-hover);
    border-color: rgba(239, 63, 69, 0.15);
}
.trust-strip__icon {
    width: 52px; height: 52px; flex-shrink: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(239,63,69,0.12), rgba(255,98,56,0.16));
    color: var(--primary);
    display: grid; place-items: center; font-size: 1.3rem;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
    transition: transform 0.4s var(--ease), background 0.4s;
}
.trust-strip__item:hover .trust-strip__icon {
    transform: scale(1.06);
    background: var(--gradient);
    color: white;
}
.trust-strip__item strong { display: block; font-size: 0.92rem; color: var(--dark); }
.trust-strip__item span { font-size: 0.8rem; color: var(--text-muted); }

/* Premium Card System */
.services-grid,
.blog-grid,
.features-grid,
.advantages-grid,
.why-grid {
    min-width: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.premium-card {
    position: relative;
    background: #ffffff;
    border: 1px solid var(--card-border);
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition:
        transform 0.45s var(--ease),
        box-shadow 0.45s var(--ease),
        border-color 0.45s var(--ease);
}

.premium-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1.5px;
    background: linear-gradient(135deg, rgba(239,63,69,0.55), rgba(255,98,56,0.45), rgba(255,183,3,0.35));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.45s var(--ease);
    pointer-events: none;
    z-index: 4;
}

@media (hover: hover) {
    .premium-card:hover {
        transform: translateY(-12px);
        box-shadow: var(--card-shadow-hover);
        border-color: rgba(239, 63, 69, 0.12);
    }

    .premium-card:hover::before { opacity: 1; }
}

.card-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 11px;
    border-radius: 999px;
    background: rgba(239, 63, 69, 0.06);
    border: 1px solid rgba(239, 63, 69, 0.1);
    color: var(--text);
    font-size: 0.74rem;
    font-weight: 600;
    white-space: nowrap;
    transition: background 0.3s, border-color 0.3s;
}

.card-tag i {
    color: var(--primary);
    font-size: 0.82rem;
}

.premium-card:hover .card-tag {
    background: rgba(239, 63, 69, 0.09);
    border-color: rgba(239, 63, 69, 0.16);
}

.card-cta {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    padding: 13px 18px;
    border-radius: 14px;
    background: var(--gradient);
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 8px 24px rgba(239, 63, 69, 0.28);
    transition: transform 0.3s var(--ease), box-shadow 0.3s, background 0.3s;
    margin-top: 4px;
}

.card-cta__arrow {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.2);
    display: grid;
    place-items: center;
    transition: transform 0.35s var(--ease), background 0.35s;
}

.card-cta__arrow i { transition: transform 0.35s var(--ease); }

.card-cta:hover {
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 12px 32px rgba(239, 63, 69, 0.35);
}

.card-cta:hover .card-cta__arrow {
    background: rgba(255, 255, 255, 0.28);
    transform: translateX(2px);
}

.card-cta:hover .card-cta__arrow i { transform: translateX(3px); }

.card-cta--ghost {
    background: var(--bg-soft);
    color: var(--dark);
    box-shadow: none;
    border: 1px solid var(--border);
}

.card-cta--ghost .card-cta__arrow {
    background: white;
    color: var(--primary);
    box-shadow: var(--shadow-xs);
}

.card-cta--ghost:hover {
    background: white;
    color: var(--primary);
    border-color: rgba(239, 63, 69, 0.2);
    box-shadow: var(--shadow-sm);
}

/* Service Cards */
.service-card { display: flex; flex-direction: column; }

.service-card__media {
    display: block;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.service-card__image {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.service-card__image .visual-media,
.service-card__image .visual-media--image {
    height: 100%;
    min-height: 280px;
    border-radius: 0;
}

.service-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.65s var(--ease);
}

.service-card:hover .service-card__image img,
.service-card:hover .service-card__image .visual-media {
    transform: scale(1.08);
}

.service-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(16, 20, 38, 0.05) 0%,
        rgba(16, 20, 38, 0.15) 45%,
        rgba(16, 20, 38, 0.72) 100%
    );
    z-index: 2;
    pointer-events: none;
    transition: opacity 0.4s;
}

.service-card__badge {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 3;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: white;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.service-card__glass-icon {
    position: absolute;
    bottom: 18px;
    right: 18px;
    z-index: 3;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: white;
    display: grid;
    place-items: center;
    font-size: 1.35rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transition: transform 0.45s var(--ease), background 0.45s;
}

.service-card:hover .service-card__glass-icon {
    transform: scale(1.08) rotate(-4deg);
    background: rgba(255, 255, 255, 0.22);
}

.service-card__shine {
    position: absolute;
    inset: 0;
    z-index: 3;
    background: linear-gradient(105deg, transparent 38%, rgba(255,255,255,0.18) 50%, transparent 62%);
    transform: translateX(-120%);
    transition: transform 0.75s var(--ease);
    pointer-events: none;
}

.service-card:hover .service-card__shine { transform: translateX(120%); }

.service-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 26px 26px 28px;
}

.service-card__title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.35;
}

.service-card__title a { transition: color 0.25s; }
.service-card__title a:hover { color: var(--primary); }

.service-card__desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 16px;
    flex: 1;
}

.service-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.feature-icon-emoji {
    font-size: 0.9rem;
    line-height: 1;
}

.detail-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.card-tag--detail {
    padding: 10px 16px;
    font-size: 0.82rem;
    border-radius: 14px;
    box-shadow: var(--shadow-xs);
}

/* About */
.about-block { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-block__media {
    position: relative;
    overflow: hidden;
    max-width: 100%;
}
.about-block__frame {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    min-height: 420px;
}
.about-block__frame .visual-media { min-height: 420px; border-radius: 0; }
.about-block__frame img { width: 100%; height: 100%; object-fit: cover; min-height: 420px; }
.about-block__badge {
    position: absolute; bottom: -18px; right: -18px;
    padding: 22px 26px;
    background: var(--gradient);
    color: white; border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-glow);
}
.about-block__badge strong { display: block; font-family: var(--font-display); font-size: 2rem; font-weight: 800; line-height: 1; }
.about-block__badge span { font-size: 0.78rem; font-weight: 600; opacity: 0.92; }
.about-stats {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px;
    margin: 28px 0 32px;
}
.about-stat {
    padding: 20px;
    background: white;
    border: 1px solid var(--card-border);
    border-radius: var(--card-radius);
    box-shadow: var(--card-shadow);
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.about-stat:hover {
    transform: translateY(-6px);
    box-shadow: var(--card-shadow-hover);
}
.about-stat i { color: var(--primary); font-size: 1.2rem; margin-bottom: 8px; display: block; }
.about-stat strong { display: block; font-size: 0.92rem; color: var(--dark); margin-bottom: 2px; }
.about-stat span { font-size: 0.8rem; color: var(--text-muted); }
.about-checklist li {
    display: flex; align-items: center; gap: 10px;
    padding: 8px 0; font-weight: 500; font-size: 0.95rem;
}
.about-checklist i { color: var(--primary); }

/* Courier Form */
.courier-section {
    background:
        radial-gradient(ellipse 70% 50% at 0% 100%, rgba(239,63,69,0.06), transparent),
        radial-gradient(ellipse 50% 40% at 100% 0%, rgba(255,98,56,0.05), transparent),
        var(--bg-muted);
}
.courier-layout { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 40px; align-items: start; }
.courier-form-card {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 36px;
    box-shadow: var(--shadow-md);
}
.courier-form-card h2 {
    font-family: var(--font-display);
    font-size: 1.75rem; font-weight: 800;
    color: var(--dark); margin-bottom: 8px;
}
.courier-form-card > p { color: var(--text-muted); margin-bottom: 28px; }

.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-weight: 600; font-size: 0.84rem; margin-bottom: 8px; color: var(--dark); }
.input-wrap {
    position: relative;
    display: flex; align-items: center;
}
.input-wrap i {
    position: absolute; left: 16px;
    color: var(--text-muted); font-size: 0.95rem;
    pointer-events: none;
}
.input-wrap input,
.input-wrap textarea,
.input-wrap select,
.form-field > input,
.form-field > textarea,
.form-field > select {
    width: 100%;
    padding: 14px 16px 14px 44px;
    min-height: 48px;
    border: 1px solid var(--border);
    border-radius: 14px;
    font-family: inherit; font-size: 0.92rem;
    background: white;
    color: var(--text);
    transition: border-color 0.25s, box-shadow 0.25s;
}
.form-field > input,
.form-field > textarea,
.form-field > select { padding-left: 16px; }
.input-wrap input:focus,
.input-wrap textarea:focus,
.input-wrap select:focus,
.form-field > input:focus,
.form-field > textarea:focus,
.form-field > select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(239,63,69,0.1);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field textarea { resize: vertical; min-height: 88px; }
.btn-submit {
    width: 100%; margin-top: 8px;
    position: relative; overflow: hidden;
}
.btn-submit::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s;
}
.btn-submit:hover::after { transform: translateX(100%); }

.courier-steps {
    background: var(--gradient-dark);
    border-radius: var(--radius-xl);
    padding: 36px;
    color: white;
    box-shadow: var(--shadow-lg);
}
.courier-steps h3 {
    font-family: var(--font-display);
    font-size: 1.35rem; font-weight: 700;
    margin-bottom: 28px;
}
.step-item {
    display: flex; gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.step-item:last-child { border-bottom: none; padding-bottom: 0; }
.step-item__num {
    width: 40px; height: 40px; flex-shrink: 0;
    border-radius: 12px;
    background: rgba(255,255,255,0.1);
    display: grid; place-items: center;
    font-family: var(--font-display); font-weight: 800;
    color: var(--gold);
}
.step-item strong { display: block; margin-bottom: 4px; font-size: 0.95rem; }
.step-item span { font-size: 0.85rem; opacity: 0.75; line-height: 1.5; }

/* CTA */
.cta-banner {
    padding: 0 0 96px;
}
.cta-banner__inner {
    position: relative; overflow: hidden;
    border-radius: var(--radius-xl);
    padding: 56px 48px;
    background: var(--gradient);
    color: white;
    display: flex; align-items: center; justify-content: space-between; gap: 32px;
    box-shadow: var(--shadow-glow);
}
.cta-banner__inner::before {
    content: '';
    position: absolute; top: -50%; right: -10%;
    width: 400px; height: 400px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
}
.cta-banner h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 800; margin-bottom: 8px;
    position: relative;
}
.cta-banner p { opacity: 0.92; position: relative; }
.cta-banner__actions { display: flex; gap: 12px; flex-shrink: 0; position: relative; }

/* Page Banner — iç sayfalar, header altında başlar */
.page-hero,
.page-banner {
    position: relative;
    margin-top: 0;
    padding: 48px 0 64px;
    background: var(--gradient-dark);
    color: white;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}
.page-hero::before,
.page-banner::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(239,63,69,0.15), transparent 45%),
        radial-gradient(circle at 80% 30%, rgba(255,98,56,0.1), transparent 40%);
}
.page-hero .container,
.page-banner .container { position: relative; z-index: 1; }
.page-hero h1,
.page-banner h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}
.page-hero p,
.page-banner p { opacity: 0.85; font-size: 1.05rem; max-width: 600px; }
.breadcrumb { font-size: 0.88rem; opacity: 0.65; margin-top: 16px; }
.breadcrumb a:hover { opacity: 1; color: var(--gold); }
.breadcrumb span { margin: 0 8px; }

/* Content */
.content-prose h2, .content-prose h3 {
    font-family: var(--font-display);
    color: var(--dark);
    margin: 28px 0 12px;
    font-weight: 700;
}
.content-prose p { color: var(--text-muted); margin-bottom: 16px; line-height: 1.8; }
.content-prose ul { list-style: disc; padding-left: 22px; margin-bottom: 16px; }
.content-prose ul li { color: var(--text-muted); margin-bottom: 8px; }

/* Stats */
.stats-bar {
    margin-top: -40px;
    position: relative;
    z-index: 2;
    padding-bottom: 24px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}
.stats-bar__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stat-box {
    text-align: center;
    padding: 32px 22px;
    background: white;
    border: 1px solid var(--card-border);
    border-radius: var(--card-radius);
    box-shadow: var(--card-shadow);
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s;
}

.stat-box:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-shadow-hover);
    border-color: rgba(239, 63, 69, 0.12);
}
.stat-box__num {
    font-family: var(--font-display);
    font-size: 2.4rem; font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}
.stat-box__suffix { font-weight: 700; color: var(--accent); font-size: 1.1rem; }
.stat-box__label { display: block; margin-top: 8px; color: var(--text-muted); font-size: 0.88rem; font-weight: 500; }

/* SEO blocks */
.seo-block { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.seo-block--reverse .seo-block__media { order: 2; }
.seo-block--reverse .seo-block__text { order: 1; }
.seo-block__media {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    min-height: 320px;
}
.seo-block__media .visual-media { min-height: 320px; }
.seo-block__media img { width: 100%; height: 100%; object-fit: cover; min-height: 320px; }
.seo-block__text h2 {
    font-family: var(--font-display);
    font-size: 1.65rem; font-weight: 800;
    color: var(--dark); margin-bottom: 16px;
}

/* Advantages */
.advantages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.advantage-card {
    padding: 30px 26px;
    background: white;
    border: 1px solid var(--card-border);
    border-radius: var(--card-radius);
    box-shadow: var(--card-shadow);
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s;
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--card-shadow-hover);
    border-color: rgba(239, 63, 69, 0.12);
}

.advantage-card__icon {
    width: 56px; height: 56px; border-radius: 16px;
    background: linear-gradient(135deg, rgba(239,63,69,0.1), rgba(255,98,56,0.14));
    color: var(--primary);
    display: grid; place-items: center;
    font-size: 1.35rem; margin-bottom: 18px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.65);
    transition: transform 0.4s var(--ease), background 0.4s, color 0.4s;
}

.advantage-card:hover .advantage-card__icon {
    background: var(--gradient);
    color: white;
    transform: scale(1.06);
}
.advantage-card h4 { font-family: var(--font-display); font-size: 1.05rem; margin-bottom: 8px; }
.advantage-card p { color: var(--text-muted); font-size: 0.9rem; }

/* Process */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; }
.process-grid::before {
    content: '';
    position: absolute; top: 36px; left: 12%; right: 12%;
    height: 2px; background: linear-gradient(90deg, var(--primary), var(--accent));
    opacity: 0.2;
}
.process-card {
    text-align: center;
    position: relative;
    padding: 28px 20px;
    background: white;
    border: 1px solid var(--card-border);
    border-radius: var(--card-radius);
    box-shadow: var(--card-shadow);
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s;
}

@media (hover: hover) {
    .process-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--card-shadow-hover);
        border-color: rgba(239, 63, 69, 0.12);
    }
}

.process-card__num {
    width: 72px; height: 72px; margin: 0 auto 18px;
    border-radius: 50%;
    background: var(--gradient);
    color: white;
    display: grid; place-items: center;
    font-family: var(--font-display); font-size: 1.5rem; font-weight: 800;
    box-shadow: 0 10px 28px rgba(239, 63, 69, 0.28);
    position: relative; z-index: 1;
    transition: transform 0.4s var(--ease);
}

@media (hover: hover) {
    .process-card:hover .process-card__num { transform: scale(1.06); }
}
.process-card h4 { font-family: var(--font-display); margin-bottom: 8px; }
.process-card p { color: var(--text-muted); font-size: 0.88rem; }

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
    border: 1px solid var(--card-border);
    border-radius: var(--card-radius);
    margin-bottom: 12px;
    overflow: hidden;
    background: white;
    box-shadow: var(--card-shadow);
    transition: box-shadow 0.35s var(--ease), border-color 0.35s;
}

.faq-item.is-open {
    box-shadow: var(--card-shadow-hover);
    border-color: rgba(239, 63, 69, 0.12);
}
.faq-item__q {
    width: 100%; text-align: left;
    padding: 20px 24px;
    display: flex; justify-content: space-between; align-items: center; gap: 16px;
    font-weight: 600; font-size: 0.98rem; color: var(--dark);
}
.faq-item__q i { color: var(--primary); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.is-open .faq-item__q i { transform: rotate(180deg); }
.faq-item__a {
    max-height: 0; overflow: hidden;
    transition: max-height 0.35s var(--ease);
}
.faq-item.is-open .faq-item__a { max-height: 300px; }
.faq-item__a p { padding: 0 24px 20px; color: var(--text-muted); font-size: 0.92rem; line-height: 1.7; }

/* Blog */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.blog-card { display: flex; flex-direction: column; }

.blog-card__media {
    display: block;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.blog-card__image {
    height: 240px;
    overflow: hidden;
}

.blog-card__image .visual-media,
.blog-card__image .visual-media--image {
    height: 100%;
    min-height: 240px;
    border-radius: 0;
}

.blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.65s var(--ease);
}

.blog-card:hover .blog-card__image img,
.blog-card:hover .blog-card__image .visual-media {
    transform: scale(1.06);
}

.blog-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(16, 20, 38, 0.55) 100%);
    z-index: 2;
    pointer-events: none;
}

.blog-card__category {
    position: absolute; top: 16px; left: 16px; z-index: 3;
    padding: 7px 14px; border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: white;
    font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.blog-card__date {
    position: absolute; bottom: 16px; right: 16px; z-index: 3;
    padding: 6px 12px; border-radius: 999px;
    background: rgba(255,255,255,0.94);
    font-size: 0.74rem; font-weight: 600;
    color: var(--text-muted);
    box-shadow: var(--shadow-xs);
}

.blog-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 24px 26px 28px;
}

.blog-card__title {
    font-family: var(--font-display);
    font-size: 1.12rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-card__title a:hover { color: var(--primary); }

.blog-card__excerpt {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-bottom: 18px;
    line-height: 1.7;
    flex: 1;
}

/* Blog Detail */
.article-layout { max-width: 780px; margin: 0 auto; }
.article-cover {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 36px;
    box-shadow: var(--shadow-md);
    min-height: 320px;
}
.article-cover .visual-media { min-height: 320px; }
.article-cover img { width: 100%; min-height: 320px; object-fit: cover; }
.article-meta { display: flex; gap: 16px; margin-bottom: 20px; flex-wrap: wrap; }
.article-meta span {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 0.85rem; color: var(--text-muted); font-weight: 500;
}
.article-meta .tag {
    background: rgba(239,63,69,0.1); color: var(--primary);
    padding: 4px 12px; border-radius: 999px; font-weight: 600;
}
.article-footer {
    display: flex; justify-content: space-between; gap: 16px;
    margin-top: 48px; padding-top: 32px;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}

/* Contact */
.contact-layout { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 32px; align-items: start; }
.contact-cards { display: grid; gap: 14px; }
.contact-card {
    display: flex; gap: 16px; align-items: flex-start;
    padding: 24px;
    background: white;
    border: 1px solid var(--card-border);
    border-radius: var(--card-radius);
    box-shadow: var(--card-shadow);
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s;
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--card-shadow-hover);
    border-color: rgba(239, 63, 69, 0.12);
}

.contact-card__icon {
    width: 52px; height: 52px; flex-shrink: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(239,63,69,0.1), rgba(255,98,56,0.14));
    color: var(--primary);
    display: grid; place-items: center; font-size: 1.2rem;
    transition: transform 0.4s, background 0.4s, color 0.4s;
}

.contact-card:hover .contact-card__icon {
    background: var(--gradient);
    color: white;
    transform: scale(1.05);
}
.contact-card strong { display: block; font-size: 0.82rem; color: var(--text-muted); margin-bottom: 4px; }
.contact-card a:hover { color: var(--primary); }
.contact-form-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 36px;
    box-shadow: var(--shadow-md);
}
.contact-form-card h3 {
    font-family: var(--font-display);
    font-size: 1.35rem; font-weight: 700;
    margin-bottom: 24px;
}
.map-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}
.map-wrap iframe { display: block; width: 100%; border: 0; }

/* Service Detail */
.detail-layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: start; }
.detail-media {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    min-height: 400px;
}
.detail-media .visual-media { min-height: 400px; }
.detail-media img { width: 100%; min-height: 400px; object-fit: cover; }
.detail-icon {
    width: 64px; height: 64px; border-radius: 16px;
    background: var(--gradient);
    color: white;
    display: grid; place-items: center;
    font-size: 1.6rem; margin-bottom: 20px;
}
.detail-excerpt { font-size: 1.1rem; color: var(--text-muted); font-weight: 500; margin-bottom: 20px; line-height: 1.7; }

/* MV / Why cards */
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.mv-card {
    padding: 36px;
    background: white;
    border: 1px solid var(--card-border);
    border-radius: var(--card-radius-lg);
    box-shadow: var(--card-shadow);
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s;
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--card-shadow-hover);
    border-color: rgba(239, 63, 69, 0.12);
}

.mv-card__icon {
    width: 64px; height: 64px; border-radius: 18px;
    background: var(--gradient);
    color: white;
    display: grid; place-items: center;
    font-size: 1.55rem; margin-bottom: 20px;
    box-shadow: 0 10px 28px rgba(239, 63, 69, 0.25);
    transition: transform 0.4s var(--ease);
}

.mv-card:hover .mv-card__icon { transform: scale(1.06); }
.mv-card h3 { font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 10px; }
.mv-card p { color: var(--text-muted); }

.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.why-card {
    padding: 32px 24px;
    background: white;
    border: 1px solid var(--card-border);
    border-radius: var(--card-radius);
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--card-shadow-hover);
    border-color: rgba(239, 63, 69, 0.12);
}

.why-card__icon {
    width: 60px; height: 60px; margin: 0 auto 16px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(239,63,69,0.1), rgba(255,98,56,0.14));
    color: var(--primary);
    display: grid; place-items: center; font-size: 1.35rem;
    transition: transform 0.4s var(--ease), background 0.4s, color 0.4s;
}

.why-card:hover .why-card__icon {
    background: var(--gradient);
    color: white;
    transform: scale(1.08);
}
.why-card h4 { font-family: var(--font-display); margin-bottom: 8px; }
.why-card p { color: var(--text-muted); font-size: 0.88rem; }

/* Footer */
.site-footer {
    background: var(--dark);
    color: rgba(255,255,255,0.78);
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}
.footer-main { padding: 80px 0 48px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-brand .brand-express { color: white; }
.footer-about p { margin: 18px 0 22px; font-size: 0.9rem; line-height: 1.75; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 40px; height: 40px; border-radius: 10px;
    background: rgba(255,255,255,0.07);
    display: grid; place-items: center;
    transition: background 0.25s, transform 0.25s;
}
.footer-social a:hover { background: var(--primary); transform: translateY(-3px); }
.footer-col h4 { font-family: var(--font-display); color: white; font-size: 1rem; margin-bottom: 20px; font-weight: 700; }
.footer-links li { margin-bottom: 11px; }
.footer-links a { font-size: 0.9rem; opacity: 0.72; }
.footer-links a:hover { opacity: 1; color: var(--gold); }
.footer-contact li { display: flex; gap: 12px; margin-bottom: 14px; font-size: 0.9rem; }
.footer-contact i { color: var(--primary); margin-top: 3px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 22px 0; text-align: center; font-size: 0.84rem; opacity: 0.55; }

/* WhatsApp — sol alt */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    left: 28px;
    right: auto;
    z-index: 9998;
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    gap: 0;
    max-width: calc(100% - 100px);
    transition: gap 0.3s;
}
.whatsapp-float__btn {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    display: grid;
    place-items: center;
    font-size: 1.65rem;
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4);
    transition: transform 0.25s;
    flex-shrink: 0;
}
.whatsapp-float:hover .whatsapp-float__btn { transform: scale(1.08); }
.whatsapp-float__label {
    max-width: 0;
    overflow: hidden;
    white-space: nowrap;
    background: white;
    color: #128c7e;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0;
    border-radius: 999px;
    box-shadow: var(--shadow-md);
    transition: max-width 0.35s, padding 0.35s, margin 0.35s;
}
.whatsapp-float:hover { gap: 10px; }
.whatsapp-float:hover .whatsapp-float__label {
    max-width: 200px;
    padding: 10px 18px;
    margin-right: 0;
}

/* ExpressAI — overlay + modal (body direct children) */
.expressai-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(16, 20, 38, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 2147483646;
}

.expressai-overlay.is-open {
    display: block;
}

.expressai-chat {
    display: none;
    position: fixed;
    z-index: 2147483647;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(16, 20, 38, 0.2);
    border: 1px solid rgba(229, 231, 235, 0.9);
    flex-direction: column;
}

.expressai-chat.is-open {
    display: flex;
}

/* ExpressAI toggle — sağ alt */
.expressai {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9998;
    max-width: calc(100% - 32px);
}

.expressai__toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px 10px 14px;
    border: none;
    border-radius: 999px;
    background: var(--gradient);
    color: white;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.92rem;
    cursor: pointer;
    box-shadow: 0 12px 36px rgba(239, 63, 69, 0.35);
    transition: transform 0.3s var(--ease), box-shadow 0.3s, opacity 0.3s;
    overflow: visible;
}

.expressai__toggle:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 44px rgba(239, 63, 69, 0.42);
}

.expressai__toggle.is-active {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.92);
}

.expressai__toggle-ring {
    position: absolute;
    inset: -4px;
    border-radius: 999px;
    border: 2px solid rgba(239, 63, 69, 0.35);
    animation: expressaiPulse 2.2s ease-out infinite;
    pointer-events: none;
}

@keyframes expressaiPulse {
    0% { transform: scale(1); opacity: 0.75; }
    70% { transform: scale(1.18); opacity: 0; }
    100% { transform: scale(1.18); opacity: 0; }
}

.expressai__toggle-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    display: grid;
    place-items: center;
    font-size: 1.1rem;
}

.expressai__toggle-label { letter-spacing: 0.02em; }

.expressai__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 18px 16px;
    background: linear-gradient(135deg, #ef3f45 0%, #ff6238 55%, #ff7a45 100%);
    color: white;
    flex-shrink: 0;
}

.expressai__header-info {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.expressai__avatar {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.18);
    display: grid;
    place-items: center;
    font-size: 1.35rem;
    flex-shrink: 0;
}

.expressai__title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
}

.expressai__subtitle {
    margin: 4px 0 0;
    font-size: 0.78rem;
    opacity: 0.9;
    line-height: 1.4;
}

.expressai__close {
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.16);
    color: white;
    display: grid;
    place-items: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.25s;
}

.expressai__close:hover { background: rgba(255, 255, 255, 0.28); }

.expressai-chat-body {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 16px 16px 8px;
    -webkit-overflow-scrolling: touch;
}

.expressai-chat-actions {
    position: sticky;
    bottom: 0;
    background: #fff;
    padding: 14px 0 0;
    margin-top: 4px;
    box-shadow: 0 -12px 24px rgba(255, 255, 255, 0.92);
}

.expressai__chat { margin-bottom: 14px; }

.expressai__bubble {
    padding: 14px 16px;
    border-radius: 18px 18px 18px 6px;
    font-size: 0.88rem;
    line-height: 1.65;
    max-width: 100%;
}

.expressai__bubble--bot {
    background: var(--bg-soft);
    border: 1px solid var(--border);
    color: var(--text);
}

.expressai__bubble--bot p + p { margin-top: 8px; }

.expressai__form {
    display: grid;
    gap: 12px;
}

.expressai__field label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 6px;
}

.expressai__field label span { color: var(--primary); }

.expressai__field input,
.expressai__field textarea {
    width: 100%;
    max-width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: 12px;
    font-family: inherit;
    font-size: 0.9rem;
    color: var(--text);
    background: white;
    transition: border-color 0.25s, box-shadow 0.25s;
}

.expressai__field input:focus,
.expressai__field textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(239, 63, 69, 0.1);
}

.expressai__field textarea {
    resize: vertical;
    min-height: 84px;
}

.expressai__error {
    padding: 10px 12px;
    border-radius: 10px;
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #b91c1c;
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.5;
}

.expressai__submit {
    width: 100%;
    padding: 14px 16px;
    border: none;
    border-radius: 14px;
    background: var(--gradient);
    color: white;
    font-family: inherit;
    font-weight: 700;
    font-size: 0.88rem;
    line-height: 1.35;
    cursor: pointer;
    box-shadow: 0 10px 28px rgba(239, 63, 69, 0.28);
    transition: transform 0.25s, opacity 0.25s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
}

.expressai__submit:hover:not(:disabled) { transform: translateY(-1px); }
.expressai__submit:disabled { opacity: 0.75; cursor: wait; }

.expressai__spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-top-color: white;
    border-radius: 50%;
    display: inline-block;
    animation: spin 0.7s linear infinite;
    vertical-align: middle;
    margin-right: 6px;
}

body.expressai-open {
    overflow: hidden !important;
    touch-action: none;
}

@media (max-width: 768px) {
    body.expressai-open {
        position: fixed;
        width: 100%;
        left: 0;
        right: 0;
    }
}

/* ExpressAI — masaüstü panel */
@media (min-width: 769px) {
    .expressai-overlay.is-open {
        display: none !important;
    }

    .expressai-chat {
        right: 24px;
        bottom: 96px;
        left: auto;
        width: 420px;
        max-width: calc(100vw - 48px);
        max-height: calc(100vh - 140px);
        border-radius: 24px;
        animation: expressaiDesktopIn 0.35s var(--ease);
    }

    .expressai-chat-body {
        max-height: calc(100vh - 260px);
    }
}

@keyframes expressaiDesktopIn {
    from { opacity: 0; transform: translateY(12px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* ExpressAI — mobil bottom-sheet */
@media (max-width: 768px) {
    .expressai-overlay.is-open {
        display: block !important;
    }

    .expressai-chat.is-open {
        display: flex !important;
        flex-direction: column !important;
        position: fixed !important;
        inset: auto 0 0 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        height: 82vh !important;
        max-height: 82vh !important;
        border-radius: 28px 28px 0 0 !important;
        border-bottom: none;
        animation: expressaiSheetIn 0.38s var(--ease) forwards;
    }

    .expressai-chat-body {
        flex: 1 !important;
        overflow-y: auto !important;
        max-height: none !important;
        padding-bottom: 24px !important;
    }

    .expressai-chat-actions {
        padding-bottom: 8px;
    }

    .expressai {
        bottom: 16px;
        right: 16px;
        z-index: 9998;
    }

    .expressai__toggle {
        padding: 8px 14px 8px 10px;
        font-size: 0.84rem;
        gap: 8px;
    }

    .expressai__toggle-icon {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }

    .expressai__submit {
        font-size: 0.82rem;
        padding: 13px 14px;
    }
}

@keyframes expressaiSheetIn {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

/* Alerts */
.alert-floating {
    position: fixed;
    top: calc(var(--header-total-height) + 16px);
    right: 24px;
    z-index: 10000;
    padding: 16px 22px; border-radius: 14px;
    font-weight: 600; font-size: 0.9rem;
    box-shadow: var(--shadow-lg);
    animation: slideIn 0.4s var(--ease);
    max-width: 380px;
}
.alert-success { background: #059669; color: white; }
.alert-danger { background: var(--primary); color: white; }
@keyframes slideIn { from { transform: translateX(110%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

/* Reveal */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.text-center { text-align: center; }
.mt-4 { margin-top: 24px; }

/* Responsive */
@media (max-width: 1100px) {
    .hero-premium__grid, .about-block, .courier-layout, .contact-layout, .detail-layout, .seo-block { grid-template-columns: 1fr; gap: 40px; }
    .seo-block--reverse .seo-block__media, .seo-block--reverse .seo-block__text { order: unset; }
    .hero-visual { min-height: 340px; margin-top: 20px; }
    .process-grid::before { display: none; }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .services-grid, .blog-grid, .advantages-grid, .why-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-strip__grid, .stats-bar__grid { grid-template-columns: repeat(2, 1fr); }
    .mv-grid { grid-template-columns: 1fr; }
    .cta-banner__inner { flex-direction: column; text-align: center; }
}

/* Header logo — tablet */
@media (max-width: 1024px) and (min-width: 769px) {
    :root {
        --logo-height: 70px;
        --logo-height-scrolled: 54px;
        --navbar-height: 98px;
        --header-total-height: 148px;
    }

    .site-header.is-scrolled {
        --navbar-height: 76px;
    }

    .site-logo,
    .navbar-brand img {
        max-width: min(260px, 34vw);
    }
}

@media (max-width: 768px) {
    :root {
        --topbar-height: 0px;
        --logo-height: 58px;
        --logo-height-scrolled: 52px;
        --navbar-height: 92px;
        --header-total-height: 92px;
        --header-h: 92px;
    }

    .site-header.is-scrolled {
        --navbar-height: 76px;
        --logo-height: var(--logo-height-scrolled);
    }

    .navbar-brand {
        padding: 8px 10px 8px 2px;
        max-width: calc(100% - 52px);
    }

    .site-logo,
    .navbar-brand img {
        max-width: min(220px, calc(100vw - 88px));
    }

    body {
        padding-top: var(--header-total-height);
        overflow-x: hidden;
    }

    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .header-top { display: none; }

    .page-home .hero-premium {
        margin-top: calc(-1 * var(--header-total-height));
        padding-top: calc(var(--header-total-height) + 32px);
        min-height: auto;
        max-height: none;
        padding-bottom: 48px;
    }

    .page-hero,
    .page-banner {
        margin-top: 0;
        padding: 40px 0 48px;
    }

    .nav-menu, .btn-header { display: none; }
    .nav-toggle { display: flex; }

    .grid,
    .services-grid,
    .blog-grid,
    .features-grid,
    .advantages-grid,
    .why-grid,
    .trust-strip__grid,
    .stats-bar__grid,
    .process-grid,
    .footer-grid,
    .hero-premium__grid,
    .about-block,
    .courier-layout,
    .contact-layout,
    .detail-layout,
    .seo-block,
    .mv-grid,
    .form-row {
        grid-template-columns: 1fr !important;
    }

    .hero-premium__actions { flex-direction: column; }
    .hero-premium__actions .btn { width: 100%; max-width: 100%; }
    .service-card__image { height: 220px; }
    .service-card__image .visual-media,
    .service-card__image .visual-media--image { min-height: 220px; }
    .blog-card__image { height: 200px; }
    .blog-card__image .visual-media,
    .blog-card__image .visual-media--image { min-height: 200px; }
    .service-card__body,
    .blog-card__body { padding: 20px 18px 22px; }
    .service-card__tags { gap: 6px; }
    .card-tag { font-size: 0.7rem; padding: 5px 9px; }
    .card-cta { padding: 12px 16px; font-size: 0.86rem; }
    .service-card__glass-icon { width: 44px; height: 44px; font-size: 1.15rem; }
    .courier-form-card, .contact-form-card { padding: 24px; }
    .section { padding: 72px 0; overflow-x: hidden; }
    .about-block__badge { right: 10px; bottom: -10px; padding: 16px 20px; }
    .about-stats { grid-template-columns: 1fr; }
    .article-footer { flex-direction: column; }
    .whatsapp-float {
        bottom: 16px;
        left: 16px;
        right: auto;
        max-width: calc(50% - 24px);
    }
    .whatsapp-float__btn { width: 52px; height: 52px; font-size: 1.45rem; }
    .whatsapp-float__label { display: none; }

    .hero-visual__card--1 { left: 0; }
    .hero-visual__card--2 { right: 0; }
    .hero-visual__card--3 { left: 0; }
    .trust-strip { margin-top: 0; }
    .stats-bar { margin-top: 0; }
    .courier-steps { margin-top: 8px; }
    .visual-media__label { opacity: 1; transform: none; }
    .cta-banner__inner { padding: 32px 24px; }
    .cta-banner__actions { width: 100%; flex-direction: column; }
    .cta-banner__actions .btn { width: 100%; }
    .btn { max-width: 100%; }
    .map-wrap iframe { max-width: 100%; }
    .mobile-drawer__panel { width: 100%; max-width: 100%; }
    .alert-floating { left: 16px; right: 16px; max-width: none; }
}
