/* ============================================
   Yörük Gold Lojistik - Kurumsal Tema
   ============================================ */

:root {
    --primary: #122E4F;          /* Kurumsal lacivert */
    --primary-dark: #0A1F38;
    --primary-mid: #1E436E;
    --primary-light: #2C5990;
    --gold: #BE9B49;             /* Sıcak premium altın */
    --gold-light: #DCBE7B;
    --gold-dark: #9B7E36;
    --bg: #ffffff;
    --bg-soft: #f7f9fc;
    --bg-mid: #eef3f9;
    --text: #1a2535;
    --text-light: #6b7589;
    --text-mid: #3b4759;
    --border: #e6eaf1;
    --shadow-sm: 0 4px 14px rgba(18,46,79,.05);
    --shadow: 0 14px 36px rgba(18,46,79,.07);
    --shadow-lg: 0 26px 60px rgba(18,46,79,.1);
    --transition: all .35s cubic-bezier(.25,.46,.45,.94);
    --container: 1240px;
    --radius: 8px;
    --radius-sm: 4px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
input, select, textarea, button { font-family: inherit; }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', 'Inter', serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--primary);
    letter-spacing: -.3px;
}

.text-gold { color: var(--gold); }

/* ============ Buttons ============ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 30px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: .8px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}

.btn-gold {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
}
.btn-gold:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(201,169,97,.35);
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}
.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(14,42,71,.3);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,.5);
}
.btn-outline:hover {
    background: #fff;
    color: var(--primary);
    border-color: #fff;
}

.btn-lg { padding: 18px 40px; font-size: 15px; }
.btn-block { width: 100%; }

/* ============ Topbar ============ */
.topbar {
    background: var(--primary-dark);
    color: rgba(255,255,255,.78);
    font-size: 13px;
    padding: 10px 0;
}
.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.topbar-info { display: flex; gap: 28px; }
.topbar-info i { color: var(--gold); margin-right: 6px; }
.topbar-social { display: flex; gap: 10px; }
.topbar-social a {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    background: transparent;
    color: rgba(255,255,255,.72);
    font-size: 12px;
    line-height: 1;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.topbar-social a i {
    margin: 0;
    padding: 0;
    line-height: 1;
    font-size: inherit;
}
.topbar-social a:hover {
    background: #ffffff;
    color: var(--primary);
}
.topbar-info a { color: inherit; }
.topbar-info a:hover { color: var(--gold); }

/* ============ Header ============ */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}
.header.scrolled {
    box-shadow: var(--shadow-sm);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    max-width: var(--container);
    margin: 0 auto;
}
.logo img {
    height: 44px;
    width: auto;
    display: block;
}

.nav ul {
    display: flex;
    gap: 4px;
}
.nav a {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    letter-spacing: .3px;
    position: relative;
}
.nav a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}
.nav a:hover, .nav a.active {
    color: var(--gold-dark);
}
.nav a:hover::after, .nav a.active::after {
    width: 28px;
}

.header-actions { display: flex; align-items: center; gap: 14px; }
.nav-toggle {
    display: none;
    color: var(--primary);
    font-size: 22px;
}
.nav-close {
    display: none;
    position: absolute;
    top: 18px;
    right: 18px;
    color: #fff;
    font-size: 24px;
}

/* ============ Hero ============ */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
    padding: 100px 0;
    background: var(--primary-dark);
}
.hero::before { content: none; }

/* Hero Slider */
.hero-slides { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.08);
    transition: opacity 1.5s ease, transform 9s ease;
    z-index: 0;
}
.hero-slide.active {
    opacity: 1;
    transform: scale(1.0);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(110deg, rgba(10,31,56,.85) 0%, rgba(18,46,79,.65) 45%, rgba(18,46,79,.35) 100%);
    z-index: 1;
    pointer-events: none;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 4;
}
.slider-dots button {
    width: 38px;
    height: 4px;
    border-radius: 4px;
    background: rgba(255,255,255,.3);
    border: 0;
    cursor: pointer;
    padding: 0;
    transition: var(--transition);
}
.slider-dots button.active {
    background: var(--gold);
    width: 60px;
}
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px; height: 50px;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.18);
    color: #fff;
    border-radius: 50%;
    z-index: 4;
    cursor: pointer;
    font-size: 14px;
    transition: var(--transition);
    backdrop-filter: blur(8px);
}
@media (min-width: 768px) {
    .slider-arrow { display: inline-flex; }
}
.slider-arrow:hover {
    background: var(--gold);
    border-color: var(--gold);
}
.slider-arrow.prev { left: 24px; }
.slider-arrow.next { right: 24px; }
.hero-inner { position: relative; z-index: 2; width: 100%; }
.hero-content { max-width: 780px; }
.hero-tag {
    display: inline-block;
    color: var(--gold);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 24px;
    padding: 6px 14px;
    border: 1px solid rgba(201,169,97,.4);
    border-radius: 4px;
    background: rgba(201,169,97,.08);
}
.hero h1 {
    font-size: clamp(2.2rem, 5vw, 4rem);
    color: #fff;
    margin-bottom: 28px;
    line-height: 1.15;
    font-weight: 700;
}
.hero p {
    font-size: 17px;
    color: rgba(255,255,255,.88);
    margin-bottom: 40px;
    max-width: 640px;
    line-height: 1.8;
}
.hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 64px;
}

.hero-stats {
    display: flex;
    gap: 60px;
    padding-top: 36px;
    border-top: 1px solid rgba(255,255,255,.18);
}
.stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.stat-line {
    display: inline-flex;
    align-items: baseline;
    white-space: nowrap;
    line-height: 1;
}
.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    display: inline-block;
}
.stat-line .text-gold {
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
    margin-left: 2px;
}
.stat small {
    color: rgba(255,255,255,.7);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 10px;
    font-weight: 500;
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255,255,255,.4);
    border-radius: 14px;
    z-index: 3;
}
.scroll-down span {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    animation: scroll 1.8s infinite;
}
@keyframes scroll {
    0% { opacity: 1; transform: translate(-50%, 0); }
    100% { opacity: 0; transform: translate(-50%, 16px); }
}

