/*
Theme Name: Yüklen Nakliyat
Theme URI: https://yuklen.io
Author: Yüklen
Author URI: https://yuklen.io
Description: Maltepe merkezli, İstanbul ve Türkiye geneline hizmet veren Yüklen Nakliyat için modern, premium ve tamamen responsive kurumsal lojistik WordPress teması. Paletli yük taşıma, kolili ürün taşımacılığı ve forklift kiralama hizmetleri için hazır bölümler içerir.
Version: 1.0.0
Requires at least: 5.8
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: yuklen
Tags: business, logistics, transportation, corporate, responsive-layout, custom-menu, custom-logo, featured-images, translation-ready
*/

/* ==========================================================================
   1. Design Tokens
   ========================================================================== */
:root {
    --navy-900: #05101f;
    --navy-800: #0a1d37;
    --navy-700: #102748;
    --navy-600: #17365f;
    --navy-500: #21467a;

    --accent: #f6a417;
    --accent-600: #e5920a;
    --accent-2: #ff7a1a;

    --ink: #0f1c30;
    --body: #46566d;
    --muted: #6b7a90;
    --line: #e6eaf1;
    --line-2: #eef2f8;

    --bg: #ffffff;
    --bg-soft: #f4f7fb;
    --bg-navy: var(--navy-800);

    --white: #ffffff;

    --radius-sm: 10px;
    --radius: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    --shadow-sm: 0 2px 8px rgba(10, 29, 55, 0.06);
    --shadow: 0 18px 40px -18px rgba(10, 29, 55, 0.22);
    --shadow-lg: 0 40px 80px -30px rgba(10, 29, 55, 0.35);
    --shadow-accent: 0 18px 34px -14px rgba(246, 164, 23, 0.55);

    --container: 1200px;
    --gutter: clamp(20px, 5vw, 40px);

    --ff-display: "Plus Jakarta Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
    --ff-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;

    --header-h: 84px;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ==========================================================================
   2. Base / Reset
   ========================================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-h) + 20px);
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: var(--ff-body);
    font-size: 17px;
    line-height: 1.7;
    color: var(--body);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--ff-display);
    color: var(--ink);
    line-height: 1.14;
    margin: 0 0 0.5em;
    font-weight: 800;
    letter-spacing: -0.02em;
}

p {
    margin: 0 0 1.2em;
}

a {
    color: var(--accent-600);
    text-decoration: none;
    transition: color 0.25s var(--ease);
}

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

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
}

:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 3px;
    border-radius: 4px;
}

/* ==========================================================================
   3. Layout helpers
   ========================================================================== */
.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: var(--gutter);
}

.section {
    padding-block: clamp(64px, 9vw, 120px);
    position: relative;
}

.section--soft {
    background: var(--bg-soft);
}

.section--navy {
    background:
        radial-gradient(1200px 600px at 15% -10%, rgba(246, 164, 23, 0.12), transparent 60%),
        radial-gradient(900px 500px at 100% 0%, rgba(33, 70, 122, 0.55), transparent 55%),
        var(--navy-800);
    color: rgba(255, 255, 255, 0.82);
}

.section--navy h2,
.section--navy h3 {
    color: #fff;
}

.section-head {
    max-width: 720px;
    margin: 0 auto clamp(40px, 5vw, 64px);
    text-align: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent-600);
    background: rgba(246, 164, 23, 0.12);
    padding: 8px 16px;
    border-radius: 100px;
    margin-bottom: 18px;
}

.section--navy .eyebrow {
    color: var(--accent);
    background: rgba(246, 164, 23, 0.16);
}

.eyebrow::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
}

.section-title {
    font-size: clamp(30px, 4.4vw, 46px);
    margin-bottom: 16px;
}

.section-lead {
    font-size: clamp(17px, 2vw, 19px);
    color: var(--muted);
    margin: 0;
}

.section--navy .section-lead {
    color: rgba(255, 255, 255, 0.72);
}

