/* ============================================================
   GelbiKurye - Ana CSS Dosyası
   Renk Paleti: Turuncu #FF6600 | Lacivert #1B3A5C
   Font: Poppins
   ============================================================ */

/* ===================== ELEMENTOR UYUMU ===================== */
.elementor-page-content {
    width: 100%;
}

.elementor-page-content .elementor {
    width: 100%;
}

/* ===================== GLOBAL DEĞİŞKENLER ===================== */
:root {
    --orange: #FF6600;
    --orange-dark: #e55a00;
    --orange-light: #ff8533;
    --dark-blue: #1B3A5C;
    --dark-blue-2: #0f2e4e;
    --dark-navy: #0d1b2e;
    --white: #ffffff;
    --light-gray: #f5f6fa;
    --gray: #6c757d;
    --text-dark: #1a1a2e;
    --text-medium: #4a5568;
    --border: #e2e8f0;
    --green: #25D366;
    --green-dark: #1da851;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --radius: 12px;
    --radius-sm: 8px;
    --transition: all 0.3s ease;
}

/* ===================== RESET & BASE ===================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--white);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

input,
select,
textarea,
button {
    font-family: 'Poppins', sans-serif;
    outline: none;
    border: none;
}

/* ===================== YARDIMCI SINIFLAR ===================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

.text-center {
    text-align: center;
}

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

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

.text-dark-blue {
    color: var(--dark-blue);
}

.section-header {
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-top: 12px;
    line-height: 1.3;
}

.section-divider {
    width: 60px;
    height: 4px;
    background: var(--orange);
    margin: 20px auto 0;
    border-radius: 2px;
    position: relative;
}

.section-divider::after {
    content: '';
    position: absolute;
    left: 70px;
    top: 0;
    width: 20px;
    height: 4px;
    background: var(--orange);
    border-radius: 2px;
    opacity: 0.4;
}

/* ===================== BADGE ===================== */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--orange);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.badge-white {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    backdrop-filter: blur(5px);
}

/* ===================== BUTONLAR ===================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn-orange {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
}

.btn-orange:hover {
    background: var(--orange-dark);
    border-color: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.35);
}

.btn-green {
    background: var(--green);
    color: var(--white);
    border-color: var(--green);
}

.btn-green:hover {
    background: var(--green-dark);
    border-color: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--dark-blue);
    border-color: var(--white);
}

.btn-outline-orange {
    background: transparent;
    color: var(--orange);
    border-color: var(--orange);
}

.btn-outline-orange:hover {
    background: var(--orange);
    color: var(--white);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.82rem;
}

.btn-badge {
    background: rgba(255, 255, 255, 0.25);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
}

/* ===================== LOGO ===================== */
.logo-text {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-name {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--dark-blue);
    letter-spacing: -0.5px;
}

.logo-name strong {
    font-weight: 800;
}

.logo-icon {
    display: flex;
    align-items: center;
}

/* ===================== TOP BAR ===================== */
.top-bar {
    background: var(--dark-navy);
    color: var(--white);
    padding: 8px 0;
    font-size: 0.82rem;
    position: relative;
    z-index: 1001;
}

.top-bar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar-left a,
.top-bar-left span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.85);
    transition: var(--transition);
}

.top-bar-left a:hover {
    color: var(--orange);
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--orange);
    padding: 5px 16px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.8rem;
}

/* ===================== HEADER ===================== */
.site-header {
    background: var(--white);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.site-header.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* NAV MENU */
.main-nav .nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-menu>li>a {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 14px;
    color: var(--dark-blue);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    position: relative;
}

.nav-menu>li>a:hover,
.nav-menu>li.active>a {
    color: var(--orange);
}

.nav-menu>li.active>a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--orange);
    border-radius: 2px;
}

/* DROPDOWN */
.has-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    min-width: 200px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    border-top: 3px solid var(--orange);
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    font-size: 0.88rem;
    color: var(--text-medium);
    transition: var(--transition);
}

.dropdown-menu li a:hover {
    color: var(--orange);
    background: var(--light-gray);
    padding-left: 26px;
}

/* HEADER ACTIONS */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-whatsapp {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--green);
    color: var(--white);
    padding: 9px 18px;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    transition: var(--transition);
}

.btn-whatsapp:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark-blue);
    border-radius: 2px;
    transition: var(--transition);
}

/* MOBİL MENÜ */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background: var(--white);
    z-index: 1999;
    padding: 60px 30px 30px;
    transition: right 0.3s ease;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
}

.mobile-menu.active {
    right: 0;
}

.mobile-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--light-gray);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    color: var(--dark-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.mobile-close:hover {
    background: var(--orange);
    color: var(--white);
}

.mobile-menu ul li {
    border-bottom: 1px solid var(--border);
}

.mobile-menu ul li a {
    display: block;
    padding: 14px 0;
    color: var(--dark-blue);
    font-weight: 500;
    transition: var(--transition);
}

.mobile-menu ul li a:hover {
    color: var(--orange);
    padding-left: 8px;
}

.mobile-menu .btn {
    margin-top: 24px;
    width: 100%;
    justify-content: center;
}

/* ===================== HERO SLIDER ===================== */
.hero-slider {
    position: relative;
}

.slider-wrapper {
    position: relative;
    overflow: hidden;
    height: 600px;
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.slide.active {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg,
            rgba(11, 25, 50, 0.88) 0%,
            rgba(11, 25, 50, 0.65) 55%,
            rgba(11, 25, 50, 0.2) 100%);
}

.slide-content {
    position: relative;
    z-index: 2;
    padding-top: 100px;
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 102, 0, 0.2);
    border: 1px solid rgba(255, 102, 0, 0.5);
    color: var(--orange);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.slide-content h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.slide-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Slider Controls */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 5;
    backdrop-filter: blur(5px);
}