/* ============ Strip ============ */
.strip {
    background: var(--bg-soft);
    padding: 56px 0;
    border-bottom: 1px solid var(--border);
}
.strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.strip-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px 26px;
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    border-left: 3px solid var(--gold);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
.strip-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-left-color: var(--primary);
}
.strip-item i {
    font-size: 30px;
    color: var(--gold);
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(201,169,97,.1);
    border-radius: 50%;
    transition: var(--transition);
}
.strip-item:hover i {
    background: var(--primary);
    color: var(--gold);
}
.strip-item h4 { color: var(--primary); font-size: 16px; margin-bottom: 4px; }
.strip-item p { color: var(--text-light); font-size: 13px; line-height: 1.5; }

/* ============ Section ============ */
.section { padding: 110px 0; }

.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 70px;
}
.section-head.light { color: #fff; }
.section-head.light h2 { color: #fff; }
.section-head.light p { color: rgba(255,255,255,.78); }

.section-tag {
    display: inline-block;
    color: var(--gold-dark);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.section-head.light .section-tag { color: var(--gold); }
.section-head h2,
.about h2 {
    font-size: clamp(1.9rem, 3.5vw, 2.6rem);
    margin-bottom: 16px;
    font-weight: 700;
}
.section-head p {
    color: var(--text-light);
    font-size: 16px;
}

/* ============ About ============ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}
.about-image {
    position: relative;
}
.about-img-main {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/5;
    position: relative;
}
.about-img-main::after {
    content: '';
    position: absolute;
    top: 20px; left: 20px;
    right: 20px; bottom: 20px;
    border: 2px solid rgba(255,255,255,.2);
    pointer-events: none;
}
.about-img-main img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.about-img-main:hover img { transform: scale(1.05); }

.about-img-badge {
    position: absolute;
    bottom: -28px;
    right: -28px;
    background: var(--primary);
    color: #fff;
    padding: 26px 32px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: var(--shadow-lg);
    border-bottom: 4px solid var(--gold);
}
.badge-num {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}
.badge-text {
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,.85);
    font-weight: 500;
}

.about-content .lead {
    font-size: 17px;
    color: var(--text-mid);
    margin-bottom: 18px;
    line-height: 1.8;
}
.about-content > p {
    color: var(--text-light);
    margin-bottom: 28px;
}
.about-list {
    margin-bottom: 36px;
}
.about-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 0;
    color: var(--text-mid);
    font-weight: 500;
    font-size: 15px;
}
.about-list i {
    width: 24px; height: 24px;
    background: var(--gold);
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    flex-shrink: 0;
}

/* ============ Services ============ */
.services { background: var(--bg-soft); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.service-card {
    background: #fff;
    padding: 42px 34px;
    border-radius: var(--radius);
    transition: var(--transition);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
    border-radius: var(--radius) var(--radius) 0 0;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.service-card:hover::before {
    transform: scaleX(1);
}
.service-card:hover .service-icon {
    background: var(--primary);
    color: var(--gold);
}
.service-icon {
    width: 72px; height: 72px;
    background: rgba(201,169,97,.12);
    color: var(--gold-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    font-size: 30px;
    margin-bottom: 24px;
    transition: var(--transition);
}
.service-card h3 { font-size: 20px; margin-bottom: 12px; }
.service-card p { color: var(--text-light); font-size: 15px; margin-bottom: 22px; line-height: 1.7; }

/* Resimli hizmet kartı (listeleme) */
.service-card.with-media { padding: 0; }
.service-card-media {
    position: relative;
    height: 200px;
    background: var(--primary);
    overflow: hidden;
}
.service-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.service-card-media::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(10,31,56,0) 45%, rgba(10,31,56,.4) 100%);
}
.service-card-icon {
    position: absolute;
    left: 26px; bottom: -27px;
    z-index: 2;
    width: 56px; height: 56px;
    border-radius: 14px;
    background: var(--primary);
    color: var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-size: 23px;
    box-shadow: 0 10px 24px rgba(18,46,79,.3);
    transition: var(--transition);
}
.service-card.with-media:hover .service-card-icon { background: var(--gold); color: var(--primary); }
.service-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 44px 28px 30px;
}
.service-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.service-link:hover { color: var(--gold-dark); }
.service-link:hover i { transform: translateX(4px); }
.service-link i { transition: var(--transition); }

/* ============ Why ============ */
.why {
    background:
        linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
    color: var(--text);
    position: relative;
    overflow: hidden;
}
.why::before {
    content: '';
    position: absolute;
    top: -120px; right: -120px;
    width: 460px; height: 460px;
    background: radial-gradient(circle, rgba(190,155,73,.10) 0%, transparent 70%);
    border-radius: 50%;
}
.why::after {
    content: '';
    position: absolute;
    bottom: -120px; left: -120px;
    width: 460px; height: 460px;
    background: radial-gradient(circle, rgba(18,46,79,.06) 0%, transparent 70%);
    border-radius: 50%;
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 2;
}
.why-card {
    background: #fff;
    border: 1px solid var(--border);
    padding: 38px 30px;
    border-radius: var(--radius);
    transition: var(--transition);
    position: relative;
    box-shadow: var(--shadow-sm);
}
.why-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
    border-radius: var(--radius) var(--radius) 0 0;
}
.why-card:hover {
    border-color: transparent;
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.why-card:hover::before { transform: scaleX(1); }
.why-num {
    font-family: 'Playfair Display', serif;
    font-size: 46px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    display: block;
    margin-bottom: 18px;
    opacity: .85;
}
.why-card h3 { color: var(--primary); font-size: 19px; margin-bottom: 10px; font-weight: 600; }
.why-card p { color: var(--text-light); font-size: 14px; line-height: 1.7; }

/* ============ Fleet ============ */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.fleet-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
    background: #fff;
}
.fleet-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.fleet-img {
    height: 240px;
    overflow: hidden;
    position: relative;
}
.fleet-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}
.fleet-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(14,42,71,.5) 100%);
}
.fleet-card:hover .fleet-img img {
    transform: scale(1.06);
}
.fleet-body {
    padding: 28px 28px 30px;
    border-top: 3px solid var(--gold);
}
.fleet-body h3 { font-size: 20px; margin-bottom: 10px; }
.fleet-body p { color: var(--text-light); font-size: 15px; line-height: 1.7; }