/* ==========================================================================
   4. Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    padding: 16px 28px;
    border-radius: 100px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease),
        background 0.28s var(--ease), color 0.28s var(--ease), border-color 0.28s var(--ease);
    white-space: nowrap;
}

.btn svg {
    width: 19px;
    height: 19px;
    flex: none;
}

.btn--primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
    color: #1c1204;
    box-shadow: var(--shadow-accent);
}

.btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 40px -12px rgba(246, 164, 23, 0.65);
    color: #1c1204;
}

.btn--ghost {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.32);
    backdrop-filter: blur(4px);
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: #fff;
    color: #fff;
    transform: translateY(-3px);
}

.btn--dark {
    background: var(--navy-800);
    color: #fff;
}

.btn--dark:hover {
    background: var(--navy-700);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn--light {
    background: #fff;
    color: var(--navy-800);
    box-shadow: var(--shadow-sm);
}

.btn--light:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    color: var(--navy-800);
}

.btn--block {
    width: 100%;
}

/* ==========================================================================
   5. Header
   ========================================================================== */
.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    height: var(--header-h);
    display: flex;
    align-items: center;
    transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease),
        height 0.35s var(--ease);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: var(--gutter);
}

/* Transparent over hero, solid on scroll */
.site-header.is-transparent {
    background: transparent;
}

.site-header.is-solid {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: saturate(180%) blur(14px);
    box-shadow: 0 6px 24px -12px rgba(10, 29, 55, 0.28);
    height: 72px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--ff-display);
    font-weight: 800;
    font-size: 23px;
    letter-spacing: -0.02em;
    color: #fff;
}

.site-header.is-solid .brand {
    color: var(--ink);
}

.brand__mark {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
    color: #1c1204;
    box-shadow: var(--shadow-accent);
    flex: none;
}

.brand__mark svg {
    width: 26px;
    height: 26px;
}

.brand img.custom-logo {
    height: 46px;
    width: auto;
}

.brand__logo {
    height: 40px;
    width: auto;
    display: block;
}

.site-header.is-solid .brand__logo {
    height: 36px;
}

.brand__name b {
    font-weight: 800;
}

.brand__name span {
    display: block;
    font-family: var(--ff-body);
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    opacity: 0.72;
    margin-top: 2px;
}

/* Nav */
.main-nav ul {
    display: flex;
    align-items: center;
    gap: 6px;
}

.main-nav a {
    display: inline-block;
    font-family: var(--ff-display);
    font-weight: 600;
    font-size: 15.5px;
    color: rgba(255, 255, 255, 0.9);
    padding: 10px 16px;
    border-radius: 100px;
    position: relative;
    transition: color 0.25s var(--ease), background 0.25s var(--ease);
}

.site-header.is-solid .main-nav a {
    color: var(--ink);
}

.main-nav a:hover,
.main-nav .current-menu-item > a,
.main-nav .current_page_item > a {
    color: var(--accent-600);
    background: rgba(246, 164, 23, 0.12);
}

.site-header.is-transparent .main-nav a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.header-call {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    font-size: 15px;
}

.header-call svg {
    width: 17px;
    height: 17px;
}

/* Mobile toggle (hamburger) */
.nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    padding: 0;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(6px);
    border-radius: 14px;
    transition: background 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.nav-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
}

.site-header.is-solid .nav-toggle {
    border-color: var(--line);
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
    content: "";
    position: absolute;
    left: 50%;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transform: translateX(-50%);
    transition: width 0.3s var(--ease), background 0.3s var(--ease);
}

.nav-toggle span { top: 50%; margin-top: -1px; width: 20px; }
.nav-toggle span::before { top: -7px; width: 20px; }
.nav-toggle span::after { top: 7px; width: 13px; }

.nav-toggle:hover span::after { width: 20px; }

.site-header.is-solid .nav-toggle span,
.site-header.is-solid .nav-toggle span::before,
.site-header.is-solid .nav-toggle span::after {
    background: var(--navy-800);
}

/* ==========================================================================
   5b. Mobile slide-in panel
   ========================================================================== */
.mobile-panel,
.nav-overlay {
    display: none;
}