.slider-btn:hover {
    background: var(--orange);
    border-color: var(--orange);
}

.slider-btn.prev {
    left: 20px;
}

.slider-btn.next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 140px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--orange);
    border-color: var(--orange);
    transform: scale(1.3);
}

/* Hero Feature Boxes */
.hero-features {
    background: var(--dark-blue);
    position: relative;
    z-index: 10;
    margin-top: -2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.feature-box {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 30px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    cursor: default;
}

.feature-box:last-child {
    border-right: none;
}

.feature-box:hover {
    background: rgba(255, 102, 0, 0.1);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: var(--orange);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--white);
    flex-shrink: 0;
}

.feature-text h3 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.feature-text p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.85rem;
}

/* ===================== HAKKIMIZDA ===================== */
.about-section {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
    height: 480px;
}

.about-img-main {
    position: absolute;
    left: 0;
    top: 0;
    width: 55%;
    height: 85%;
    border-radius: 50%;
    overflow: hidden;
    border: 6px solid var(--white);
    box-shadow: var(--shadow-lg);
}

.about-img-secondary {
    position: absolute;
    right: 0;
    top: 10%;
    width: 45%;
    height: 55%;
    border-radius: 50%;
    overflow: hidden;
    border: 6px solid var(--white);
    box-shadow: var(--shadow-lg);
}

.about-img-third {
    position: absolute;
    right: 5%;
    bottom: 0;
    width: 50%;
    height: 40%;
    border-radius: 50%;
    overflow: hidden;
    border: 6px solid var(--white);
    box-shadow: var(--shadow-lg);
}

.about-img-main img,
.about-img-secondary img,
.about-img-third img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 16px;
    line-height: 1.3;
}

.about-content>p {
    color: var(--text-medium);
    margin-bottom: 28px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 28px;
}

.about-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.af-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 102, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 1rem;
    flex-shrink: 0;
}

.af-text strong {
    display: block;
    font-size: 0.92rem;
    color: var(--dark-blue);
    font-weight: 700;
}

.af-text span {
    font-size: 0.82rem;
    color: var(--text-medium);
}

/* ===================== HİZMETLERİMİZ ===================== */
.services-section {
    background: var(--white);
}

.services-header-bg {
    background: var(--dark-blue);
    padding: 60px 0 0;
}

.services-header-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 40px;
}

.services-header-left h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-top: 12px;
    line-height: 1.3;
}

.services-header-right p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.92rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Numaralı Servis İkonları */
.services-icons-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    margin-top: 20px;
}

.service-icon-item {
    background: rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: var(--transition);
}

.service-icon-item:hover {
    background: rgba(255, 102, 0, 0.15);
}

.si-icon {
    width: 50px;
    height: 50px;
    background: var(--orange);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--white);
}

.service-icon-item span {
    font-size: 1.5rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.2);
    font-style: italic;
}

/* Hizmet Kartları */
.services-cards-bg {
    background: var(--dark-blue-2);
    padding: 40px 0 60px;
}

.services-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 24px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--orange);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.sc-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.sc-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--orange);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--white);
    overflow: hidden;
}

/* Font icon beyaz */
.sc-icon i {
    color: var(--white);
    font-size: 1.2rem;
}

/* SVG icon – taşma önleme, beyaz renk */
.sc-icon svg {
    width: 22px;
    height: 22px;
    max-width: 22px;
    max-height: 22px;
    fill: var(--white);
}

.sc-icon span[class*="e-font-icon"] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
}

.sc-number {
    font-size: 2rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.15);
    font-style: italic;
}

.service-card h3 {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
}

.service-card p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.82rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

/* ===================== NASIL ÇALIŞIR ===================== */
/* ===================== NASIL ÇALIŞIR ===================== */
.how-section {
    background: #f8f9fb;
}

.how-subtitle {
    color: var(--text-medium);
    font-size: 1rem;
    margin-top: -8px;
    margin-bottom: 0;
}

.how-steps {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    margin-top: 40px;
    flex-wrap: nowrap;
}

/* Her adım kutusu */
.how-step {
    flex: 1;
    max-width: 260px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    padding: 32px 24px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Sağ-alt turuncu şerit aksan */
.step-ribbon {
    position: absolute;
    bottom: -18px;
    right: -18px;
    width: 72px;
    height: 72px;
    background: var(--orange);
    border-radius: 50%;
    opacity: 0.15;
    pointer-events: none;
}

.step-ribbon::before {
    content: '';
    position: absolute;
    bottom: 14px;
    right: 14px;
    width: 48px;
    height: 48px;
    background: var(--orange);
    border-radius: 50%;
    opacity: 0.4;
}

/* Ok ayırıcı */
.how-step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 1.4rem;
    padding: 0 12px;
    flex-shrink: 0;
    align-self: center;
}

/* Numara dairesi */
.step-number {
    width: 52px;
    height: 52px;
    background: var(--orange);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.4rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    flex-shrink: 0;
}

/* İkon görseli */
.step-img {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 140px;
    overflow: hidden;
}

.step-img img {
    width: 160px;
    height: 130px;
    object-fit: contain;
    object-position: center;
    margin: 0 auto;
    display: block;
    flex-shrink: 0;
}

.how-step h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 8px;
    line-height: 1.4;
}

.how-step p {
    font-size: 0.82rem;
    color: var(--text-medium);
    line-height: 1.5;
    margin: 0;
}

/* Alt logo */
.how-footer-logo {
    text-align: center;
    margin-top: 40px;
}

.how-logo-img {
    max-height: 40px;
    width: auto;
    display: inline-block;
}

.logo-icon-sm {
    display: flex;
    align-items: center;
}

/* ===================== İSTATİSTİKLER / NEDEN BİZ ===================== */
.stats-section {
    background: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.stats-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    height: 400px;
}