/* ============ CTA ============ */
.cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
    padding: 70px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.cta::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: var(--gold);
}
.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}
.cta h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 8px; }
.cta p { color: rgba(255,255,255,.8); font-size: 16px; }

/* ============ Contact ============ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 50px;
    margin-bottom: 60px;
}

.info-card {
    display: flex;
    gap: 18px;
    padding: 22px 24px;
    background: #fff;
    border-radius: var(--radius);
    margin-bottom: 16px;
    transition: var(--transition);
    border: 1px solid var(--border);
    border-left: 4px solid var(--gold);
}
.info-card:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateX(4px);
}
.info-card:hover h4 { color: #fff; }
.info-card:hover p { color: rgba(255,255,255,.78); }
.info-card:hover .info-icon {
    background: var(--gold);
    color: #fff;
}
.info-icon {
    width: 48px; height: 48px;
    flex-shrink: 0;
    background: rgba(201,169,97,.12);
    color: var(--gold-dark);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition);
}
.info-card h4 { font-size: 16px; margin-bottom: 4px; }
.info-card p { color: var(--text-light); font-size: 14px; line-height: 1.7; }

.contact-form {
    background: #fff;
    padding: 42px 38px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border-top: 4px solid var(--gold);
    border: 1px solid var(--border);
    border-top: 4px solid var(--gold);
}
.contact-form h3 {
    font-size: 22px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group { margin-bottom: 16px; }
.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-mid);
    margin-bottom: 6px;
    letter-spacing: .3px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 14px;
    color: var(--text);
    background: #fafbfc;
    transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(201,169,97,.1);
}
.form-group textarea { resize: vertical; min-height: 110px; }

/* Native select — custom chevron */
.form-group select {
    padding-right: 40px;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%236b7589' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='4,6 8,10 12,6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 14px 14px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
/* Focus durumunda ok rengi sabit gri kalır */

/* Custom Combobox */
.combobox {
    position: relative;
}
.combobox-input {
    width: 100%;
    padding: 13px 42px 13px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 14px;
    color: var(--text);
    background: #fafbfc;
    transition: var(--transition);
    cursor: pointer;
    font-family: inherit;
}
.combobox-input:focus {
    outline: none;
    border-color: var(--gold);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(201,169,97,.1);
}
.combobox-toggle {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    color: var(--text-light);
    pointer-events: none;
    transition: transform .25s ease, color .25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.combobox.open .combobox-toggle {
    transform: translateY(-50%) rotate(180deg);
    color: var(--gold-dark);
}
.combobox-toggle svg { width: 100%; height: 100%; display: block; }

.combobox-list {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    max-height: 240px;
    overflow-y: auto;
    z-index: 100;
    box-shadow: 0 12px 32px rgba(18,46,79,.12);
    list-style: none;
    margin: 0;
    padding: 6px 0;
    display: none;
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity .2s ease, transform .2s ease;
}
.combobox.open .combobox-list {
    display: block;
    animation: comboboxFade .2s ease forwards;
}
@keyframes comboboxFade {
    to { opacity: 1; transform: translateY(0); }
}
.combobox-item {
    padding: 10px 18px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-mid);
    transition: background .15s, color .15s;
    user-select: none;
}
.combobox-item:hover,
.combobox-item.active {
    background: var(--bg-soft);
    color: var(--primary);
    font-weight: 500;
}
.combobox-empty {
    padding: 14px 18px;
    color: var(--text-light);
    font-size: 13px;
    text-align: center;
    font-style: italic;
}
.combobox-list::-webkit-scrollbar { width: 6px; }
.combobox-list::-webkit-scrollbar-track { background: transparent; }
.combobox-list::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
.combobox-list::-webkit-scrollbar-thumb:hover { background: var(--text-light); }

.map-wrapper {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    border-top: 4px solid var(--gold);
}

/* ============ Footer ============ */
.footer {
    background: var(--primary-dark);
    color: rgba(255,255,255,.72);
    padding-top: 80px;
    position: relative;
}
.footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--gold);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
    gap: 50px;
    padding-bottom: 60px;
}
.footer-logo img {
    height: 50px;
    width: auto;
    margin-bottom: 22px;
}
.footer-col p {
    font-size: 14px;
    line-height: 1.85;
    margin-bottom: 14px;
}
.footer-col h4 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 22px;
    padding-bottom: 14px;
    position: relative;
    font-weight: 600;
    letter-spacing: .5px;
}
.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 36px;
    height: 2px;
    background: var(--gold);
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
    color: rgba(255,255,255,.65);
    font-size: 14px;
    transition: var(--transition);
}
.footer-col ul a::before {
    content: '›';
    margin-right: 8px;
    color: var(--gold);
    transition: var(--transition);
}
.footer-col ul a:hover {
    color: var(--gold);
    padding-left: 4px;
}
.footer-col i { color: var(--gold); margin-right: 8px; }

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}
.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.14);
    color: rgba(255,255,255,.78);
    font-size: 15px;
    line-height: 1;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.footer-social a i {
    margin: 0;
    padding: 0;
    line-height: 1;
    font-size: inherit;
}
.footer-social a:hover {
    background: #ffffff;
    color: var(--primary);
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(0,0,0,.18);
}