.mobile-panel {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1100;
    width: min(400px, 90vw);
    flex-direction: column;
    background: linear-gradient(180deg, var(--navy-800) 0%, var(--navy-900) 100%);
    color: #fff;
    transform: translateX(105%);
    visibility: hidden;
    transition: transform 0.5s var(--ease), visibility 0.5s;
    box-shadow: -30px 0 80px -20px rgba(0, 0, 0, 0.55);
    overflow-y: auto;
    overscroll-behavior: contain;
}

body.nav-open .mobile-panel {
    transform: translateX(0);
    visibility: visible;
    transition: transform 0.5s var(--ease), visibility 0s;
}

.mobile-panel__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-panel .brand { color: #fff; }

.mobile-close {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: none;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    transition: background 0.3s var(--ease), transform 0.4s var(--ease);
}

.mobile-close:hover {
    background: rgba(255, 255, 255, 0.16);
    transform: rotate(90deg);
}

.mobile-close svg { width: 22px; height: 22px; }

.mobile-nav {
    padding: 16px 16px 8px;
    flex: 1;
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mobile-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 15px 16px;
    font-family: var(--ff-display);
    font-weight: 600;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    transition: background 0.25s var(--ease), color 0.25s var(--ease), padding-left 0.25s var(--ease);
}

.mobile-nav a::after {
    content: "";
    width: 8px;
    height: 8px;
    flex: none;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
    opacity: 0.45;
    transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}

.mobile-nav a:hover,
.mobile-nav a:focus-visible,
.mobile-nav .current-menu-item > a,
.mobile-nav .current_page_item > a {
    background: rgba(255, 255, 255, 0.06);
    color: var(--accent);
    padding-left: 22px;
}

.mobile-nav a:hover::after,
.mobile-nav .current-menu-item > a::after {
    opacity: 1;
    transform: rotate(45deg) translate(1px, -1px);
}

/* Staggered reveal of menu items when opening */
.mobile-nav li {
    opacity: 0;
    transform: translateX(22px);
    transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}

body.nav-open .mobile-nav li { opacity: 1; transform: none; }
body.nav-open .mobile-nav li:nth-child(1) { transition-delay: 0.12s; }
body.nav-open .mobile-nav li:nth-child(2) { transition-delay: 0.18s; }
body.nav-open .mobile-nav li:nth-child(3) { transition-delay: 0.24s; }
body.nav-open .mobile-nav li:nth-child(4) { transition-delay: 0.30s; }
body.nav-open .mobile-nav li:nth-child(5) { transition-delay: 0.36s; }
body.nav-open .mobile-nav li:nth-child(6) { transition-delay: 0.42s; }

.mobile-panel__cta {
    display: grid;
    gap: 12px;
    padding: 12px 22px 6px;
}

.btn--wa {
    background: #25d366;
    color: #fff;
}

.btn--wa:hover {
    background: #1db954;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 16px 30px -14px rgba(37, 211, 102, 0.6);
}

.mobile-panel__contact {
    margin-top: auto;
    padding: 22px 22px 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: grid;
    gap: 14px;
}

.mobile-panel__contact a,
.mobile-panel__contact p {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.72);
}

.mobile-panel__contact a {
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: 18px;
    color: #fff;
}

.mobile-panel__contact a:hover { color: var(--accent); }

.mobile-panel__contact svg {
    width: 20px;
    height: 20px;
    flex: none;
    color: var(--accent);
}

.nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 1050;
    background: rgba(5, 16, 31, 0.55);
    backdrop-filter: blur(3px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s var(--ease), visibility 0.4s;
}

body.nav-open .nav-overlay {
    opacity: 1;
    visibility: visible;
}

body.nav-open {
    overflow: hidden;
}