.stats-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 16px;
    line-height: 1.3;
}

.stats-content>p {
    color: var(--text-medium);
    margin-bottom: 30px;
    line-height: 1.8;
}

.progress-bars {
    margin-bottom: 30px;
}

.progress-item {
    margin-bottom: 20px;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-blue);
}

.progress-percent {
    color: var(--orange);
}

.progress-bar {
    height: 8px;
    background: var(--light-gray);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--orange), var(--orange-light));
    border-radius: 4px;
    width: 0%;
    transition: width 1.5s ease;
}

.rotate-icon {
    transform: rotate(-90deg);
}

/* ===================== HİZMET ALANLARI ===================== */
.areas-section {
    position: relative;
}

.areas-bg {
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 80px 0;
}

.areas-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 30, 60, 0.85);
}

.areas-bg .container {
    position: relative;
    z-index: 2;
}

.areas-bg .section-header h2 {
    color: var(--white);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.area-item {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: var(--transition);
}

.area-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.area-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.area-item:hover img {
    transform: scale(1.05);
}

.area-info {
    padding: 12px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.area-tag {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--orange);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.area-info h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--dark-blue);
}

.area-link {
    width: 36px;
    height: 36px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.8rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.area-link:hover {
    background: var(--dark-blue);
}

/* ===================== FİYAT TEKLİFİ ===================== */
.price-section {
    position: relative;
}

.price-bg {
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    position: relative;
}

.price-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 20, 40, 0.75);
}

.price-bg .container {
    position: relative;
    z-index: 2;
}

.price-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 30px;
    align-items: start;
}

.price-form-wrapper {
    background: var(--white);
    border-radius: 16px;
    padding: 36px;
    box-shadow: var(--shadow-lg);
}

.price-form-wrapper h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--light-gray);
}

.form-group-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 12px;
    margin-top: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 12px;
}

.form-field {
    position: relative;
    display: flex;
    align-items: center;
}

.form-field>i {
    position: absolute;
    left: 12px;
    color: var(--gray);
    font-size: 0.85rem;
    z-index: 1;
}

.form-field input,
.form-field select {
    width: 100%;
    padding: 10px 12px 10px 34px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    color: var(--text-dark);
    background: var(--white);
    transition: var(--transition);
    appearance: none;
}

.form-field input:focus,
.form-field select:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.1);
}

.form-field input::placeholder {
    color: #aaa;
}

.form-select>i.fa-chevron-down {
    right: 12px;
    left: auto;
    pointer-events: none;
    font-size: 0.75rem;
}

.form-checkboxes {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
    margin-top: 8px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--text-medium);
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--orange);
    cursor: pointer;
}

.form-submit-row {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.form-message {
    font-size: 0.85rem;
    font-weight: 600;
}

.form-message.success {
    color: var(--green);
}

.form-message.error {
    color: #e53e3e;
}

.price-image img {
    width: 100%;
    border-radius: var(--radius);
    object-fit: cover;
    height: 300px;
    box-shadow: var(--shadow-lg);
}

/* ===================== HARİTA ===================== */
.map-section {
    background: #f8f9fb;
}

/* Ana çerçeve */
.map-frame {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(26, 46, 90, 0.18);
    border: 2px solid #1A2E5A;
}

/* Üst başlık çubuğu */
.map-frame-header {
    background: #1A2E5A;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
}

/* Mac tarzı küçük daireler */
.map-frame-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

.map-frame-dot:first-child {
    background: #FF6B00;
}

.map-frame-dot:nth-child(2) {
    background: rgba(255, 107, 0, 0.5);
}

.map-frame-dot:nth-child(3) {
    background: rgba(255, 107, 0, 0.25);
}

.map-frame-title {
    color: #ffffff;
    font-size: 0.88rem;
    font-weight: 600;
    margin-left: 8px;
    flex: 1;
    letter-spacing: 0.3px;
}

.map-frame-title i {
    color: #FF6B00;
    margin-right: 6px;
}

.map-frame-badge {
    background: rgba(255, 107, 0, 0.15);
    color: #FF6B00;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 0, 0.35);
    display: flex;
    align-items: center;
    gap: 5px;
    letter-spacing: 0.5px;
}

.map-frame-badge i {
    font-size: 0.5rem;
    animation: blink-dot 1.4s ease-in-out infinite;
}

@keyframes blink-dot {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.2;
    }
}

/* iframe wrapper */
.map-embed-wrapper {
    line-height: 0;
    position: relative;
}

.map-embed-wrapper iframe {
    display: block;
    width: 100%;
    height: 420px;
    border: none;
}

/* Alt istatistik şeridi */
.map-frame-footer {
    background: #1A2E5A;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 14px 20px;
    border-top: 2px solid #FF6B00;
}

.map-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.82rem;
}

.map-stat i {
    color: #FF6B00;
    font-size: 0.9rem;
}

.map-stat strong {
    color: #ffffff;
    font-weight: 700;
    font-size: 0.92rem;
}

@media (max-width: 768px) {
    .map-embed-wrapper iframe {
        height: 280px;
    }

    .map-frame-footer {
        flex-wrap: wrap;
        gap: 10px;
        padding: 12px 16px;
    }

    .map-stat {
        min-width: calc(50% - 10px);
        justify-content: center;
    }
}

/* ===================== ARAÇ FİLOMUZ ===================== */
.fleet-section {
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 100px 0;
    text-align: center;
}

.fleet-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 20, 40, 0.8);
}

.fleet-section .container {
    position: relative;
    z-index: 2;
}

.fleet-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.3;
}