/* Footer iletişim ikonlu paragraf düzeltme */
.footer-col p.with-icon {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}
.footer-col p.with-icon i {
    flex-shrink: 0;
    margin-top: 6px;
    margin-right: 0;
    line-height: 1;
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 22px 0;
    font-size: 13px;
}
.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}
.footer-legal { color: rgba(255,255,255,.45); font-size: 12px; }

/* ============ Floating Actions (3'lü) ============ */
.float-actions {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.float-btn {
    width: 56px; height: 56px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    box-shadow: 0 10px 26px rgba(0,0,0,.18);
    transition: var(--transition);
    position: relative;
}
.float-btn:hover {
    transform: scale(1.08);
    color: #fff;
}
.float-btn .float-tip {
    position: absolute;
    right: calc(100% + 14px);
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary);
    color: #fff;
    padding: 7px 14px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    pointer-events: none;
    box-shadow: var(--shadow-sm);
}
.float-btn .float-tip::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: var(--primary);
}
.float-btn:hover .float-tip {
    opacity: 1;
    visibility: visible;
    right: calc(100% + 18px);
}

.float-wa { background: #25D366; animation: pulseWa 2.5s infinite; }
.float-call { background: var(--primary); }
.float-call:hover { background: var(--primary-mid); }
.float-map { background: var(--gold); }
.float-map:hover { background: var(--gold-dark); }

@keyframes pulseWa {
    0%, 100% { box-shadow: 0 10px 26px rgba(37,211,102,.4); }
    50% { box-shadow: 0 10px 26px rgba(37,211,102,.65), 0 0 0 14px rgba(37,211,102,.1); }
}

.back-top {
    position: fixed;
    bottom: 28px;
    right: 100px;
    width: 44px; height: 44px;
    background: var(--primary);
    color: var(--gold);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: var(--shadow);
    z-index: 998;
}
.back-top.show { display: inline-flex; }
.back-top:hover { background: var(--gold); color: #fff; }

/* ============ KVKK Banner ============ */
.kvkk-banner {
    position: fixed;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 1500;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: 0 25px 60px rgba(14,42,71,.25);
    border-top: 4px solid var(--gold);
    padding: 22px 28px;
    transform: translateY(140%);
    opacity: 0;
    transition: transform .5s cubic-bezier(.25,.46,.45,.94), opacity .4s ease;
    max-width: 1100px;
    margin: 0 auto;
}
.kvkk-banner.show {
    transform: translateY(0);
    opacity: 1;
}
.kvkk-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.kvkk-text {
    flex: 1;
    min-width: 280px;
}
.kvkk-text h4 {
    font-size: 16px;
    color: var(--primary);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.kvkk-text h4 i { color: var(--gold); }
.kvkk-text p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}
.kvkk-text a {
    color: var(--gold-dark);
    border-bottom: 1px dashed var(--gold-dark);
    font-weight: 500;
}
.kvkk-text a:hover { color: var(--primary); border-color: var(--primary); }
.kvkk-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}
.kvkk-actions .btn {
    padding: 11px 22px;
    font-size: 13px;
}
.btn-outline-dark {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}
.btn-outline-dark:hover {
    background: var(--primary);
    color: #fff;
}

@media (max-width: 768px) {
    .kvkk-banner { left: 12px; right: 12px; bottom: 12px; padding: 18px 20px; }
    .kvkk-inner { flex-direction: column; align-items: stretch; gap: 14px; }
    .kvkk-actions { justify-content: center; }
}

/* ============ AOS-like animations (devre dışı — içerik baştan görünür) ============ */
[data-aos],
[data-aos="fade-up"],
[data-aos="fade-right"],
[data-aos="fade-left"],
[data-aos="zoom-in"],
[data-aos].aos-show {
    opacity: 1 !important;
    transform: none !important;
    transition: none;
}

/* ============ Responsive ============ */
@media (max-width: 1100px) {
    .container { padding: 0 22px; }
    .header-inner { padding: 14px 22px; }
}

@media (max-width: 992px) {
    .about-grid,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .services-grid,
    .fleet-grid,
    .why-grid,
    .strip-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-img-badge { right: 20px; bottom: 20px; }
    .footer-grid { gap: 40px; }
    .section { padding: 90px 0; }
    .hero h1 { font-size: clamp(1.9rem, 4.5vw, 3.2rem); }
    .nav ul { gap: 0; }
    .nav a { padding: 10px 12px; font-size: 13px; }
}

@media (max-width: 768px) {
    .container { padding: 0 18px; }
    .topbar { padding: 8px 0; }
    .topbar-info { gap: 12px; font-size: 12px; }
    .hide-mobile { display: none !important; }

    .header-inner { padding: 12px 18px; }
    .logo img { height: 50px; }

    .nav {
        position: fixed;
        top: 0; right: -100%;
        width: 280px;
        max-width: 85vw;
        height: 100vh;
        background: var(--primary);
        padding: 80px 24px 24px;
        transition: right .4s ease;
        box-shadow: -10px 0 30px rgba(0,0,0,.3);
        z-index: 1100;
    }
    .nav.open { right: 0; }
    .nav ul { flex-direction: column; gap: 0; }
    .nav a {
        display: block;
        padding: 14px 18px;
        border-bottom: 1px solid rgba(255,255,255,.06);
        color: #fff;
        font-size: 14px;
    }
    .nav a:hover, .nav a.active { color: var(--gold); }
    .nav-toggle { display: inline-flex; }
    .nav-close { display: inline-flex; }

    .section { padding: 70px 0; }
    .hero { min-height: 88vh; padding: 60px 0 80px; }
    .hero-content { max-width: 100%; }
    .hero-tag { font-size: 11px; letter-spacing: 3px; padding: 5px 10px; }
    .hero-stats { gap: 24px; padding-top: 28px; }
    .stat-num { font-size: 30px; }
    .stat .text-gold { font-size: 20px; }
    .stat small { font-size: 10px; letter-spacing: 1px; }

    .strip { padding: 40px 0; }
    .strip-grid,
    .services-grid,
    .fleet-grid,
    .why-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .form-row { grid-template-columns: 1fr; }

    .service-card { padding: 32px 24px; }
    .service-icon { width: 60px; height: 60px; font-size: 26px; margin-bottom: 18px; }
    .service-card h3 { font-size: 18px; }

    .cta { padding: 50px 0; }
    .cta-inner { text-align: center; justify-content: center; }
    .cta h2 { font-size: 1.4rem; }

    .footer { padding-top: 60px; }
    .footer-bottom .container { justify-content: center; text-align: center; flex-direction: column; }

    .about-img-badge {
        right: 0; bottom: -20px;
        padding: 16px 20px;
        gap: 12px;
    }
    .badge-num { font-size: 34px; }
    .badge-text { font-size: 11px; }

    .section-head { margin-bottom: 50px; }
    .section-head h2, .about h2 { font-size: clamp(1.5rem, 5vw, 2rem); }
    .section-tag { font-size: 11px; letter-spacing: 3px; }

    .page-banner { padding: 70px 0 50px; }
    .page-banner h1 { font-size: clamp(1.8rem, 5vw, 2.4rem); }
    .breadcrumb { font-size: 12px; padding: 6px 14px; }

    /* Floating actions mobil */
    .float-actions {
        right: 16px;
        bottom: 16px;
        gap: 10px;
    }
    .float-btn {
        width: 50px; height: 50px;
        font-size: 19px;
    }
    .float-btn .float-tip { display: none; }
    .back-top {
        bottom: 16px;
        right: 80px;
        width: 40px; height: 40px;
    }

    /* Hero slider */
    .slider-arrow { display: none; }
    .slider-dots { bottom: 20px; }
    .slider-dots button { width: 28px; }
    .slider-dots button.active { width: 44px; }

    /* Blog */
    .blog-thumb { height: 200px; }
    .blog-body { padding: 24px 22px 26px; }
    .post-body { padding: 30px 22px 36px; }
    .post-hero { height: 240px; }

    /* KVKK */
    .kvkk-banner {
        left: 12px; right: 12px; bottom: 12px;
        padding: 18px 20px;
        max-width: none;
    }
    .kvkk-inner { flex-direction: column; align-items: stretch; gap: 14px; }
    .kvkk-actions { justify-content: stretch; }
    .kvkk-actions .btn { flex: 1; padding: 11px 18px; }
    .kvkk-text h4 { font-size: 15px; }
    .kvkk-text p { font-size: 13px; }
}

@media (max-width: 480px) {
    .container { padding: 0 14px; }
    .header-inner { padding: 10px 14px; }
    .logo img { height: 44px; }

    .topbar-info { gap: 8px; font-size: 11px; }
    .topbar-info span:nth-child(2),
    .topbar-info span:nth-child(3) { display: none; }
    .topbar-social a { width: 26px; height: 26px; font-size: 11px; }

    .hero { min-height: 82vh; padding: 50px 0 70px; }
    .hero h1 { font-size: 1.8rem; line-height: 1.2; }
    .hero p { font-size: 14px; line-height: 1.7; margin-bottom: 28px; }
    .hero-cta { flex-direction: column; align-items: stretch; gap: 10px; margin-bottom: 40px; }
    .hero-cta .btn { width: 100%; }
    .hero-stats { gap: 16px; flex-wrap: wrap; }
    .stat { flex: 1 1 30%; }
    .stat-num { font-size: 26px; }
    .stat .text-gold { font-size: 18px; }

    .section { padding: 60px 0; }
    .section-head { margin-bottom: 40px; }

    .service-card { padding: 28px 20px; }
    .strip-item { padding: 18px 20px; gap: 14px; }
    .strip-item i { width: 48px; height: 48px; font-size: 24px; }
    .strip-item h4 { font-size: 15px; }

    .about-img-badge {
        padding: 14px 18px;
        right: 8px;
        bottom: -16px;
    }
    .badge-num { font-size: 28px; }
    .badge-text { font-size: 10px; letter-spacing: 1px; }

    .contact-form { padding: 24px 18px; }
    .info-card { padding: 18px 20px; }

    .post-body { padding: 24px 18px 30px; }
    .post-hero { height: 200px; }
    .post-content h2 { font-size: 1.25rem; }
    .post-content blockquote { padding: 16px 20px; }

    .float-btn { width: 46px; height: 46px; font-size: 17px; }
    .back-top { right: 70px; width: 36px; height: 36px; font-size: 14px; }

    .pagination a, .pagination span { width: 36px; height: 36px; font-size: 13px; }

    .footer-col h4 { font-size: 15px; }
    .footer-col p, .footer-col ul a { font-size: 13px; }
}

/* ============================================
   Multi-page: Page Banner & Breadcrumb
   ============================================ */
.page-banner {
    position: relative;
    padding: 110px 0 80px;
    background:
        linear-gradient(120deg, rgba(10,31,56,.72) 0%, rgba(18,46,79,.40) 100%),
        url('/images/web/page-banner.avif') center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}
.page-banner::before { content: none; }
.page-banner::after {
    content: '';
    position: absolute;
    bottom: -100px; right: -100px;
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(201,169,97,.15) 0%, transparent 70%);
    border-radius: 50%;
}
.page-banner-inner {
    position: relative;
    z-index: 2;
    text-align: center;
}
.page-banner h1,
.page-banner .page-banner-h {
    color: #fff;
    font-size: clamp(2rem, 4vw, 3rem);
    margin: 0 0 14px;
    font-weight: 700;
    text-shadow: 0 2px 18px rgba(0,0,0,.45);
}
.page-banner h1 span,
.page-banner .page-banner-h span { color: var(--gold); }