/* ==========================================================================
   6. Hero
   ========================================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding-top: var(--header-h);
    overflow: hidden;
    isolation: isolate;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 60% center;
    transform: scale(1.08);
    animation: heroZoom 16s ease-out forwards;
}

@keyframes heroZoom {
    to { transform: scale(1); }
}

.hero__overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(5, 16, 31, 0.94) 0%, rgba(5, 16, 31, 0.72) 42%, rgba(5, 16, 31, 0.15) 100%),
        linear-gradient(0deg, rgba(5, 16, 31, 0.7) 0%, transparent 40%);
}

.hero__inner {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: var(--gutter);
    padding-block: clamp(60px, 10vh, 120px);
}

.hero__content {
    max-width: 660px;
    color: #fff;
}

.hero .eyebrow {
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero__title {
    color: #fff;
    font-size: clamp(38px, 6.4vw, 68px);
    line-height: 1.04;
    margin-bottom: 22px;
}

.hero__title .accent {
    background: linear-gradient(120deg, var(--accent) 0%, var(--accent-2) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero__desc {
    font-size: clamp(17px, 2.2vw, 20px);
    color: rgba(255, 255, 255, 0.82);
    max-width: 540px;
    margin-bottom: 34px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 28px 40px;
    margin-top: 46px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.hero__trust-item {
    display: flex;
    flex-direction: column;
}

.hero__trust-item b {
    font-family: var(--ff-display);
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.hero__trust-item span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.66);
    margin-top: 6px;
}

.hero__scroll {
    position: absolute;
    left: 50%;
    bottom: 26px;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: floaty 2.4s ease-in-out infinite;
}

.hero__scroll span {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 14px;
    position: relative;
}

.hero__scroll span::after {
    content: "";
    position: absolute;
    top: 8px;
    left: 50%;
    width: 4px;
    height: 8px;
    background: var(--accent);
    border-radius: 4px;
    transform: translateX(-50%);
    animation: scrollDot 2s ease-in-out infinite;
}

@keyframes floaty {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

@keyframes scrollDot {
    0% { opacity: 0; top: 6px; }
    50% { opacity: 1; }
    100% { opacity: 0; top: 22px; }
}

/* ==========================================================================
   7. Stats strip
   ========================================================================== */
.stats {
    margin-top: -60px;
    position: relative;
    z-index: 5;
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.stat {
    background: #fff;
    padding: 34px 28px;
    text-align: center;
}

.stat__icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 14px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(246, 164, 23, 0.12);
    color: var(--accent-600);
}

.stat__icon svg { width: 26px; height: 26px; }

.stat__num {
    font-family: var(--ff-display);
    font-size: clamp(28px, 3.4vw, 40px);
    font-weight: 800;
    color: var(--ink);
    line-height: 1;
    letter-spacing: -0.02em;
}

.stat__label {
    font-size: 14.5px;
    color: var(--muted);
    margin-top: 8px;
}

/* ==========================================================================
   8. About
   ========================================================================== */
.about__grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: clamp(40px, 6vw, 72px);
    align-items: center;
}

.about__media {
    position: relative;
}

.about__media img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4 / 3.4;
    object-fit: cover;
}

.about__badge {
    position: absolute;
    right: -18px;
    bottom: -26px;
    background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
    color: #fff;
    padding: 24px 26px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    max-width: 220px;
}

.about__badge b {
    font-family: var(--ff-display);
    font-size: 40px;
    line-height: 1;
    display: block;
    background: linear-gradient(120deg, var(--accent), var(--accent-2));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about__badge span {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.78);
    margin-top: 6px;
}

.about__media::before {
    content: "";
    position: absolute;
    left: -22px;
    top: -22px;
    width: 130px;
    height: 130px;
    border-radius: 20px;
    background: radial-gradient(circle at 30% 30%, rgba(246, 164, 23, 0.28), transparent 70%);
    z-index: -1;
}

.feature-list {
    display: grid;
    gap: 16px;
    margin: 26px 0 32px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 16px;
    color: var(--ink);
    font-weight: 500;
}

.feature-list svg {
    flex: none;
    width: 24px;
    height: 24px;
    margin-top: 2px;
    color: var(--accent-600);
}

/* ==========================================================================
   9. Services
   ========================================================================== */
.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease),
        border-color 0.4s var(--ease);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-card__media {
    position: relative;
    aspect-ratio: 16 / 11;
    overflow: hidden;
}

.service-card__media-link {
    position: absolute;
    inset: 0;
    display: block;
}

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