.fleet-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin-bottom: 30px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.fleet-pins {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.fleet-pin {
    position: absolute;
    width: 44px;
    height: 44px;
    background: rgba(255, 102, 0, 0.2);
    border: 2px solid var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 1rem;
    animation: pinPulse 2s infinite;
}

.pin-1 {
    top: 20%;
    right: 15%;
    animation-delay: 0s;
}

.pin-2 {
    top: 60%;
    right: 25%;
    animation-delay: 0.5s;
}

.pin-3 {
    top: 35%;
    left: 10%;
    animation-delay: 1s;
}

@keyframes pinPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.15);
        opacity: 0.7;
    }
}

/* ===================== NEDEN BİZ - ÖZELLİKLER ===================== */
.why-section {
    background: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.why-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 16px;
    line-height: 1.3;
}

.why-content>p {
    color: var(--text-medium);
    margin-bottom: 28px;
    line-height: 1.8;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.wf-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 102, 0, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.wf-text h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 4px;
}

.wf-text p {
    font-size: 0.85rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.why-images {
    display: grid;
    grid-template-rows: 1fr auto;
    gap: 16px;
}

.why-img-main img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.why-img-secondary {
    position: relative;
}

.why-img-secondary img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: var(--radius);
}

.wa-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: var(--green);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ===================== CANLI TAKİP ===================== */
.tracking-section {
    background: var(--white);
}

.tracking-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.tracking-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    height: 420px;
}

.tracking-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    box-shadow: var(--shadow);
}

.tracking-status {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.status-dot {
    width: 12px;
    height: 12px;
    background: var(--green);
    border-radius: 50%;
    animation: statusPulse 1.5s infinite;
}

@keyframes statusPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(37, 211, 102, 0);
    }
}

.tracking-status strong {
    font-size: 0.95rem;
    color: var(--dark-blue);
    font-weight: 700;
}

.tracking-card>p {
    color: var(--text-medium);
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.tracking-info {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: var(--light-gray);
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
}

.tracking-icon {
    width: 40px;
    height: 40px;
    background: var(--green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.tracking-info strong {
    display: block;
    font-size: 0.88rem;
    color: var(--dark-blue);
    font-weight: 700;
    margin-bottom: 4px;
}

.tracking-info p {
    font-size: 0.82rem;
    color: var(--text-medium);
    line-height: 1.6;
}

.tracking-btn {
    width: 100%;
    justify-content: center;
}

/* ===================== SSS / FAQ ===================== */
.faq-section {
    background: var(--white);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 70px;
    align-items: start;
}

.faq-left h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 16px;
    line-height: 1.3;
}

.faq-left p {
    color: var(--text-medium);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 12px;
}

.faq-left .btn {
    margin-top: 8px;
}

/* ACCORDION */
.accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.accordion-item {
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.accordion-item.active {
    border-color: var(--orange);
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.1);
}

.accordion-header {
    width: 100%;
    background: var(--white);
    border: none;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-blue);
    text-align: left;
    transition: var(--transition);
}

.accordion-header:hover {
    background: var(--light-gray);
}

.accordion-header span {
    display: flex;
    align-items: center;
    gap: 10px;
}

.accordion-icon {
    color: var(--orange);
    font-size: 0.85rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-body {
    max-height: 200px;
}

.accordion-body p {
    padding: 0 20px 18px;
    font-size: 0.88rem;
    color: var(--text-medium);
    line-height: 1.8;
    border-top: 1px solid var(--light-gray);
    padding-top: 14px;
}

/* ===================== BLOG ===================== */
.blog-section {
    background: var(--white);
}

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

.blog-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    background: var(--white);
    border: 1px solid var(--border);
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.blog-img-wrapper {
    position: relative;
    overflow: hidden;
}

.blog-img-wrapper img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-img-wrapper img {
    transform: scale(1.05);
}

.blog-date {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--orange);
    color: var(--white);
    border-radius: var(--radius-sm);
    padding: 6px 10px;
    text-align: center;
    font-weight: 700;
    line-height: 1.2;
}

.date-day {
    display: block;
    font-size: 1.1rem;
}

.date-month {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
}

.blog-content {
    padding: 20px;
}

.blog-meta {
    display: flex;
    gap: 12px;
    margin-bottom: 10px;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.78rem;
    color: var(--gray);
}

.blog-content h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 8px;
    line-height: 1.4;
}

.blog-content h4 a:hover {
    color: var(--orange);
}

.blog-content p {
    font-size: 0.82rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 14px;
}

/* ===================== FOOTER ===================== */
.site-footer {
    background: var(--dark-blue);
}

.footer-top {
    padding: 70px 0 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-logo .logo-name {
    color: var(--white);
    font-size: 1.3rem;
}

.footer-about>p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.88rem;
    line-height: 1.8;
}

.footer-col h4 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 36px;
    height: 2px;
    background: var(--orange);
    border-radius: 2px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.88rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-links li a:hover {
    color: var(--orange);
    padding-left: 6px;
}

.footer-links li a::before {
    content: '→';
    font-size: 0.8rem;
    color: var(--orange);
    opacity: 0;
    transition: var(--transition);
}

.footer-links li a:hover::before {
    opacity: 1;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.contact-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 102, 0, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.footer-contact strong {
    display: block;
    font-size: 0.82rem;
    color: var(--white);
    font-weight: 700;
    margin-bottom: 2px;
}

.footer-contact span,
.footer-contact a {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.65);
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--orange);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.85rem;
}

.footer-bottom p a {
    color: var(--orange);
    font-weight: 600;
}

.footer-social {
    display: flex;
    gap: 8px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--white);
    transform: translateY(-3px);
}

/* ===================== WHATSAPP YÜZEN BUTON ===================== */
/* Stillerin tamamı yukarıdaki "YÜZEN BUTONLAR" bloğunda tanımlanmıştır. */

@keyframes waBounce {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
    }
}