.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255,255,255,.78);
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    padding: 8px 18px;
    border-radius: 30px;
}
.breadcrumb a { color: rgba(255,255,255,.85); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb i { font-size: 10px; color: var(--gold); }
.breadcrumb .current { color: var(--gold); font-weight: 500; }

/* ============================================
   Blog Liste
   ============================================ */
.blog-section { background: var(--bg-soft); }
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}
.blog-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.blog-thumb {
    position: relative;
    height: 220px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}
.blog-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(14,42,71,.5) 100%);
    transition: var(--transition);
}
.blog-card:hover .blog-thumb { transform: scale(1.02); }
.blog-tag {
    position: absolute;
    top: 16px; left: 16px;
    background: var(--gold);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 30px;
    z-index: 2;
}
.blog-body {
    padding: 28px 28px 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.blog-meta {
    display: flex;
    gap: 18px;
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 14px;
}
.blog-meta i { color: var(--gold-dark); margin-right: 5px; }
.blog-card h3 {
    font-size: 19px;
    margin-bottom: 12px;
    line-height: 1.4;
    transition: var(--transition);
}
.blog-card:hover h3 { color: var(--gold-dark); }
.blog-card p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.75;
    flex: 1;
}
.blog-readmore {
    color: var(--primary);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}
.blog-readmore:hover { color: var(--gold-dark); }
.blog-readmore:hover i { transform: translateX(4px); }
.blog-readmore i { transition: var(--transition); }

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
}
.pagination a, .pagination span {
    width: 42px; height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    color: var(--text-mid);
    font-size: 14px;
    font-weight: 600;
    background: #fff;
    transition: var(--transition);
}
.pagination a:hover,
.pagination .active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--gold);
}