.service-card:hover .service-card__media img {
    transform: scale(1.08);
}

.service-card__media::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(to top, rgba(5, 16, 31, 0.55), transparent 55%);
}

.service-card__num {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(6px);
    font-family: var(--ff-display);
    font-weight: 800;
    color: var(--navy-800);
    font-size: 18px;
}

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

.service-card__title {
    font-size: 22px;
    margin-bottom: 10px;
}

.service-card__text {
    font-size: 15.5px;
    color: var(--muted);
    margin-bottom: 22px;
    flex: 1;
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: 15px;
    color: var(--navy-800);
}

.service-card__link svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s var(--ease);
}

.service-card:hover .service-card__link {
    color: var(--accent-600);
}

.service-card:hover .service-card__link svg {
    transform: translateX(5px);
}

/* ==========================================================================
   10. Why / features grid
   ========================================================================== */
.why__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.why-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: var(--radius);
    padding: 30px 28px;
    transition: transform 0.35s var(--ease), background 0.35s var(--ease),
        border-color 0.35s var(--ease);
}

.why-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(246, 164, 23, 0.4);
}

.why-card__icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(246, 164, 23, 0.18), rgba(255, 122, 26, 0.1));
    color: var(--accent);
    margin-bottom: 20px;
}

.why-card__icon svg { width: 28px; height: 28px; }

.why-card h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* ==========================================================================
   11. Process / steps
   ========================================================================== */
.process__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    counter-reset: step;
}

.step {
    position: relative;
    text-align: center;
    padding: 12px;
}

.step__num {
    width: 78px;
    height: 78px;
    margin: 0 auto 22px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--line);
    font-family: var(--ff-display);
    font-weight: 800;
    font-size: 28px;
    color: var(--navy-800);
    position: relative;
    z-index: 2;
    transition: transform 0.35s var(--ease), border-color 0.35s var(--ease),
        box-shadow 0.35s var(--ease);
}

.step:hover .step__num {
    border-color: var(--accent);
    box-shadow: var(--shadow-accent);
    transform: translateY(-6px);
}

.step__num::after {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.35s var(--ease);
}

/* connector line */
.process__grid .step:not(:last-child)::before {
    content: "";
    position: absolute;
    top: 39px;
    left: calc(50% + 48px);
    right: calc(-50% + 48px);
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--line) 0 8px, transparent 8px 16px);
    z-index: 1;
}

.step h3 {
    font-size: 19px;
    margin-bottom: 8px;
}

.step p {
    font-size: 14.5px;
    color: var(--muted);
    margin: 0;
}

/* ==========================================================================
   12. CTA banner
   ========================================================================== */
.cta-banner {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    padding: clamp(44px, 6vw, 72px);
    background:
        radial-gradient(700px 400px at 100% 0%, rgba(246, 164, 23, 0.22), transparent 60%),
        linear-gradient(135deg, var(--navy-800), var(--navy-600));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
    flex-wrap: wrap;
    box-shadow: var(--shadow-lg);
}

.cta-banner::before {
    content: "";
    position: absolute;
    right: -60px;
    bottom: -80px;
    width: 320px;
    height: 320px;
    border: 40px solid rgba(255, 255, 255, 0.04);
    border-radius: 50%;
}

.cta-banner__text { position: relative; max-width: 640px; }

.cta-banner h2 {
    color: #fff;
    font-size: clamp(26px, 3.6vw, 40px);
    margin-bottom: 12px;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    margin: 0;
}

.cta-banner__actions {
    position: relative;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* ==========================================================================
   13. Contact
   ========================================================================== */
.contact__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(32px, 5vw, 56px);
    align-items: start;
    max-width: 720px;
    margin-inline: auto;
}