/* ===================== ANİMASYONLAR ===================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===================== RESPONSİVE ===================== */
@media (max-width: 1024px) {
    .services-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    /* Header */


    .main-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }


    /* Hero */
    .slider-wrapper {
        height: 520px;
    }

    .slider-btn {
        display: none;
    }

    .slide-content {
        padding-top: 70px;
    }

    .slide-content h1 {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-box {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-images {
        height: 300px;
    }

    /* Services */
    .services-header-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .services-icons-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* How it works */
    .how-steps {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .how-step {
        max-width: 100%;
        width: 100%;
    }

    .how-step-arrow {
        transform: rotate(90deg);
        margin: 4px 0;
    }

    /* Stats */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Areas */
    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Price */
    .price-grid {
        grid-template-columns: 1fr;
    }

    .price-image {
        display: none;
    }

    .form-row {
        grid-template-columns: 1fr 1fr;
    }

    /* Why */
    .why-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Tracking */
    .tracking-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .tracking-image {
        display: none;
    }

    /* FAQ */
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Blog */
    .blog-grid {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    /* Section */
    .section-padding {
        padding: 50px 0;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    /* Top bar */
    /* Top bar */
    .top-bar .container {
        flex-direction: column !important;
        align-items: stretch !important;
    }

    .top-bar-right {
        order: 1 !important;
        width: 100% !important;
        justify-content: center !important;
        border-radius: 0 !important;
        padding: 8px 10px !important;
        font-size: 0.72rem !important;
    }

    .top-bar-left {
        order: 2 !important;
        width: 100% !important;
        gap: 12px !important;
        font-size: 0.75rem !important;
        padding: 6px 0 !important;
    }
}

@media (max-width: 480px) {
    .services-cards-grid {
        grid-template-columns: 1fr;
    }

    .areas-grid {
        grid-template-columns: 1fr;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .slider-wrapper {
        height: 560px;
    }

    .slide-content {
        padding-top: 60px;
    }

    .slide-content h1 {
        font-size: 1.6rem;
        margin-bottom: 14px;
    }

    .slide-content p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .top-bar-left a:nth-child(2) {
        display: none;
    }
}

/* ============================================================
   PAGE BANNER  (page.php / single.php)
   ============================================================ */
.page-banner {
    background: linear-gradient(135deg, #1B3A5C 0%, #0f2e4e 100%);
    padding: 72px 0;
    text-align: center;
}

.page-banner__title {
    color: #fff;
    font-size: 2.2rem;
    font-weight: 800;
    margin: 0 0 12px;
    line-height: 1.25;
}

.page-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: rgba(255, 255, 255, .7);
    font-size: .9rem;
}

.page-breadcrumb a {
    color: #FF6600;
    text-decoration: none;
}

.page-breadcrumb a:hover {
    text-decoration: underline;
}

.page-breadcrumb .sep {
    color: rgba(255, 255, 255, .5);
}

/* ============================================================
   PAGE CONTENT WRAPPER
   ============================================================ */
.page-content-wrap {
    max-width: 860px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* ============================================================
   SINGLE POST
   ============================================================ */
.single-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 16px;
    color: rgba(255, 255, 255, .75);
    font-size: .88rem;
}

.single-meta i {
    margin-right: 5px;
}

.single-thumbnail {
    margin-bottom: 32px;
    border-radius: 16px;
    overflow: hidden;
}

.single-thumbnail__img {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    display: block;
}

.single-content {
    line-height: 1.9;
    font-size: 1rem;
    color: #4a5568;
}

.single-content h2,
.single-content h3 {
    color: #1B3A5C;
    margin-top: 2rem;
}

.single-content p {
    margin-bottom: 1.1rem;
}

.single-content a {
    color: #FF6600;
}

.single-nav {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 48px;
    padding-top: 24px;
    border-top: 2px solid #f0f0f0;
}

/* ============================================================
   404 PAGE
   ============================================================ */
.error-404-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 52vh;
    padding: 60px 20px;
}

.error-404-number {
    font-size: 8rem;
    font-weight: 900;
    color: #FF6600;
    line-height: 1;
}

.error-404-title {
    font-size: 2rem;
    color: #1B3A5C;
    margin: 16px 0 12px;
}

.error-404-text {
    color: #666;
    max-width: 400px;
    margin-bottom: 28px;
}

/* ============================================================
   ELEMENTOR UYUMU – custom widget render alanı
   ============================================================ */
.elementor-widget-gelbi-hero,
.elementor-widget-gelbi-about,
.elementor-widget-gelbi-services,
.elementor-widget-gelbi-how,
.elementor-widget-gelbi-stats,
.elementor-widget-gelbi-areas,
.elementor-widget-gelbi-price,
.elementor-widget-gelbi-map,
.elementor-widget-gelbi-fleet,
.elementor-widget-gelbi-why,
.elementor-widget-gelbi-tracking,
.elementor-widget-gelbi-faq,
.elementor-widget-gelbi-blog {
    width: 100%;
    padding: 0 !important;
    margin: 0 !important;
}

.elementor-widget-gelbi-hero .elementor-widget-container,
.elementor-widget-gelbi-about .elementor-widget-container,
.elementor-widget-gelbi-services .elementor-widget-container,
.elementor-widget-gelbi-how .elementor-widget-container,
.elementor-widget-gelbi-stats .elementor-widget-container,
.elementor-widget-gelbi-areas .elementor-widget-container,
.elementor-widget-gelbi-price .elementor-widget-container,
.elementor-widget-gelbi-map .elementor-widget-container,
.elementor-widget-gelbi-fleet .elementor-widget-container,
.elementor-widget-gelbi-why .elementor-widget-container,
.elementor-widget-gelbi-tracking .elementor-widget-container,
.elementor-widget-gelbi-faq .elementor-widget-container,
.elementor-widget-gelbi-blog .elementor-widget-container {
    padding: 0 !important;
    margin: 0 !important;
}

/* ============================================================
   BACK TO TOP BUTONU
   ============================================================ */
.back-to-top {
    position: fixed;
    bottom: 88px;
    right: 20px;
    width: 42px;
    height: 42px;
    background: var(--dark-blue);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.9rem;
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--orange);
    transform: translateY(-3px);
}

/* ============================================================
   BLOG ARŞİVİ – Sayfalama & Boş Durum
   ============================================================ */
.blog-pagination {
    margin-top: 40px;
    text-align: center;
}

.blog-pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.blog-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-dark);
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
}

.blog-pagination .page-numbers:hover,
.blog-pagination .page-numbers.current {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--white);
}