/* ============================================
   Blog Detay
   ============================================ */
.post-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 50px;
}
.post-main {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
}
.post-hero {
    height: 420px;
    width: 100%;
    object-fit: cover;
    display: block;
}
.post-body {
    padding: 50px 50px 60px;
}
.post-meta {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
    color: var(--text-light);
    font-size: 13px;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border);
}
.post-meta i { color: var(--gold); margin-right: 6px; }
.post-body h1 {
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    margin-bottom: 24px;
    line-height: 1.3;
}
.post-content h2 {
    font-size: 1.45rem;
    margin: 36px 0 14px;
    color: var(--primary);
}
.post-content h3 {
    font-size: 1.15rem;
    margin: 30px 0 12px;
    color: var(--primary);
}
.post-content p {
    margin-bottom: 18px;
    color: var(--text-mid);
    line-height: 1.85;
}
.post-content ul, .post-content ol {
    margin: 0 0 22px 22px;
    color: var(--text-mid);
}
.post-content li {
    margin-bottom: 8px;
    line-height: 1.8;
}
.post-content ul { list-style: none; }
.post-content ul li::before {
    content: '✓';
    color: var(--gold);
    margin-right: 10px;
    font-weight: 700;
}
.post-content ol li {
    list-style: decimal;
    margin-left: 8px;
}
.post-content blockquote {
    background: var(--bg-soft);
    border-left: 4px solid var(--gold);
    padding: 22px 26px;
    margin: 28px 0;
    font-style: italic;
    color: var(--primary);
    border-radius: 0 var(--radius) var(--radius) 0;
}
.post-content a {
    color: var(--gold-dark);
    border-bottom: 1px dashed var(--gold-dark);
}
.post-content a:hover { color: var(--primary); border-color: var(--primary); }
.post-content img {
    border-radius: var(--radius);
    margin: 28px 0;
}