.contact-cards {
    display: grid;
    gap: 18px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px 24px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

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

.contact-card__icon {
    flex: none;
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #1c1204;
}

.contact-card__icon svg { width: 26px; height: 26px; }

.contact-card h3 {
    font-size: 17px;
    margin-bottom: 4px;
}

.contact-card p,
.contact-card a {
    margin: 0;
    font-size: 16px;
    color: var(--body);
}

.contact-card a:hover { color: var(--accent-600); }

.contact-card__big a {
    font-family: var(--ff-display);
    font-weight: 800;
    font-size: 22px;
    color: var(--ink);
    letter-spacing: -0.01em;
}

/* Form */
.contact-form {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: clamp(28px, 4vw, 40px);
    box-shadow: var(--shadow);
}

.contact-form h3 {
    font-size: 24px;
    margin-bottom: 6px;
}

.contact-form > p {
    color: var(--muted);
    font-size: 15.5px;
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-field {
    margin-bottom: 16px;
}

.form-field label {
    display: block;
    font-family: var(--ff-display);
    font-weight: 600;
    font-size: 14px;
    color: var(--ink);
    margin-bottom: 8px;
}

.form-field input,
.form-field textarea,
.form-field select {
    width: 100%;
    font-family: var(--ff-body);
    font-size: 15.5px;
    color: var(--ink);
    padding: 14px 16px;
    border: 1.6px solid var(--line);
    border-radius: 12px;
    background: var(--bg-soft);
    transition: border-color 0.25s var(--ease), background 0.25s var(--ease),
        box-shadow 0.25s var(--ease);
}

.form-field textarea {
    resize: vertical;
    min-height: 128px;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
    outline: none;
    border-color: var(--accent);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(246, 164, 23, 0.14);
}

.form-note {
    font-size: 13px;
    color: var(--muted);
    margin: 14px 0 0;
    text-align: center;
}

.form-alert {
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 15px;
    margin-bottom: 20px;
}

.form-alert--ok {
    background: #e7f7ec;
    color: #1a7f43;
    border: 1px solid #b6e6c6;
}

.form-alert--err {
    background: #fdecec;
    color: #c0392b;
    border: 1px solid #f6c9c4;
}

/* ==========================================================================
   14. Footer
   ========================================================================== */
.site-footer {
    background: var(--navy-900);
    color: rgba(255, 255, 255, 0.66);
    padding-top: clamp(56px, 8vw, 88px);
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 54px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer .brand { margin-bottom: 20px; }

.footer__about p {
    font-size: 15px;
    max-width: 320px;
    margin-bottom: 22px;
}

.footer__social {
    display: flex;
    gap: 12px;
}

.footer__social a {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.8);
    transition: background 0.3s var(--ease), transform 0.3s var(--ease), color 0.3s;
}

.footer__social a:hover {
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #1c1204;
    transform: translateY(-3px);
}

.footer__social svg { width: 19px; height: 19px; }

.footer__col h4 {
    color: #fff;
    font-size: 16px;
    letter-spacing: 0.02em;
    margin-bottom: 20px;
}

.footer__col ul { display: grid; gap: 12px; }

.footer__col a,
.footer__col li {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.66);
}

.footer__col a:hover { color: var(--accent); }

.footer__contact li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.footer__contact svg {
    flex: none;
    width: 19px;
    height: 19px;
    margin-top: 3px;
    color: var(--accent);
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    padding-block: 26px;
    font-size: 14px;
}

.footer__bottom p { margin: 0; }

.footer__bottom .accent { color: var(--accent); }

/* Floating call button (mobile) */
.floating-call {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 900;
    width: 60px;
    height: 60px;
    display: none;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #1c1204;
    box-shadow: var(--shadow-accent);
    animation: pulse 2.2s infinite;
}

.floating-call svg { width: 26px; height: 26px; }

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(246, 164, 23, 0.5); }
    70% { box-shadow: 0 0 0 18px rgba(246, 164, 23, 0); }
    100% { box-shadow: 0 0 0 0 rgba(246, 164, 23, 0); }
}

/* ==========================================================================
   15. Reveal animations
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
    will-change: opacity, transform;
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
.reveal[data-delay="4"] { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
    .reveal { opacity: 1; transform: none; }
}

/* ==========================================================================
   16. Responsive
   ========================================================================== */
@media (max-width: 1080px) {
    .footer__grid { grid-template-columns: 1fr 1fr; }
    .footer__about { grid-column: 1 / -1; }
}