.blog-empty {
    text-align: center;
    padding: 60px 0;
}

.blog-empty i {
    font-size: 3rem;
    color: #ccc;
    margin-bottom: 16px;
    display: block;
}

.blog-empty h2 {
    color: var(--text-dark);
    margin-bottom: 8px;
}

.blog-empty p {
    color: var(--gray);
}

/* ===================== YÜZEN BUTONLAR – TELEFON (SAĞ) + WHATSAPP (SOL) ===================== */

/* ── Ortak temel ── */
.gelbi-call-fab,
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    z-index: 9999;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* ── Telefon – SAĞ ── */
.gelbi-call-fab {
    right: 20px;
    background: var(--call-color, #ff6a00);
    color: #ffffff;
    box-shadow: 0 4px 20px var(--call-shadow, rgba(255, 106, 0, 0.45));
}

.gelbi-call-fab:hover {
    transform: scale(1.12);
    box-shadow: 0 6px 28px var(--call-shadow, rgba(255, 106, 0, 0.6));
    color: #ffffff;
}

/* Tooltip */
.gelbi-call-tooltip {
    position: absolute;
    left: 66px;
    background: rgba(0, 0, 0, 0.72);
    color: #fff;
    font-size: 0.74rem;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.gelbi-call-fab:hover .gelbi-call-tooltip {
    opacity: 1;
}

/* ── WhatsApp – SOL ── */
.whatsapp-float {
    left: 20px;
    right: auto;
    /* override mevcut right varsa */
    background: #25d366;
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    animation: waBounce 2s infinite;
}

.whatsapp-float:hover {
    background: #1ebe5d;
    transform: scale(1.12);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
    animation: none;
    color: #ffffff;
}

/* ── Mobil ── */
@media (max-width: 480px) {

    .gelbi-call-fab,
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        bottom: 16px;
    }

    .gelbi-call-fab {
        right: 14px;
    }

    .whatsapp-float {
        left: 14px;
    }

    .gelbi-call-tooltip {
        display: none;
    }

    .top-bar .container {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
    }

    .top-bar-right {
        order: 1 !important;
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        border-radius: 0 !important;
    }

    .top-bar-left {
        order: 2 !important;
        width: 100% !important;
        display: flex !important;
    }
}

/* ===================== İLETİŞİM BİLGİ KARTI [gelbi_iletisim_bilgi] ===================== */
.gcil-hours {
    background: #111d2e;
    border-radius: 12px;
    padding: 28px 24px;
    color: var(--white);
}

.gcil-hours h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.gcil-hours h4 i {
    color: var(--orange);
}

.gcil-hours ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.gcil-hours ul li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.92rem;
}

.gcil-hours ul li:last-child {
    border-bottom: none;
}

.gcil-hours ul li span {
    color: rgba(255, 255, 255, 0.65);
}

.gcil-hours ul li strong {
    color: var(--white);
    font-weight: 600;
}

.gcil-quick {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 4px;
}

.gcil-qi {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.92rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.gcil-qi:hover {
    background: rgba(255, 255, 255, 0.13);
    transform: translateX(4px);
    color: var(--white);
}

.gcil-qi i {
    font-size: 1rem;
    color: var(--orange);
    flex-shrink: 0;
}

.gcil-qi.gcil-wa i {
    color: var(--green);
}

/* ===================== HERO CTA BUTONLARI [gelbi_hero_cta] ===================== */
/* gcil-btns: sol hizalı sarmalayıcı (hero bölümü için) */
.gcil-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
}

/* gcil-btn-o: koyu/outline WhatsApp butonu */
.gcil-btn-o {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: inherit;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
    cursor: pointer;
}

.gcil-btn-o:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
    color: var(--white);
}

.gcil-btn-o i {
    color: var(--green);
}

@media (max-width: 480px) {
    .gcil-btns {
        flex-direction: column;
        align-items: stretch;
    }

    .gcil-btn-o {
        justify-content: center;
    }
}

/* ===================== İLETİŞİM CTA BUTONLARI [gelbi_iletisim_cta] ===================== */
.gcil-cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 28px;
}

.gcil-btn-p,
.gcil-btn-wa {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    font-weight: 600;
    font-family: inherit;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.gcil-btn-lg {
    padding: 14px 32px;
    font-size: 1rem;
}

.gcil-btn-p {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
}

.gcil-btn-p:hover {
    background: var(--orange-dark);
    border-color: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.35);
    color: var(--white);
}

.gcil-btn-wa {
    background: var(--green);
    color: var(--white);
    border-color: var(--green);
}

.gcil-btn-wa:hover {
    background: var(--green-dark);
    border-color: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
    color: var(--white);
}

@media (max-width: 480px) {
    .gcil-cta-btns {
        flex-direction: column;
        align-items: stretch;
    }

    .gcil-btn-p,
    .gcil-btn-wa {
        justify-content: center;
    }
}

/* ============================================================
   MOTO KURYE SAYFASI v2 – Modern Redesign
   ============================================================ */