.post-tags {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.post-tags strong {
    margin-right: 8px;
    color: var(--primary);
    font-size: 14px;
}
.post-tags a {
    background: var(--bg-soft);
    color: var(--text-mid);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid var(--border);
}
.post-tags a:hover {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
}

.post-share {
    margin-top: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.post-share strong {
    color: var(--primary);
    font-size: 14px;
}
.post-share a {
    width: 36px; height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg-soft);
    color: var(--text-mid);
    font-size: 14px;
    transition: var(--transition);
}
.post-share a:hover {
    background: var(--gold);
    color: #fff;
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.widget {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    border-top: 4px solid var(--gold);
}
.widget h4 {
    font-size: 17px;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
    color: var(--primary);
}
.widget-search {
    display: flex;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
}
.widget-search input {
    flex: 1;
    padding: 12px 14px;
    border: 0;
    font-size: 14px;
    background: #fafbfc;
}
.widget-search input:focus { outline: none; background: #fff; }
.widget-search button {
    background: var(--primary);
    color: var(--gold);
    padding: 0 16px;
    cursor: pointer;
}
.widget-search button:hover { background: var(--gold); color: #fff; }

.widget-posts li {
    display: flex;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}
.widget-posts li:last-child { border-bottom: 0; }
.widget-posts img {
    width: 70px; height: 70px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}
.widget-posts h5 {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--primary);
    line-height: 1.4;
    margin-bottom: 4px;
    transition: var(--transition);
}
.widget-posts a:hover h5 { color: var(--gold-dark); }
.widget-posts small { color: var(--text-light); font-size: 12px; }
.widget-posts small i { color: var(--gold); margin-right: 4px; }

.widget-cats li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 11px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-mid);
    font-size: 14px;
    font-weight: 500;
}
.widget-cats li:last-child a { border-bottom: 0; }
.widget-cats li a:hover { color: var(--gold-dark); padding-left: 4px; }
.widget-cats span {
    background: var(--bg-soft);
    color: var(--text-light);
    font-size: 12px;
    padding: 3px 10px;
    border-radius: 30px;
}

.widget-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.widget-tags a {
    background: var(--bg-soft);
    color: var(--text-mid);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid var(--border);
}
.widget-tags a:hover {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
}

.widget-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
    border-color: var(--primary);
    border-top-color: var(--gold);
    color: #fff;
    text-align: center;
}
.widget-cta h4 { color: #fff; border-bottom-color: rgba(255,255,255,.1); }
.widget-cta p { font-size: 14px; color: rgba(255,255,255,.78); margin-bottom: 18px; line-height: 1.7; }
.widget-cta i { color: var(--gold); font-size: 32px; margin-bottom: 12px; }

/* Hizmetler / Filomuz detay yardımcıları */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
}
.feature-item {
    display: flex;
    gap: 18px;
    padding: 24px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
}
.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: transparent;
}
.feature-item i {
    width: 50px; height: 50px;
    flex-shrink: 0;
    background: rgba(201,169,97,.12);
    color: var(--gold-dark);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
.feature-item h4 { margin-bottom: 6px; font-size: 16px; }
.feature-item p { color: var(--text-light); font-size: 14px; line-height: 1.7; }

/* Anasayfa için: tek başına iletişim alt-bandı */
.mini-contact {
    background: var(--bg-soft);
    padding: 70px 0;
}
.mini-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* ============================================
   Legal/KVKK içerik sayfası
   ============================================ */
.legal-content {
    max-width: 920px;
    margin: 0 auto;
    background: #fff;
    padding: 60px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    border-top: 4px solid var(--gold);
    box-shadow: var(--shadow-sm);
}
.legal-content > p:first-of-type {
    font-size: 16px;
    color: var(--text-mid);
    line-height: 1.8;
    background: var(--bg-soft);
    padding: 18px 22px;
    border-left: 3px solid var(--gold);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin-bottom: 30px;
}
.legal-content h2 {
    font-size: 1.4rem;
    color: var(--primary);
    margin: 36px 0 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 {
    font-size: 1.1rem;
    color: var(--primary);
    margin: 26px 0 10px;
}
.legal-content p {
    color: var(--text-mid);
    margin-bottom: 16px;
    line-height: 1.85;
}
.legal-content ul, .legal-content ol {
    margin: 0 0 22px 24px;
    color: var(--text-mid);
}
.legal-content li {
    margin-bottom: 10px;
    line-height: 1.8;
}
.legal-content ul { list-style: none; padding-left: 0; margin-left: 0; }
.legal-content ul li {
    padding-left: 22px;
    position: relative;
}
.legal-content ul li::before {
    content: '•';
    color: var(--gold);
    font-weight: 700;
    font-size: 18px;
    position: absolute;
    left: 6px;
    top: -2px;
}
.legal-content ol li {
    list-style: decimal;
    margin-left: 8px;
}
.legal-content strong { color: var(--primary); }
.legal-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 18px 0 24px;
    font-size: 14px;
}
.legal-content th,
.legal-content td {
    border: 1px solid var(--border);
    padding: 12px 14px;
    text-align: left;
    vertical-align: top;
}
.legal-content th {
    background: var(--bg-soft);
    color: var(--primary);
    font-weight: 600;
}
.legal-info-box {
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-left: 4px solid var(--primary);
    padding: 22px 26px;
    border-radius: var(--radius-sm);
    margin: 24px 0;
}
.legal-info-box h4 {
    font-size: 16px;
    color: var(--primary);
    margin-bottom: 8px;
}
.legal-info-box p { margin-bottom: 4px; font-size: 14px; }

@media (max-width: 768px) {
    .legal-content { padding: 32px 22px; }
    .legal-content h2 { font-size: 1.2rem; }
}

/* ============================================
   Toast Bildirim
   ============================================ */
.toast-container {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
    max-width: calc(100vw - 48px);
}
.toast {
    background: #fff;
    color: var(--text);
    padding: 18px 22px;
    border-radius: var(--radius);
    box-shadow: 0 24px 56px rgba(18,46,79,.18), 0 4px 12px rgba(0,0,0,.06);
    border-left: 4px solid var(--gold);
    display: flex;
    align-items: flex-start;
    gap: 14px;
    min-width: 320px;
    max-width: 420px;
    transform: translateX(120%);
    opacity: 0;
    transition: transform .5s cubic-bezier(.25,.46,.45,.94), opacity .35s ease;
    pointer-events: auto;
    position: relative;
    overflow: hidden;
}
.toast.show { transform: translateX(0); opacity: 1; }
.toast.hide { transform: translateX(120%); opacity: 0; }

.toast-success { border-left-color: #16a34a; }
.toast-error { border-left-color: #dc2626; }
.toast-info { border-left-color: var(--primary-light); }

.toast-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
    line-height: 1;
}
.toast-success .toast-icon { background: rgba(22,163,74,.12); color: #16a34a; }
.toast-error .toast-icon { background: rgba(220,38,38,.12); color: #dc2626; }
.toast-info .toast-icon { background: rgba(44,89,144,.12); color: var(--primary); }

.toast-content { flex: 1; min-width: 0; padding-top: 2px; }
.toast-title {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 4px;
    font-size: 16px;
    line-height: 1.3;
}
.toast-message {
    font-size: 13.5px;
    color: var(--text-light);
    line-height: 1.6;
}
.toast-close {
    background: transparent;
    border: 0;
    color: var(--text-light);
    cursor: pointer;
    font-size: 16px;
    padding: 4px;
    line-height: 1;
    flex-shrink: 0;
    border-radius: 4px;
    transition: var(--transition);
    margin: -4px -4px 0 0;
}
.toast-close:hover {
    color: var(--primary);
    background: var(--bg-soft);
}

.toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--gold);
    width: 100%;
    transform-origin: left;
    animation: toastProgress 4.5s linear forwards;
    opacity: .55;
}
.toast-success .toast-progress { background: #16a34a; }
.toast-error .toast-progress { background: #dc2626; }
.toast-info .toast-progress { background: var(--primary-light); }

@keyframes toastProgress {
    from { transform: scaleX(1); }
    to { transform: scaleX(0); }
}

@media (max-width: 480px) {
    .toast-container { top: 16px; right: 16px; left: 16px; }
    .toast { min-width: 0; max-width: none; padding: 16px 18px; }
    .toast-title { font-size: 15px; }
    .toast-message { font-size: 13px; }
}

/* Responsive ek */
@media (max-width: 992px) {
    .post-layout { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .feature-grid, .mini-contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .blog-grid { grid-template-columns: 1fr; }
    .post-body { padding: 32px 24px 40px; }
    .post-hero { height: 280px; }
    .page-banner { padding: 80px 0 60px; }
}

/* ===== Hizmet kartı (link) + detay sayfası ===== */
.service-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--text);
}
.service-card h3 { color: var(--primary); }
.service-more {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-dark);
    font-weight: 600;
    font-size: 14px;
}
.service-more i { transition: transform .25s ease; }
.service-card:hover .service-more i { transform: translateX(5px); }

/* Detay: hero başlık */
.service-detail .service-hero {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-bottom: 22px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}
.service-hero-icon {
    flex: 0 0 auto;
    width: 78px; height: 78px;
    border-radius: var(--radius);
    background: var(--primary);
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
}
.service-detail .service-hero h2 { font-size: 26px; color: var(--primary); margin: 4px 0 0; }
.service-lead {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text);
    font-weight: 500;
    margin-bottom: 26px;
}

/* Detay: özellik listesi */
.service-features {
    list-style: none;
    margin: 0 0 30px;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 24px;
}
.service-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    color: var(--text);
    line-height: 1.6;
}
.service-features li i { color: var(--gold-dark); margin-top: 3px; }