@media (max-width: 980px) {
    .about__grid { grid-template-columns: 1fr; }
    .about__media { max-width: 560px; }
    .stats__grid { grid-template-columns: repeat(3, 1fr); }
    .why__grid { grid-template-columns: repeat(2, 1fr); }
    .process__grid { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
    .process__grid .step::before { display: none; }
    .contact__grid { grid-template-columns: 1fr; }
    .cta-banner { flex-direction: column; align-items: flex-start; text-align: left; }
}

@media (max-width: 860px) {
    :root { --header-h: 72px; }

    .nav-toggle { display: inline-flex; }

    .header-actions .header-call span.txt { display: none; }
    .header-call { padding: 13px; }

    /* Masaüstü yatay menüyü gizle */
    .main-nav { display: none; }

    /* Kayan menü panelini ve arka planı etkinleştir */
    .mobile-panel { display: flex; }
    .nav-overlay { display: block; }

    .floating-call { display: grid; }
}

@media (max-width: 640px) {
    body { font-size: 16px; }
    .stats { margin-top: -34px; }
    .stats__grid { grid-template-columns: 1fr; }
    .services__grid { grid-template-columns: 1fr; }
    .why__grid { grid-template-columns: 1fr; }
    .process__grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .hero__trust { gap: 22px 30px; }
    .about__badge { right: 12px; bottom: -18px; padding: 18px 20px; }
    .cta-banner__actions { width: 100%; }
    .cta-banner__actions .btn { flex: 1; }
    .footer__grid { grid-template-columns: 1fr; }
    .footer__bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 420px) {
    .stats__grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   17. Accessibility & WordPress content
   ========================================================================== */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    position: absolute !important;
    word-wrap: normal !important;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 100000;
    background: #fff;
    color: var(--navy-800);
    padding: 12px 20px;
    border-radius: 0 0 10px 0;
    font-family: var(--ff-display);
    font-weight: 700;
    box-shadow: var(--shadow);
}

.skip-link:focus {
    left: 0;
}

/* WordPress post content */
.entry-content {
    font-size: 17px;
    color: var(--body);
}

.entry-content h2 { font-size: 30px; margin: 1.4em 0 0.5em; }
.entry-content h3 { font-size: 24px; margin: 1.3em 0 0.5em; }

.entry-content img,
.entry-content .wp-block-image {
    border-radius: var(--radius);
    margin-block: 1.4em;
}

.entry-content a {
    color: var(--accent-600);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.entry-content blockquote {
    margin: 1.6em 0;
    padding: 8px 24px;
    border-left: 4px solid var(--accent);
    background: var(--bg-soft);
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: var(--ink);
}

.entry-content ul,
.entry-content ol {
    padding-left: 1.4em;
    margin-block: 1.2em;
}

.entry-content ul { list-style: disc; }
.entry-content ol { list-style: decimal; }
.entry-content li { margin-bottom: 0.5em; }

.entry-content code {
    background: var(--bg-soft);
    padding: 2px 7px;
    border-radius: 6px;
    font-size: 0.92em;
}

.alignwide { margin-inline: calc(50% - 50vw); max-width: 100vw; }
.alignfull { margin-inline: calc(50% - 50vw); max-width: 100vw; }
.aligncenter { margin-inline: auto; display: block; }
.alignleft { float: left; margin: 6px 28px 18px 0; }
.alignright { float: right; margin: 6px 0 18px 28px; }

/* Pagination */
.pagination .nav-links,
.navigation .nav-links {
    display: inline-flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.pagination .page-numbers {
    display: inline-grid;
    place-items: center;
    min-width: 46px;
    height: 46px;
    padding: 0 12px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid var(--line);
    font-family: var(--ff-display);
    font-weight: 700;
    color: var(--ink);
    transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #1c1204;
    border-color: transparent;
}

/* Post navigation links (single) */
.post-navigation a,
.entry-content .page-links a {
    color: var(--navy-800);
    font-family: var(--ff-display);
    font-weight: 700;
}

/* Custom logo sizing */
.brand .custom-logo-link { display: inline-flex; }