/* ── PAGE HERO ──────────────────────────────────────────────── */
.mk-page-hero {
    position: relative;
    background: linear-gradient(135deg, #080e1c 0%, #112244 55%, #0b1e38 100%);
    padding: 110px 0 0;
    overflow: hidden;
}

.mk-page-hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 720px;
    height: 720px;
    background: radial-gradient(circle, rgba(255, 102, 0, 0.2) 0%, transparent 65%);
    pointer-events: none;
}

.mk-page-hero::after {
    content: '';
    position: absolute;
    bottom: 80px;
    left: -5%;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(255, 102, 0, 0.07) 0%, transparent 60%);
    pointer-events: none;
}

/* Inner content wrapper */
.mk-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 780px;
    padding-bottom: 68px;
}

.mk-hero-inner .section-badge {
    margin-bottom: 24px;
}

.mk-hero-inner h1 {
    font-size: clamp(2rem, 4vw, 3.1rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 22px;
    letter-spacing: -0.5px;
}

.mk-hero-inner>p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.78;
    margin-bottom: 36px;
    max-width: 620px;
}

.mk-hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Stat bar */
.mk-hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 1;
}

.mk-hero-stat {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 24px 26px;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
    transition: background 0.25s ease;
    cursor: default;
}

.mk-hero-stat:last-child {
    border-right: none;
}

.mk-hero-stat:hover {
    background: rgba(255, 255, 255, 0.04);
}

.mk-hs-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 102, 0, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 1.2rem;
    flex-shrink: 0;
    border: 1px solid rgba(255, 102, 0, 0.25);
}

.mk-hs-text {
    display: flex;
    flex-direction: column;
}

.mk-hs-text strong {
    color: #fff;
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.25;
}

.mk-hs-text span {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.72rem;
    font-weight: 400;
}

/* Legacy strip selectors – keep for shortcode fallback */
.mk-hero-strips {
    display: flex;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
}

.mk-strip {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 22px 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    transition: background 0.2s ease;
}

.mk-strip:last-child {
    border-right: none;
}

.mk-strip:hover {
    background: rgba(255, 255, 255, 0.04);
}

.mk-strip i {
    font-size: 1.4rem;
    color: var(--orange);
    flex-shrink: 0;
}

/* ── INTRO ──────────────────────────────────────────────────── */
.mk-intro-section {
    background: #fff;
}

.mk-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.mk-intro-left h2 {
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--dark-blue);
    line-height: 1.25;
    margin: 16px 0 20px;
    letter-spacing: -0.3px;
}

.mk-intro-desc {
    color: var(--text-medium);
    line-height: 1.85;
    margin-bottom: 36px;
    font-size: 0.97rem;
}

.mk-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 4px;
}

.mk-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px;
    background: #f8fafc;
    border-radius: 10px;
    border: 1px solid #eef2f7;
    transition: border-color 0.22s, box-shadow 0.22s;
}

.mk-feature-item:hover {
    border-color: rgba(255, 102, 0, 0.3);
    box-shadow: 0 4px 16px rgba(255, 102, 0, 0.08);
}

.mk-fi-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.15) 0%, rgba(255, 102, 0, 0.05) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--orange);
    font-size: 0.95rem;
}

.mk-fi-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.mk-fi-text strong {
    font-size: 0.83rem;
    font-weight: 700;
    color: var(--dark-blue);
}

.mk-fi-text span {
    font-size: 0.77rem;
    color: var(--text-medium);
    line-height: 1.5;
}

/* Sağ kolon: istatistik kutuları */
.mk-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 16px;
}

.mk-stat-box {
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--dark-blue) 100%);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    color: #fff;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    overflow: hidden;
}

.mk-stat-box::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: rgba(255, 102, 0, 0.1);
    border-radius: 50%;
}

.mk-stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(27, 58, 92, 0.25);
}

.mk-stat-num {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 6px;
}

.mk-stat-num span {
    font-size: 1.4rem;
    font-weight: 700;
}

.mk-stat-label {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    line-height: 1.4;
}

.mk-info-card {
    background: linear-gradient(135deg, #fff8f4 0%, #fff 100%);
    border-left: 4px solid var(--orange);
    border-radius: 0 12px 12px 0;
    padding: 22px 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    box-shadow: 0 4px 20px rgba(255, 102, 0, 0.08);
}

.mk-info-icon {
    font-size: 2rem;
    color: var(--orange);
    flex-shrink: 0;
    line-height: 1;
    margin-top: 2px;
}

.mk-info-text strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 6px;
}

.mk-info-text p {
    font-size: 0.85rem;
    color: var(--text-medium);
    line-height: 1.65;
    margin: 0;
}

/* ── SERVİSLER ──────────────────────────────────────────────── */
.mk-services-section {
    background: #f4f6fa;
}

.mk-sec-desc {
    color: var(--text-medium);
    max-width: 600px;
    margin: 10px auto 0;
    font-size: 1rem;
    line-height: 1.7;
}

.mk-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 48px;
}

.mk-sv-card {
    background: #fff;
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
    display: flex;
    flex-direction: column;
}

.mk-sv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 52px rgba(255, 102, 0, 0.15);
}

.mk-sv-card-top {
    background: linear-gradient(135deg, var(--orange) 0%, #ff8f3f 100%);
    padding: 20px 22px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mk-sv-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
}

.mk-sv-num {
    font-size: 2rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.22);
    line-height: 1;
}

.mk-sv-body {
    padding: 20px 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mk-sv-card h3 {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--dark-blue);
    line-height: 1.4;
}

.mk-sv-card p {
    font-size: 0.82rem;
    color: var(--text-medium);
    line-height: 1.65;
    flex: 1;
}

/* legacy top (shortcode) */
.mk-sv-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4px;
}

/* ── NASIL ÇALIŞIR ──────────────────────────────────────────── */
.mk-how-section {
    background: var(--dark-navy);
    position: relative;
    overflow: hidden;
}