/* Detay: SSS akordeon (<details>) */
.service-faq { margin-top: 36px; }
.service-faq > h2 { font-size: 22px; color: var(--primary); margin-bottom: 18px; }
.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    background: #fff;
    overflow: hidden;
}
.faq-item summary {
    cursor: pointer;
    padding: 16px 20px;
    font-weight: 600;
    color: var(--primary);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 13px;
    color: var(--gold-dark);
    transition: transform .25s ease;
}
.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-answer { padding: 0 20px 18px; }
.faq-answer p { color: var(--text-light); line-height: 1.8; margin: 0; }

/* Detay: ilgili blog bağlantısı */
.service-related {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 30px;
    padding: 18px 22px;
    border-radius: var(--radius);
    background: rgba(201,169,97,.1);
    border: 1px dashed var(--gold);
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}
.service-related:hover { background: rgba(201,169,97,.18); }
.service-related > span { flex: 1; }

/* Detay: yan menü hizmet navigasyonu */
.service-nav { list-style: none; margin: 0; padding: 0; }
.service-nav li { margin-bottom: 4px; }
.service-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 14px;
    border-radius: 10px;
    color: var(--text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}
.service-nav a i { color: var(--gold-dark); width: 20px; text-align: center; }
.service-nav a:hover { background: rgba(18,46,79,.05); color: var(--primary); }
.service-nav li.active a { background: var(--primary); color: #fff; }
.service-nav li.active a i { color: var(--gold); }
.widget-cta .btn-block + .btn-block { margin-top: 10px; }
/* Koyu widget-cta zemininde outline buton yazısı beyaz */
.widget-cta .btn-outline-dark {
    color: #fff;
    border-color: rgba(255,255,255,.55);
}
.widget-cta .btn-outline-dark:hover {
    background: #fff;
    color: var(--primary);
    border-color: #fff;
}

@media (max-width: 768px) {
    .service-features { grid-template-columns: 1fr; }
    .service-detail .service-hero { flex-direction: column; align-items: flex-start; gap: 16px; }
}

/* ===== Yolculuk zaman tüneli (yatay) ===== */
.timeline-h {
    position: relative;
    display: flex;
    margin-top: 56px;
}
.timeline-h::before {
    content: '';
    position: absolute;
    top: 33px;
    left: 12.5%;
    right: 12.5%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--gold-dark));
    border-radius: 3px;
    z-index: 0;
}
.th-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 16px;
    position: relative;
}
.th-dot {
    width: 66px; height: 66px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    border: 4px solid var(--bg, #fff);
    box-shadow: 0 8px 20px rgba(18,46,79,.25);
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
    transition: var(--transition);
}
.th-item:hover .th-dot { background: var(--gold); color: var(--primary); }
.th-body { width: 100%; }
.th-year {
    display: block;
    color: var(--gold-dark);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
}
.th-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px 22px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.th-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.th-card h3 { color: var(--primary); font-size: 18px; margin-bottom: 8px; }
.th-card p { color: var(--text-light); font-size: 14px; line-height: 1.7; margin: 0; }

@media (max-width: 820px) {
    .timeline-h { flex-direction: column; margin-top: 40px; }
    .timeline-h::before {
        top: 0; bottom: 0;
        left: 30px; right: auto;
        width: 3px; height: auto;
        background: linear-gradient(180deg, var(--gold-light), var(--gold), var(--gold-dark));
    }
    .th-item {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        gap: 22px;
        padding: 0 0 30px;
    }
    .th-dot { width: 60px; height: 60px; font-size: 23px; margin-bottom: 0; flex: 0 0 auto; }
    .th-body { padding-top: 4px; }
    .th-year { margin-bottom: 8px; }
}