.mk-how-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 80%, rgba(255, 102, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 102, 0, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.mk-how-section .section-badge {
    color: rgba(255, 255, 255, 0.8);
}

.mk-how-section h2 {
    color: #fff;
}

.mk-how-section .how-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

.mk-steps-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    position: relative;
    margin-top: 56px;
}

.mk-steps-modern::before {
    content: '';
    position: absolute;
    top: 51px;
    left: calc(16.66% + 28px);
    right: calc(16.66% + 28px);
    height: 2px;
    background: linear-gradient(90deg, var(--orange), rgba(255, 102, 0, 0.25));
    z-index: 1;
}

.mk-step-modern {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 28px 44px;
    position: relative;
    z-index: 2;
}

.mk-step-bubble {
    width: 102px;
    height: 102px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange) 0%, #ff8f3f 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 32px rgba(255, 102, 0, 0.42);
    transition: transform 0.25s ease;
}

.mk-step-bubble:hover {
    transform: scale(1.08);
}

.mk-step-bubble i {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 4px;
}

.mk-step-bubble span {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.mk-step-modern h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.35;
}

.mk-step-modern p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.58);
    line-height: 1.78;
}

/* Legacy icon step support */
.mk-step-img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90px;
}

.mk-step-icon {
    font-size: 3.2rem;
    color: var(--orange);
}

/* ── BÖLGELER ───────────────────────────────────────────────── */
.mk-bolge-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.mk-bolge-col {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
}

.mk-bolge-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mk-bolge-title i {
    color: var(--orange);
}

.mk-ilce-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.mk-ilce-tag {
    background: var(--light-gray);
    border: 1px solid var(--border);
    color: var(--text-dark);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: var(--transition);
    cursor: default;
}

.mk-ilce-tag:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--white);
}

.mk-bolge-note {
    margin-top: 28px;
    font-size: 0.9rem;
    color: var(--text-medium);
    padding: 14px 24px;
    background: rgba(255, 102, 0, 0.06);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 102, 0, 0.2);
}

.mk-bolge-note i {
    color: var(--orange);
    margin-right: 6px;
}

.mk-bolge-note a {
    color: var(--orange);
    font-weight: 600;
    text-decoration: underline;
}

/* ── SSS ────────────────────────────────────────────────────── */
.mk-faq-section {
    background: #f4f6fa;
}

.mk-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 52px;
    align-items: start;
}

.mk-faq-left {
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--dark-blue) 100%);
    border-radius: 20px;
    padding: 40px 32px;
    position: sticky;
    top: 100px;
}

.mk-faq-left .section-badge {
    margin-bottom: 20px;
}

.mk-faq-left h2 {
    font-size: 1.85rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.25;
    margin: 0 0 16px;
    letter-spacing: -0.3px;
}

.mk-faq-left>p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.75;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ── SON CTA ────────────────────────────────────────────────── */
.mk-cta-section {
    position: relative;
    background: linear-gradient(135deg, var(--orange) 0%, #cc4a00 45%, var(--dark-navy) 100%);
    padding: 90px 0;
    overflow: hidden;
}

.mk-cta-section::before {
    content: '';
    position: absolute;
    top: -55%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.07) 0%, transparent 65%);
    pointer-events: none;
}

.mk-cta-section::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.12) 0%, transparent 65%);
    pointer-events: none;
}

.mk-cta-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
}

.mk-cta-icon {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    display: block;
    animation: mk-pulse 2.4s ease-in-out infinite;
}

@keyframes mk-pulse {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
    }

    50% {
        transform: scale(1.1) rotate(-5deg);
    }
}

.mk-cta-content h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.mk-cta-content>p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.78;
    margin-bottom: 36px;
}

.mk-cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.mk-cta-badges {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.mk-cta-badges span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.82rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.15);
    padding: 6px 14px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.mk-cta-badges span i {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.8rem;
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1200px) {
    .mk-services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .mk-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mk-intro-grid {
        gap: 40px;
    }

    .mk-steps-modern::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .mk-page-hero {
        padding-top: 80px;
    }

    .mk-hero-inner h1 {
        font-size: 2rem;
    }

    .mk-hero-inner>p {
        font-size: 1rem;
    }

    .mk-hero-stats {
        grid-template-columns: 1fr 1fr;
    }

    .mk-hero-stat {
        padding: 18px;
    }

    .mk-hero-stat:nth-child(2) {
        border-right: none;
    }

    .mk-hero-stat:nth-child(3n) {
        border-top: 1px solid rgba(255, 255, 255, 0.07);
    }

    .mk-hero-stat:nth-child(4) {
        border-top: 1px solid rgba(255, 255, 255, 0.07);
        border-right: none;
    }

    .mk-hero-strips {
        flex-wrap: wrap;
    }

    .mk-strip {
        flex: 0 0 50%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .mk-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .mk-features-grid {
        grid-template-columns: 1fr;
    }

    .mk-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mk-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mk-bolge-cols {
        grid-template-columns: 1fr;
    }

    .mk-steps-modern {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .mk-step-modern {
        padding-bottom: 0;
    }

    .mk-faq-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .mk-faq-left {
        position: static;
    }

    .mk-cta-content h2 {
        font-size: 1.9rem;
    }
}

@media (max-width: 480px) {
    .mk-hero-inner h1 {
        font-size: 1.75rem;
    }

    .mk-hero-btns {
        flex-direction: column;
        align-items: stretch;
    }

    .mk-strip {
        flex: 0 0 100%;
    }

    .mk-services-grid {
        grid-template-columns: 1fr;
    }

    .mk-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mk-cta-btns {
        flex-direction: column;
        align-items: stretch;
    }

    .mk-cta-badges {
        gap: 8px;
    }

    .mk-cta-content h2 {
        font-size: 1.55rem;
    }
}