/* --- SIFIRLAMA VE TEMEL AYARLAR --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
}
/* Tum elemanlarin border-box standardina alinmasi */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Sayfa geneli sag-sol tasmasini kesin olarak engelleyen kural */
html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
    position: relative;
}

/* Gorsellerin ve kartlarin ekrandan tasmasini engeller */
img, svg, video, iframe {
    max-width: 100%;
    height: auto;
}

:root {
    --primary-orange: #f36c21;
    --primary-orange-hover: #d95a14;
    --dark-bg: #0d0e10;
    --card-dark-bg: #131518;
    --text-white: #ffffff;
    --text-muted: #9aa0a6;
    --text-dark: #202124;
    --border-color: rgba(255, 255, 255, 0.12);
}

body {
    background-color: #ffffff;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- BUTONLAR --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-orange);
    color: var(--text-white);
    border: 1px solid var(--primary-orange);
}

.btn-primary:hover {
    background-color: var(--primary-orange-hover);
    border-color: var(--primary-orange-hover);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-white);
    border: 1px solid var(--border-color);
}

.btn-outline:hover {
    border-color: var(--primary-orange);
    color: var(--primary-orange);
}

.btn-outline-orange {
    background-color: transparent;
    color: var(--primary-orange);
    border: 1px solid var(--primary-orange);
    padding: 10px 30px;
}

.btn-outline-orange:hover {
    background-color: var(--primary-orange);
    color: var(--text-white);
}

/* --- SECTION 1: HERO SECTION --- */
.hero-section {
    position: relative;
    background-color: var(--dark-bg);
    color: var(--text-white);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: right center;
    z-index: 1;
}

.hero-bg-right {
    right: 0 !important;
    left: auto !important;
    width: 50% !important;
    background-position: right !important;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #0d0e10 40%, rgba(13, 14, 16, 0.7) 70%, rgba(13, 14, 16, 0.3) 100%);
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
    padding-top: 15px;
    padding-bottom: 25px;
}

/* Navbar */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 48px;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 22px;
}

.nav-menu a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.nav-menu a:hover, .nav-menu a.active {
    color: var(--primary-orange);
}

/* Hero Content */
.hero-content {
    max-width: 520px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.hero-content h1 {
    font-size: 3.6rem;
    line-height: 1.05;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero-content h1 .highlight {
    color: var(--primary-orange);
}

.hero-content p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 25px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

/* Stats Bar */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background-color: var(--card-dark-bg);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 20px 10px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0 20px;
    border-right: 1px solid var(--border-color);
}

.stat-item:last-child {
    border-right: none;
}

.stat-icon {
    width: 42px;
    height: 42px;
    border: 1px solid var(--primary-orange);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-orange);
    font-size: 1.2rem;
}

.stat-info h3 {
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1.1;
}

.stat-info p {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 2px;
}

/* --- SECTION 2: HİZMETLERİMİZ --- */
.services-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: #111;
}

.title-line {
    width: 30px;
    height: 3px;
    background-color: var(--primary-orange);
    margin: 8px auto;
}

.section-title p {
    font-size: 0.88rem;
    color: #666;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

.service-card {
    border: 1px solid #eef0f2;
    border-radius: 6px;
    padding: 25px 15px;
    text-align: center;
    background-color: #fff;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.card-icon {
    font-size: 2.2rem;
    color: var(--primary-orange);
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #111;
}

.service-card p {
    font-size: 0.75rem;
    color: #666;
    line-height: 1.45;
}

.services-action {
    text-align: center;
    margin-top: 35px;
}

/* --- SECTION 3: ÖZELLİKLER BANNER --- */
.features-section {
    background-color: var(--dark-bg);
    padding: 30px 0;
    border-top: 1px solid var(--border-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-icon {
    font-size: 1.8rem;
    color: var(--primary-orange);
    margin-top: 2px;
}

.feature-text h4 {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 4px;
}

.feature-text p {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* --- MOBİL RESPONSIVE (HİZALANMA VE KAYMALARI ÖNLEME) --- */
@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .nav-menu { display: none; }
    .stats-bar { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .stat-item { border-right: none; }
    .features-grid { grid-template-columns: repeat(2, 1fr); gap: 25px; }
}

@media (max-width: 600px) {
    .hero-content h1 { font-size: 2.5rem; }
    .hero-buttons { flex-direction: column; }
    .services-grid { grid-template-columns: 1fr; }
    .stats-bar { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
}
/* --- HİZMETLERİMİZ DETAY SAYFASI --- */
.services-detail-section {
    padding: 30px 0 60px 0;
    background-color: #fcfcfc;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 25px;
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: var(--primary-orange);
}

.breadcrumb i {
    font-size: 0.65rem;
    color: #999;
}

/* 8'li Grid */
.services-detail-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.service-detail-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.service-detail-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 20px rgba(0,0,0,0.08);
}

/* Kart Üst Görsel ve İkon */
.card-image-box {
    position: relative;
    height: 160px;
    background-color: #ddd;
}

.card-image-box img {
    width: 100%;
    height: 170%;
    margin-top: -100px;
    object-fit: cover;
}

.card-badge-icon {
    position: absolute;
    bottom: -18px;
    left: 20px;
    width: 44px;
    height: 44px;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-orange);
    font-size: 1.2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

/* Kart İçerik */
.card-body {
    padding: 30px 20px 20px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-body h3 {
    font-size: 0.95rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 10px;
    letter-spacing: 0.3px;
}

.card-body p {
    font-size: 0.78rem;
    color: #666;
    line-height: 1.45;
    margin-bottom: 18px;
}

/* Onay Tikli Liste */
.check-list {
    list-style: none;
    margin-bottom: 20px;
    flex-grow: 1;
}

.check-list li {
    font-size: 0.75rem;
    color: #444;
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.check-list li i {
    color: var(--primary-orange);
    font-size: 0.85rem;
}

/* Detay Bağlantısı */
.card-link {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-orange);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s;
}

.card-link:hover {
    gap: 10px;
}

/* CTA BANNER */
.cta-banner {
    background-color: #121417;
    border-radius: 8px;
    padding: 22px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.cta-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cta-icon {
    font-size: 2.2rem;
    color: var(--primary-orange);
}

.cta-text h3 {
    color: #ffffff;
    font-size: 0.98rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.cta-text p {
    color: #9aa0a6;
    font-size: 0.82rem;
}

.btn-cta {
    padding: 12px 28px;
    font-size: 0.85rem;
    white-space: nowrap;
}

/* 6'LI BEYAZ İSTATİSTİK BARI */
.stats-white-bar {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 25px 10px;
    text-align: center;
}

.stat-white-item {
    padding: 0 10px;
    border-right: 1px solid #edf2f7;
}

.stat-white-item:last-child {
    border-right: none;
}

.stat-w-icon {
    font-size: 1.8rem;
    color: var(--primary-orange);
    margin-bottom: 8px;
}

.stat-white-item h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #111;
    line-height: 1.1;
}

.stat-white-item p {
    font-size: 0.73rem;
    color: #666;
    margin-top: 4px;
}

/* RESPONSIVE HİZALANMA */
@media (max-width: 1100px) {
    .services-detail-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-white-bar { grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .stat-white-item { border-right: none; }
}

@media (max-width: 768px) {
    .cta-banner { flex-direction: column; text-align: center; gap: 20px; }
    .cta-content { flex-direction: column; text-align: center; }
    .stats-white-bar { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .services-detail-grid { grid-template-columns: 1fr; }
    .stats-white-bar { grid-template-columns: 1fr; }
}

/* --- DEPO YÖNETİMİ SAYFA STİLLERİ --- */

/* Hero Düzenlemeleri */
.sub-hero-section {
    position: relative;
    background-color: var(--dark-bg);
    color: var(--text-white);
    padding-top: 80px;
    padding-bottom: 60px;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.sub-hero-section .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.sub-hero-section .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(13, 14, 16, 0.95) 0%, rgba(13, 14, 16, 0.7) 50%, rgba(13, 14, 16, 0.4) 100%);
    z-index: 2;
}

.sub-hero-container {
    position: relative;
    z-index: 3;
}

.light-breadcrumb {
    color: #a0a0a0;
    margin-bottom: 20px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.light-breadcrumb a {
    color: #a0a0a0;
}

.light-breadcrumb span {
    color: var(--primary-orange);
}

.sub-hero-content {
    max-width: 550px;
    margin-bottom: 40px;
}

.sub-hero-content h1 {
    font-size: 3.2rem;
    line-height: 1.1;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.sub-hero-content p {
    font-size: 1rem;
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 25px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-check-list {
    list-style: none;
}

.hero-check-list li {
    font-size: 0.9rem;
    color: #f0f0f0;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-check-list li i {
    color: var(--primary-orange);
    font-size: 1.1rem;
}

.sub-hero-stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 30px;
}

.sub-stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(19, 21, 24, 0.6);
    border-radius: 10px;
    border: 1px solid rgba(243, 108, 33, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(8px);
}

.sub-stat-item:hover {
    background: rgba(19, 21, 24, 0.9);
    border-color: rgba(243, 108, 33, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(243, 108, 33, 0.15), 0 0 20px rgba(243, 108, 33, 0.08);
}

.sub-stat-icon {
    width: 60px;
    height: 60px;
    border: 2px solid var(--primary-orange);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-orange);
    font-size: 1.6rem;
    flex-shrink: 0;
    background: rgba(243, 108, 33, 0.08);
    transition: all 0.4s ease;
}

.sub-stat-item:hover .sub-stat-icon {
    background: rgba(243, 108, 33, 0.15);
    transform: scale(1.1);
    box-shadow: 0 0 16px rgba(243, 108, 33, 0.3);
}

.sub-stat-info h3 {
    font-size: 1.8rem;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.sub-stat-item:hover .sub-stat-info h3 {
    color: var(--primary-orange);
}

.sub-stat-info p {
    font-size: 0.85rem;
    color: #d0d0d0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    font-weight: 600;
}

/* 6'lı Hizmetler Grid */
.sub-services-section {
    padding: 50px 0;
    background-color: #ffffff;
}

.sub-services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

.sub-service-card {
    border: 1px solid #eef0f2;
    border-radius: 6px;
    padding: 25px 15px;
    text-align: center;
    background: #fff;
    transition: transform 0.3s;
}

.sub-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.sub-service-card .card-icon {
    font-size: 2.2rem;
    color: var(--primary-orange);
    margin-bottom: 12px;
}

.sub-service-card h3 {
    font-size: 0.88rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 8px;
}

.sub-service-card p {
    font-size: 0.73rem;
    color: #666;
    line-height: 1.4;
}

/* Operasyon Süreci (Siyah Akış) */
.process-section {
    background-color: var(--card-dark-bg);
    padding: 50px 0;
    color: var(--text-white);
}

.light-title h2 {
    color: var(--text-white);
}

.process-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.process-step {
    text-align: center;
    flex: 1;
}

.step-icon {
    font-size: 2rem;
    color: var(--primary-orange);
    margin-bottom: 12px;
}

.process-step h4 {
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.process-step p {
    font-size: 0.72rem;
    color: #9aa0a6;
    line-height: 1.35;
}

.process-arrow {
    color: #444;
    font-size: 0.9rem;
}

/* Alt Özellikler ve Buton */
.sub-features-section {
    padding: 40px 0;
    background-color: #ffffff;
}

.sub-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 35px;
}

.sub-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.sub-feature-icon {
    font-size: 1.8rem;
    color: var(--primary-orange);
}

.sub-feature-text h4 {
    font-size: 0.82rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 4px;
}

.sub-feature-text p {
    font-size: 0.73rem;
    color: #666;
    line-height: 1.4;
}

.bottom-action {
    text-align: center;
}

.btn-lg {
    padding: 12px 35px;
    font-size: 0.9rem;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
    .sub-services-grid { grid-template-columns: repeat(3, 1fr); }
    .process-flow { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .process-arrow { display: none; }
}

@media (max-width: 768px) {
    .sub-hero-stats { flex-direction: column; gap: 15px; }
    .sub-features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 500px) {
    .sub-services-grid { grid-template-columns: 1fr; }
    .process-flow { grid-template-columns: 1fr; }
    .sub-features-grid { grid-template-columns: 1fr; }
}

/* --- E-TİCARET FULFILLMENT SAYFA STİLLERİ --- */

.text-orange {
    color: var(--primary-orange);
}

.hero-features-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    color: #e0e0e0;
    padding: 12px 15px;
    border-radius: 8px;
    background: rgba(243, 108, 33, 0.08);
    border: 1px solid rgba(243, 108, 33, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.hero-feature-item:hover {
    background: rgba(243, 108, 33, 0.15);
    border-color: var(--primary-orange);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(243, 108, 33, 0.2);
}

.hero-feature-item i {
    color: var(--primary-orange);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.hero-feature-item:hover i {
    transform: scale(1.15);
}

.stats-4-col {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

/* İki Sütunlu Düzen */
.integration-section {
    padding: 50px 0;
    background-color: #fff;
}

.two-column-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.column-item h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 8px;
}

.column-line {
    width: 40px;
    height: 3px;
    background-color: var(--primary-orange);
    margin-bottom: 20px;
}

.solution-check-list {
    list-style: none;
}

.solution-check-list li {
    font-size: 0.83rem;
    color: #444;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.solution-check-list li i {
    color: var(--primary-orange);
    font-size: 1rem;
}

/* Platform Logoları Grid */
.platforms-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.platform-card {
    border: 1px solid #eef0f2;
    border-radius: 6px;
    padding: 15px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fafafa;
    min-height: 55px;
}

.platform-card img {
    max-width: 80%;
    max-height: 28px;
    object-fit: contain;
    filter: grayscale(20%);
    transition: filter 0.3s;
}

.platform-card:hover img {
    filter: grayscale(0%);
}

.platform-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 100%;
    text-align: center;
}

.platform-placeholder i {
    font-size: 2rem;
    color: var(--primary-orange);
    transition: all 0.3s ease;
}

.platform-placeholder span {
    font-size: 0.7rem;
    font-weight: 600;
    color: #404040;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.platform-card:hover .platform-placeholder i {
    transform: scale(1.1);
    color: var(--primary-orange-hover);
}

.platform-card:hover .platform-placeholder span {
    color: var(--primary-orange);
}

/* Alt CTA Banner */
.cta-banner {
    background-color: #fff6f2;
    border: 1px solid #ffe3d5;
    border-radius: 8px;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cta-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cta-icon {
    width: 50px;
    height: 50px;
    background-color: #ffebd8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-orange);
    font-size: 1.5rem;
}

.cta-info h4 {
    font-size: 1rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 3px;
}

.cta-info p {
    font-size: 0.8rem;
    color: #666;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .two-column-layout { grid-template-columns: 1fr; }
    .stats-4-col { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

@media (max-width: 600px) {
    .cta-banner { flex-direction: column; gap: 15px; text-align: center; }
    .cta-info { flex-direction: column; }
    .platforms-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-features-grid { grid-template-columns: repeat(2, 1fr); }
}

/* --- SEVKİYAT & DAĞITIM SAYFA STİLLERİ --- */

.grid-2x2 {
    grid-template-columns: repeat(2, 1fr) !important;
}

.grid-5-col {
    grid-template-columns: repeat(5, 1fr) !important;
}

/* Harita ve Ağı Stilleri */
.network-fleet-section {
    padding: 50px 0;
    background-color: #fff;
}

.map-container {
    text-align: center;
    margin-bottom: 20px;
}

.turkey-map-img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.map-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    background-color: #fcfcfc;
    border: 1px solid #f0f0f0;
    padding: 15px;
    border-radius: 6px;
    text-align: center;
}

.map-stat h4 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary-orange);
    margin-bottom: 2px;
}

.map-stat p {
    font-size: 0.72rem;
    color: #666;
}

/* Filo Stilleri */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.fleet-card {
    border: 1px solid #eef0f2;
    border-radius: 6px;
    padding: 15px 10px;
    text-align: center;
    background: #fafafa;
}

.fleet-card img {
    max-width: 100%;
    height: 70px;
    object-fit: contain;
    margin-bottom: 10px;
}

.fleet-card h4 {
    font-size: 0.8rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 4px;
}

.fleet-card p {
    font-size: 0.7rem;
    color: #666;
    line-height: 1.35;
}

.fleet-note {
    background-color: #fff6f2;
    border: 1px solid #ffe3d5;
    border-radius: 6px;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.fleet-note i {
    font-size: 1.4rem;
    color: var(--primary-orange);
}

.fleet-note p {
    font-size: 0.75rem;
    color: #444;
    line-height: 1.4;
    margin: 0;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
    .grid-5-col { grid-template-columns: repeat(3, 1fr) !important; }
}

@media (max-width: 768px) {
    .grid-5-col { grid-template-columns: 1fr !important; }
    .fleet-grid { grid-template-columns: 1fr; }
    .map-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
}

/* --- KARGO YÖNETİMİ SAYFA STİLLERİ --- */

.cargo-partners-section {
    padding: 50px 0;
    background-color: #fff;
}

/* Sol Taraf Siyah Kutu Düzeni */
.dark-container-box {
    background-color: var(--card-dark-bg);
    border-radius: 8px;
    padding: 30px 25px;
}

.light-text {
    color: var(--text-white) !important;
}

.cargo-logos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.cargo-logo-card {
    background-color: #ffffff;
    border-radius: 6px;
    padding: 10px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cargo-logo-card img {
    max-width: 90%;
    max-height: 28px;
    object-fit: contain;
}

/* 3PL Sayfa Hero Features Koyulaştırılmış Stil */
.sub-hero-content .hero-features-grid .hero-feature-item {
    background: rgba(243, 108, 33, 0.25) !important;
    border: 1px solid rgba(243, 108, 33, 0.35) !important;
}

.cargo-footer-note {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
    color: #b0b3b8;
    font-size: 0.75rem;
    line-height: 1.35;
}

.cargo-footer-note i {
    font-size: 1.3rem;
    color: var(--primary-orange);
    flex-shrink: 0;
}

/* Sağ Taraf Neden OTİF Düzeni */
.why-us-list {
    list-style: none;
    margin-bottom: 25px;
}

.why-us-list li {
    font-size: 0.83rem;
    color: #333;
    margin-bottom: 11px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.why-us-list li i {
    color: var(--primary-orange);
    font-size: 0.95rem;
}

.info-note-box {
    background-color: #f9fafb;
    border: 1px solid #eef0f2;
    border-radius: 6px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-note-box i {
    font-size: 1.5rem;
    color: var(--primary-orange);
}

.info-note-box p {
    font-size: 0.78rem;
    color: #555;
    margin: 0;
    line-height: 1.4;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .cargo-logos-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 480px) {
    .cargo-logos-grid { grid-template-columns: repeat(2, 1fr); }
}

/* --- 3PL ÇÖZÜMLERİ SAYFA STİLLERİ --- */

/* Kart İçi Liste Tasarımı */
.card-with-list {
    text-align: left !important;
}

.card-with-list .card-icon {
    text-align: center;
}

.card-with-list h3 {
    text-align: center;
    margin-bottom: 15px;
}

.card-inner-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.card-inner-list li {
    font-size: 0.72rem;
    color: #555;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.card-inner-list li i {
    color: var(--primary-orange);
    font-size: 0.8rem;
    flex-shrink: 0;
}

/* 3PL Avantajlarımız (Siyah Kutu - Görselli) */
.advantages-section {
    padding: 20px 0 50px 0;
    background-color: #fff;
}

.advantages-box {
    background-color: var(--card-dark-bg);
    border-radius: 8px;
    padding: 35px 30px;
}

.advantages-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 25px;
    align-items: center;
    margin-top: 25px;
}

.advantages-list {
    list-style: none;
    padding: 0;
}

.advantages-list li {
    font-size: 0.8rem;
    color: #e0e0e0;
    margin-bottom: 18px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.4;
}

.advantages-list li i {
    color: var(--primary-orange);
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.advantages-image img {
    width: 100%;
    border-radius: 6px;
    object-fit: cover;
    height: 180px;
}

/* En Alt Genel İstatistik Bandı */
.global-stats-section {
    padding: 30px 0;
    background-color: #fafafa;
    border-top: 1px solid #eee;
}

.global-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.global-stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.global-stat-item i {
    font-size: 1.6rem;
    color: var(--primary-orange);
}

.stat-text h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #111;
    margin: 0;
    line-height: 1.1;
}

.stat-text p {
    font-size: 0.7rem;
    color: #666;
    margin: 0;
}

.cta-section-wrapper {
    background-color: #fff;
    padding: 30px 0;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .advantages-content {
        grid-template-columns: 1fr;
    }
    .advantages-image {
        order: -1;
    }
    .global-stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .global-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* --- KATMA DEĞERLİ HİZMETLER STİLLERİ --- */

/* 4'lü Grid Yapsı */
.grid-4-col {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Görselli Kart Yapsı */
.card-with-img {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 22px 18px 18px 18px;
    height: 100%;
}

.card-with-img p {
    font-size: 0.74rem;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.45;
}

.card-img-holder {
    width: 100%;
    height: 110px;
    border-radius: 6px;
    overflow: hidden;
    margin-top: auto;
}

.card-img-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.card-with-img:hover .card-img-holder img {
    transform: scale(1.05);
}

/* Neden OTİF Katma Değerli Hizmetler Grid */
.why-vas-section {
    padding: 10px 0 40px 0;
    background-color: #fff;
}

.why-vas-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.why-vas-item {
    text-align: center;
    padding: 10px 8px;
}

.why-vas-item .why-icon {
    font-size: 1.8rem;
    color: var(--primary-orange);
    margin-bottom: 12px;
}

.why-vas-item h4 {
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.why-vas-item p {
    color: #aaaaaa;
    font-size: 0.7rem;
    line-height: 1.35;
    margin: 0;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
    .grid-4-col {
        grid-template-columns: repeat(2, 1fr);
    }
    .why-vas-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .grid-4-col {
        grid-template-columns: 1fr;
    }
    .why-vas-grid {
        grid-template-columns: 1fr;
    }
}
/* --- TEKNOLOJİ SAYFASI STİLLERİ --- */

/* 6'lı Grid Düzeni */
.grid-6-col {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

/* Entegre Olunan Platformlar Bölümü */
.integrated-platforms-section {
    padding: 20px 0 40px 0;
    background-color: #fff;
}

.platforms-logos-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 12px;
    margin: 25px 0 30px 0;
}

.platform-logo-item {
    background: #ffffff;
    border-radius: 6px;
    padding: 8px 12px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.platform-logo-item img {
    max-width: 100%;
    max-height: 24px;
    object-fit: contain;
}

.platforms-stats-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.p-stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
}

.p-stat-item i {
    font-size: 1.6rem;
    color: var(--primary-orange);
}

.p-stat-item h3 {
    font-size: 1.05rem;
    font-weight: 800;
    margin: 0;
    line-height: 1.1;
}

.p-stat-item p {
    font-size: 0.7rem;
    color: #aaa;
    margin: 0;
}

/* Mind-Map (Yazılım Çözümlerimiz) Şeması */
.tech-solutions-advantages {
    padding: 40px 0;
    background-color: #fff;
}

.mindmap-container {
    position: relative;
    padding: 20px 0;
    min-height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mindmap-center {
    width: 90px;
    height: 90px;
    background-color: #0b0f19;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 700;
    font-size: 0.75rem;
    line-height: 1.2;
    z-index: 2;
    border: 3px solid var(--primary-orange);
}

.mindmap-nodes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 1fr);
    gap: 15px;
}

.node {
    background: #f8f9fa;
    border: 1px dashed #d1d5db;
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 0.72rem;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.tech-advantages-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.tech-advantages-wrapper .why-us-list {
    flex: 1;
    margin-bottom: 0;
}

.tech-advantages-img {
    width: 180px; /* Tasarıma göre genişliği ayarlayabilirsin */
    flex-shrink: 0;
}

.tech-advantages-img img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Mobil Uyum */
@media (max-width: 576px) {
    .tech-advantages-wrapper {
        flex-direction: column;
    }
    
    .tech-advantages-img {
        width: 100%;
        max-width: 220px;
        margin: 0 auto;
    }
}

/* RESPONSIVE */
@media (max-width: 1100px) {
    .grid-6-col {
        grid-template-columns: repeat(3, 1fr);
    }
    .platforms-logos-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .platforms-stats-bar {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .grid-6-col {
        grid-template-columns: 1fr;
    }
    .platforms-logos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .platforms-stats-bar {
        grid-template-columns: 1fr;
    }
}

/* --- MÜŞTERİ PORTALI SAYFASI STİLLERİ --- */

/* Hero Mockup Görsel Hizalama */
.portal-hero-mockup {
    margin-top: 20px;
    text-align: right;
}

.portal-hero-mockup img {
    max-width: 100%;
    height: auto;
}

/* Siyah İstatistik Bandı */
.portal-stats-section {
    padding: 10px 0 40px 0;
    background-color: #fff;
}

.portal-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Büyük CTA ve Güvenli Erişim Kartı */
.portal-cta-section {
    padding: 30px 0 50px 0;
    background-color: #fff;
}

.portal-hero-card {
    background-color: #f8f9fa;
    border: 1px solid #eef0f2;
    border-radius: 12px;
    padding: 40px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 30px;
    align-items: center;
}

.portal-card-left h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #111;
    line-height: 1.2;
    margin-bottom: 15px;
}

.portal-card-left p {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.5;
}

.portal-btn-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid #333;
    color: #333;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: #333;
    color: #fff;
}

.portal-card-center {
    text-align: center;
}

.portal-card-center img {
    max-width: 100%;
    height: auto;
}

.portal-card-right h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 10px;
}

/* Alt Güvenlik Dipnotu */
.security-footer-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 25px;
    color: #666;
    font-size: 0.8rem;
    font-weight: 500;
}

.security-footer-note i {
    color: #28a745;
    font-size: 1rem;
}

.portal-hero-card {
    background-color: #f8f9fa;
    /* Arka plan görseli ve ortalama ayarları */
    background-image: url('img/kulaklık.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain; /* Görselin taşmadan kart içine sığması için */
    
    border: 1px solid #eef0f2;
    border-radius: 12px;
    padding: 40px;
    
    /* İki sütunu sağa ve sola yaslayarak görselin ortada görünmesini sağlar */
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.portal-card-left,
.portal-card-right {
    flex: 1;
    max-width: 42%; /* Ortadaki görselin kapanmaması için metin alanlarını sınırlandırıyoruz */
    z-index: 2; /* Yazıların görselin üzerinde net durması için */
}

/* Mobil cihazlarda görselin yazıları bozmaması için */
@media (max-width: 992px) {
    .portal-hero-card {
        flex-direction: column;
        gap: 30px;
        background-size: 200px auto; /* Mobilde görsel boyutunu küçültür */
    }

    .portal-card-left,
    .portal-card-right {
        max-width: 100%;
    }
}

/* RESPONSIVE DÜZENLEMELER */
@media (max-width: 992px) {
    .portal-hero-card {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .portal-btn-group {
        justify-content: center;
    }

    .portal-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .portal-stats-grid {
        grid-template-columns: 1fr;
    }

    .portal-hero-card {
        padding: 20px;
    }
}

/* --- DEPOLARIMIZ SAYFASI STİLLERİ --- */

/* Hero Görsel Üzeri Rozetler */
.hero-overlay-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    flex-direction: column;
    gap: 10px;
    align-self: center;
    justify-self: end;
}

.badge-item {
    background: rgba(15, 23, 42, 0.85);
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.badge-item i {
    color: var(--primary-orange);
}

/* Harita ve Lokasyonlar Düzeni */
.locations-section {
    padding: 40px 0;
    background-color: #fff;
}

.locations-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.locations-map-container {
    position: relative;
    width: 100%;
}

.map-bg {
    width: 100%;
    height: auto;
    opacity: 0.85;
}

.map-pin {
    position: absolute;
    width: 28px;
    height: 28px;
    background-color: var(--primary-orange);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    cursor: pointer;
    transition: transform 0.2s ease;
}

.map-pin:hover {
    transform: scale(1.2);
}

.locations-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.location-card {
    background-color: #f8f9fa;
    border: 1px solid #eef0f2;
    border-radius: 8px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.loc-number {
    width: 26px;
    height: 26px;
    background-color: var(--primary-orange);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}

.loc-name {
    font-weight: 700;
    color: #111;
    font-size: 0.95rem;
    flex: 1;
}

.loc-detail {
    display: flex;
    flex-direction: column;
    text-align: right;
}

.loc-detail strong {
    font-size: 0.85rem;
    color: #111;
}

.loc-detail span {
    font-size: 0.7rem;
    color: #777;
}

/* Grid Tanımları */
.grid-5-col {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.grid-5-col-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

/* Alt Avantajlar Bandı */
.bottom-features-bar {
    padding: 25px 0;
    background-color: #f8f9fa;
    border-top: 1px solid #eee;
}

.bottom-features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.b-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    text-align: center;
}

.b-feature-item i {
    font-size: 1.2rem;
    color: var(--primary-orange);
}

.b-feature-item span {
    font-size: 0.78rem;
    font-weight: 600;
    color: #333;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .locations-wrapper {
        grid-template-columns: 1fr;
    }
    .grid-5-col,
    .grid-5-col-stats,
    .bottom-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .grid-5-col,
    .grid-5-col-stats,
    .bottom-features-grid {
        grid-template-columns: 1fr;
    }
}

/* --- SEKTÖRLER SAYFASI STİLLERİ --- */

/* Hero Altıgen (Hexagon) Grid Alanı */
.hero-hex-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 480px;
    justify-content: center;
    align-self: center;
    justify-self: end;
}

.hex-item {
    position: relative;
    width: 100px;
    height: 100px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: #000;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hex-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hex-item span {
    position: absolute;
    font-size: 0.6rem;
    font-weight: 800;
    color: #fff;
    text-align: center;
    padding: 0 4px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
    pointer-events: none;
}

.hex-item:hover img {
    transform: scale(1.1);
    opacity: 0.9;
}

/* Sektör Kartları (4'lü Grid - 2 Satır) */
.sectors-card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.sector-card {
    background: #fff;
    border: 1px solid #eef0f2;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sector-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.sector-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.sector-card-header i {
    font-size: 1.2rem;
    color: var(--primary-orange);
}

.sector-card-header h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: #111;
    margin: 0;
}

.sector-card-img {
    width: 100%;
    height: 120px;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 12px;
}

.sector-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sector-card p {
    font-size: 0.78rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Siyah Bant Avantajlar (5'li Yan Yana) */
.advantages-five-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    text-align: center;
    margin-top: 25px;
}

.advantage-col {
    color: #fff;
}

.advantage-col i {
    font-size: 1.8rem;
    color: var(--primary-orange);
    margin-bottom: 12px;
}

.advantage-col h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.advantage-col p {
    font-size: 0.72rem;
    color: #aaa;
    line-height: 1.4;
    margin: 0;
}

/* Alt Metrik Bandı */
.bottom-stats-bar {
    padding: 25px 0;
    background-color: #f8f9fa;
    border-top: 1px solid #eee;
}

.bottom-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.b-stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.b-stat-item i {
    font-size: 1.5rem;
    color: var(--primary-orange);
}

.b-stat-item h3 {
    font-size: 1.1rem;
    font-weight: 800;
    margin: 0;
    line-height: 1;
}

.b-stat-item p {
    font-size: 0.72rem;
    color: #666;
    margin: 0;
}

#sektor{
    height: 650px;
    background-color:#ffffff;
}
/* RESPONSIVE */
@media (max-width: 992px) {
    .sectors-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .advantages-five-grid,
    .bottom-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-hex-grid {
        justify-content: center;
        margin-top: 20px;
    }
}

@media (max-width: 576px) {
    .sectors-card-grid,
    .advantages-five-grid,
    .bottom-stats-grid {
        grid-template-columns: 1fr;
    }
}


/* --- REFERANSLAR SAYFASI STİLLERİ --- */

/* 6 Sütunlu Logo Grid Yapısı */
.references-logo-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

.ref-logo-card {
    background: #fff;
    border: 1px solid #eef0f2;
    border-radius: 8px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.02);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.ref-logo-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.06);
    border-color: #ddd;
}

.ref-logo-card img {
    max-width: 100%;
    max-height: 45px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.ref-logo-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Başarı Hikayeniz Sıradaki Olsun Kart Stilleri */
.success-story-section {
    padding: 40px 0;
}

.success-story-card {
    background-color: #f8f9fa;
    border: 1px solid #eef0f2;
    border-radius: 12px;
    padding: 35px;
    display: grid;
    grid-template-columns: 1.2fr 1.1fr 1.2fr;
    gap: 30px;
    align-items: center;
}

.story-left h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #111;
    line-height: 1.2;
    margin-bottom: 12px;
}

.story-left p {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

.story-center img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.story-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.story-features-list li {
    font-size: 0.82rem;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.story-features-list li i {
    color: var(--primary-orange);
    font-size: 0.95rem;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .references-logo-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .references-logo-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .success-story-card {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .story-center img {
        height: 250px;
    }
}

@media (max-width: 576px) {
    .references-logo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* --- BAŞARI HİKAYELERİMİZ SAYFASI STİLLERİ --- */

/* Hero Alıntı Kutusu */
.hero-quote-box {
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border-radius: 8px;
    padding: 20px;
    color: #fff;
    max-width: 320px;
    align-self: center;
    justify-self: end;
}

.hero-quote-box i {
    color: var(--primary-orange);
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.hero-quote-box p {
    font-size: 0.85rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

/* Vaka Analizi (Case Studies) 4'lü Grid */
.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.case-card {
    background: #fff;
    border: 1px solid #eef0f2;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.case-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.07);
}

.case-card-img {
    position: relative;
    height: 140px;
}

.case-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.badge-tag {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.case-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.case-logo {
    height: 35px;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.case-logo img {
    max-height: 100%;
    max-width: 120px;
    object-fit: contain;
}

.case-desc {
    font-size: 0.78rem;
    color: #555;
    line-height: 1.45;
    margin-bottom: 15px;
    min-height: 50px;
}

.case-metrics {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
    padding-top: 10px;
    border-top: 1px dashed #eee;
}

.metric-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.metric-item i {
    color: var(--primary-orange);
    font-size: 0.9rem;
    width: 16px;
}

.metric-item strong {
    font-size: 0.85rem;
    color: #111;
    margin-right: 4px;
}

.metric-item span {
    font-size: 0.7rem;
    color: #777;
}

.case-link {
    margin-top: auto;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--primary-orange);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s ease;
}

.case-link:hover {
    gap: 10px;
}

/* Ortadaki Slogan */
.mid-slogan {
    text-align: center;
    margin-top: 35px;
    font-size: 0.95rem;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.mid-slogan i {
    color: var(--primary-orange);
}

.mid-slogan strong {
    color: var(--primary-orange);
}

/* Büyük CTA Kartı */
.cta-card-section {
    padding: 40px 0;
}

.cta-hero-card {
    background-color: #f8f9fa;
    border: 1px solid #eef0f2;
    border-radius: 12px;
    padding: 40px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
    align-items: center;
}

.cta-card-content h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #111;
    line-height: 1.2;
    margin-bottom: 12px;
}

.cta-card-content p {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.5;
}

.cta-btn-group {
    display: flex;
    gap: 15px;
}

.cta-card-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
}

/* Alt Band 4'lü Düzen */
.four-cols-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.four-cols-bar .b-feature-item {
    text-align: left;
    justify-content: flex-start;
}

.four-cols-bar .b-feature-item strong {
    display: block;
    font-size: 0.82rem;
    color: #111;
}

.four-cols-bar .b-feature-item p {
    font-size: 0.7rem;
    color: #777;
    margin: 0;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
    .case-studies-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .cta-hero-card {
        grid-template-columns: 1fr;
    }
    .four-cols-bar {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .case-studies-grid,
    .four-cols-bar {
        grid-template-columns: 1fr;
    }
    .cta-btn-group {
        flex-direction: column;
    }
}

/* --- HAKKIMIZDA SAYFASI STİLLERİ --- */

/* 4'lü Siyah Metrik Izgarası */
.grid-4-col-about {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.grid-4-col-about .p-stat-item {
    align-items: flex-start;
}

.grid-4-col-about .p-stat-item strong {
    display: block;
    color: #fff;
    font-size: 0.9rem;
    margin: 3px 0;
}

.grid-4-col-about .p-stat-item p {
    font-size: 0.72rem;
    color: #aaa;
    margin: 0;
    line-height: 1.35;
}

/* Güçlü Yönler & Tanıtım Metni Alanı */
.about-strength-section {
    padding: 40px 0;
    background-color: #fff;
}

.about-strength-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.1fr 1.2fr;
    gap: 25px;
    align-items: center;
}

/* Sol Liste */
.strength-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.strength-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.s-icon {
    width: 38px;
    height: 38px;
    background: #fff;
    border: 1px solid #eef0f2;
    box-shadow: 0 2px 6px rgba(0,0,0,0.03);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-orange);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.strength-item h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 4px;
}

.strength-item p {
    font-size: 0.78rem;
    color: #666;
    line-height: 1.45;
    margin: 0;
}

/* Orta Görsel */
.about-mid-image {
    height: 100%;
    min-height: 320px;
}

.about-mid-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* Sağ Kurumsal Metin Kutusu */
.about-text-card {
    background-color: #f8f9fa;
    border: 1px solid #eef0f2;
    border-radius: 8px;
    padding: 30px;
}

.about-text-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 15px;
}

.about-text-card p {
    font-size: 0.82rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.highlight-text {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--primary-orange);
    line-height: 1.4;
    margin-top: 20px;
}

/* 6'lı Alt Metrik Izgarası */
.grid-6-col {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
    .about-strength-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-mid-image {
        min-height: 250px;
    }

    .grid-4-col-about,
    .grid-6-col {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .grid-4-col-about,
    .grid-6-col {
        grid-template-columns: 1fr;
    }
}

/* --- YÖNETİM EKİBİ SAYFASI STİLLERİ --- */

/* 5 Üyeli Izgara Düzeni */
.grid-5-col-team {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.team-card {
    background: #fff;
    border: 1px solid #eef0f2;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.team-img {
    width: 100%;
    height: 220px;
    background-color: #f4f5f7;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.team-info {
    padding: 15px;
    display: flex;
    flex-direction: column;
    flex: 1;
    text-align: center;
}

.team-info h3 {
    font-size: 1rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 2px;
}

.team-title {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.team-info p {
    font-size: 0.72rem;
    color: #666;
    line-height: 1.45;
    margin-bottom: 15px;
}

.linkedin-link {
    margin-top: auto;
    align-self: center;
    width: 30px;
    height: 30px;
    background: #eef0f2;
    color: #0077b5;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: background 0.2s ease, color 0.2s ease;
}

.linkedin-link:hover {
    background: #0077b5;
    color: #fff;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .grid-5-col-team {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .grid-5-col-team {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .grid-5-col-team {
        grid-template-columns: 1fr;
    }
}

/* --- KARİYER SAYFASI STİLLERİ --- */

/* Neden OTİF Alanı */
.why-otif-section {
    padding: 40px 0;
}

.why-otif-wrapper {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 25px;
    align-items: stretch;
}

.why-cards-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.why-card {
    background: #fff;
    border: 1px solid #eef0f2;
    border-radius: 8px;
    padding: 20px 12px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.02);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: auto;
}

.why-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.06);
}

.why-icon {
    width: 36px;
    height: 36px;
    margin: 0 auto 12px;
    color: var(--primary-orange);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-card h3 {
    font-size: 0.85rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 8px;
}

.why-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
    margin: 0;
}

.why-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* Avantajlar ve Açık Pozisyonlar Alanı */
.benefits-jobs-section {
    padding: 30px 0 50px;
}

.benefits-jobs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* Sol Avantajlar */
.benefits-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 20px;
    align-items: center;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.benefits-list li {
    font-size: 0.8rem;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefits-list li i {
    color: var(--primary-orange);
    font-size: 0.95rem;
}

.benefits-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
}

/* Sağ Açık Pozisyonlar */
.jobs-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.job-item {
    background: #fff;
    border: 1px solid #eef0f2;
    border-radius: 6px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.job-item:hover {
    border-color: #ddd;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    transform: translateX(3px);
}

.job-info h4 {
    font-size: 0.85rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 2px;
}

.job-info span {
    font-size: 0.7rem;
    color: #888;
}

.job-location {
    font-size: 0.72rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 8px;
}

.job-location i {
    color: var(--primary-orange);
}

.job-location .arrow-icon {
    color: #aaa;
    font-size: 0.75rem;
    margin-left: 5px;
}

.view-all-jobs {
    text-align: center;
    margin-top: 15px;
}

.btn-link {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-orange);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-link:hover {
    gap: 10px;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .why-otif-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .why-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .benefits-jobs-grid {
        grid-template-columns: 1fr;
    }

    .benefits-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .why-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .job-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .job-location {
        width: 100%;
        justify-content: space-between;
    }
}

/* --- SÜRDÜRÜLEBİLİRLİK SAYFASI STİLLERİ --- */

:root {
    --green-accent: #2e7d32;
    --green-light: #e8f5e9;
    --green-dark: #1b4332;
}

.text-green {
    color: var(--green-accent) !important;
}

.title-line.green-line {
    background-color: var(--green-accent) !important;
}

.hero-features-grid.green-theme .hero-feature-item i {
    color: var(--green-accent);
}

/* Sürdürülebilirlik Yaklaşımımız (3 Sütun) */
.sustainability-approach-section {
    padding: 50px 0;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.approach-card {
    background: #fff;
    border: 1px solid #eef0f2;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.approach-text {
    padding: 25px 20px;
    flex: 1;
}

.approach-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.approach-header i {
    font-size: 1.8rem;
    color: var(--green-accent);
}

.approach-header h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: #111;
    line-height: 1.25;
}

.approach-text p {
    font-size: 0.78rem;
    color: #555;
    line-height: 1.45;
    margin-bottom: 15px;
}

.green-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.green-check-list li {
    font-size: 0.75rem;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
}

.green-check-list li i {
    color: var(--green-accent);
    font-size: 0.85rem;
}

.approach-img {
    width: 100%;
    height: 180px;
}

.approach-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Sürdürülebilirlik Hedeflerimiz (6'lı Izgara) */
.sustainability-goals-section {
    padding: 30px 0 50px;
    background-color: #fafafa;
}

.goals-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

.goal-card {
    background: #fff;
    border: 1px solid #eef0f2;
    border-radius: 8px;
    padding: 20px 12px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.02);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.goal-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.06);
}

.goal-icon {
    width: 42px;
    height: 42px;
    margin: 0 auto 12px;
    color: var(--green-accent);
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.goal-card p {
    font-size: 0.73rem;
    color: #444;
    line-height: 1.4;
    margin: 0;
}

/* Faaliyetlerimizin Etkisi (Koyu Yeşil Alan) */
.sustainability-impact-section {
    background-color: var(--green-dark);
    padding: 45px 0;
    color: #fff;
}

.light-title h2 {
    color: #fff !important;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    text-align: center;
}

.impact-item {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0 10px;
}

.impact-item:last-child {
    border-right: none;
}

.impact-item i {
    font-size: 1.6rem;
    color: #81c784;
    margin-bottom: 10px;
}

.impact-item h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 4px;
    color: #fff;
}

.impact-item p {
    font-size: 0.7rem;
    color: #d1e7dd;
    margin: 0;
}

.cta-icon.green-icon i {
    color: var(--green-accent);
}

/* RESPONSIVE */
@media (max-width: 1100px) {
    .approach-grid {
        grid-template-columns: 1fr;
    }

    .goals-grid, .impact-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .impact-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        padding-bottom: 15px;
    }
}

@media (max-width: 600px) {
    .goals-grid, .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* --- TEKLİF AL SAYFASI STİLLERİ --- */

.quote-form-section {
    margin-top: -30px;
    position: relative;
    z-index: 5;
    padding-bottom: 40px;
}

.quote-form-card {
    background: #fff;
    border: 1px solid #eef0f2;
    border-radius: 8px;
    padding: 35px 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.quote-form-card h2 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 8px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 15px;
    margin-top: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group.full-width {
    grid-column: 1 / -1;
    margin-top: 15px;
}

.form-group label {
    font-size: 0.78rem;
    font-weight: 700;
    color: #222;
}

.form-group label span {
    color: var(--primary-orange);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 0.8rem;
    color: #333;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background-color: #fff;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a0aec0;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.1);
}

.form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 25px;
    padding-top: 15px;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    color: #555;
    cursor: pointer;
}

.checkbox-container input {
    accent-color: var(--primary-orange);
    width: 15px;
    height: 15px;
    cursor: pointer;
}

/* Neden OTİF & İletişim Alt Bölüm */
.quote-bottom-info {
    padding: 30px 0 50px;
}

.quote-info-grid {
    display: grid;
    grid-template-columns: 1.8fr 1.2fr;
    gap: 40px;
}

/* Sol Neden OTİF 5'li Row */
.why-icons-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.why-item {
    text-align: center;
}

.w-icon {
    width: 42px;
    height: 42px;
    margin: 0 auto 10px;
    color: var(--primary-orange);
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-item h4 {
    font-size: 0.78rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 2px;
}

.why-item p {
    font-size: 0.72rem;
    color: #666;
    margin: 0;
}

/* Sağ İletişim Liste */
.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.78rem;
    color: #444;
}

.contact-info-list li i {
    color: var(--primary-orange);
    font-size: 1rem;
    margin-top: 2px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .form-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .quote-info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .quote-form-card {
        padding: 20px;
    }

    .form-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }

    .why-icons-row {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* --- İLETİŞİM SAYFASI STİLLERİ --- */

/* Hero İletişim Hızlı Bilgiler */
.contact-quick-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.c-quick-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.c-quick-item i {
    color: var(--primary-orange);
    font-size: 1.1rem;
    width: 20px;
}

.c-quick-item div {
    display: flex;
    flex-direction: column;
}

.c-quick-item strong {
    font-size: 0.82rem;
    color: #fff;
    font-weight: 700;
}

.c-quick-item span {
    font-size: 0.72rem;
    color: #ccc;
}

/* Form ve Harita Kartı */
.contact-form-map-section {
    margin-top: -30px;
    position: relative;
    z-index: 5;
    padding-bottom: 40px;
}

.contact-main-card {
    background: #fff;
    border: 1px solid #eef0f2;
    border-radius: 8px;
    padding: 35px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 35px;
    height: 500px;
    
}

.form-col h2, .map-col h2 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 8px;
}

.form-grid-2col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 20px;
}

/* Harita Alanı */
.map-wrapper {
    position: relative;
    width: 100%;
    height: 50%;
    min-height: 380px;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 20px;
}

.map-info-box {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #fff;
    padding: 15px;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    max-width: 240px;
}

.map-info-box h4 {
    font-size: 0.85rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 4px;
}

.map-info-box p {
    font-size: 0.72rem;
    color: #555;
    line-height: 1.35;
    margin-bottom: 10px;
}

.map-link {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-orange);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* Neden OTİF Lojistik (İletişim) */
.why-otif-contact-section {
    padding: 30px 0 50px;
}

.why-contact-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.why-c-card {
    background: #fff;
    border: 1px solid #eef0f2;
    border-radius: 8px;
    padding: 25px 15px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.02);
    transition: transform 0.2s ease;
}

.why-c-card:hover {
    transform: translateY(-3px);
}

.why-c-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 12px;
    color: var(--primary-orange);
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-c-card h3 {
    font-size: 0.82rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 6px;
}

.why-c-card p {
    font-size: 0.7rem;
    color: #666;
    line-height: 1.4;
    margin: 0;
}

/* 6 Sütunlu Metrik Bandı */
.grid-6-col-stats {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .contact-main-card {
        grid-template-columns: 1fr;
    }

    .map-wrapper {
        height: 300px;
    }

    .why-contact-grid, .grid-6-col-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .form-grid-2col {
        grid-template-columns: 1fr;
    }

    .why-contact-grid, .grid-6-col-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* --- SIKÇA SORULAN SORULAR (SSS) STİLLERİ --- */

.faq-list-section {
    padding: 50px 0;
}

.faq-accordion-wrapper {
    max-width: 900px;
    margin: 30px auto 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Accordion Item Styles */
.faq-item {
    background: #fff;
    border: 1px solid #eef0f2;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.faq-item[open] {
    border-color: #ffd8cc;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.06);
}

.faq-header {
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    list-style: none; /* Safari default arrow remove */
    user-select: none;
}

.faq-header::-webkit-details-marker {
    display: none; /* Chrome default arrow remove */
}

.faq-title {
    display: flex;
    align-items: center;
    gap: 15px;
}

.faq-number {
    width: 28px;
    height: 28px;
    background-color: var(--primary-orange);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 800;
    flex-shrink: 0;
}

.faq-title h3 {
    font-size: 0.88rem;
    font-weight: 700;
    color: #222;
    margin: 0;
}

.faq-arrow {
    color: #999;
    font-size: 0.85rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item[open] .faq-arrow {
    transform: rotate(180deg);
    color: var(--primary-orange);
}

.faq-body {
    padding: 0 20px 18px 63px;
    font-size: 0.8rem;
    color: #555;
    line-height: 1.5;
}

.faq-body p {
    margin: 0;
}

/* Hâlâ Sorunuz Mu Var? Banner */
.faq-support-banner-section {
    padding: 20px 0 50px;
}

.faq-support-card {
    background: #fff;
    border: 1px solid #eef0f2;
    border-radius: 10px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.support-content {
    padding: 35px 40px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.support-icon-box {
    font-size: 2.2rem;
    color: var(--primary-orange);
    line-height: 1;
}

.support-text h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 6px;
}

.support-text p {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 20px;
}

.support-image-bg {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 200px;
}

.support-image-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .faq-support-card {
        grid-template-columns: 1fr;
    }

    .support-image-bg {
        height: 180px;
    }

    .faq-body {
        padding-left: 20px;
    }

    .support-content {
        padding: 25px 20px;
    }
}

/* --- NEDEN OTİF SAYFASI STİLLERİ --- */

/* OTİF Farkı (8'li Grid) */
.otif-difference-section {
    padding: 60px 0;
    background-color: #fff;
}

.diff-grid-4col {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 35px;
}

.diff-card {
    background: #fff;
    border: 1px solid #eef0f2;
    border-radius: 8px;
    padding: 25px 20px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.diff-card:hover {
    transform: translateY(-4px);
    border-color: #ffd8cc;
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.08);
}

.diff-icon {
    font-size: 1.6rem;
    color: var(--primary-orange);
    margin-bottom: 12px;
}

.diff-card h3 {
    font-size: 0.9rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 8px;
}

.diff-card p {
    font-size: 0.75rem;
    color: #666;
    line-height: 1.45;
    margin: 0;
}

/* Uçtan Uca Lojistik Çözümler (Koyu Tema) */
.solutions-dark-section {
    background-color: #0b111e;
    padding: 60px 0;
    color: #fff;
}

.light-title h2 {
    color: #fff !important;
}

.solutions-top-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin-top: 35px;
}

.sol-img-card {
    background: #151d2a;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #232d3f;
    padding-bottom: 15px;
}

.sol-img-box {
    width: 100%;
    height: 110px;
    overflow: hidden;
}

.sol-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.sol-img-card:hover .sol-img-box img {
    transform: scale(1.08);
}

.sol-img-card h4 {
    font-size: 0.82rem;
    font-weight: 800;
    color: #fff;
    padding: 12px 12px 4px 12px;
    margin: 0;
}

.sol-img-card p {
    font-size: 0.7rem;
    color: #a0aec0;
    padding: 0 12px;
    line-height: 1.35;
    margin: 0;
}

/* Alt 5'li İkonlu Çözümler */
.solutions-bottom-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.sol-icon-card {
    background: #151d2a;
    border: 1px solid #232d3f;
    border-radius: 8px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sol-icon-card i {
    font-size: 1.4rem;
    color: var(--primary-orange);
}

.sol-icon-card h4 {
    font-size: 0.78rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
}

.sol-icon-card p {
    font-size: 0.68rem;
    color: #a0aec0;
    line-height: 1.35;
    margin: 0;
}

/* Testimonials / Müşteri Yorumları */
.testimonials-section {
    padding: 60px 0;
    background-color: #fafbfc;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
}

.testi-intro-col h2 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #111;
    line-height: 1.25;
    margin-bottom: 12px;
}

.testi-intro-col p {
    font-size: 0.8rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.5;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.check-list li {
    font-size: 0.78rem;
    font-weight: 700;
    color: #222;
    display: flex;
    align-items: center;
    gap: 8px;
}

.check-list li i {
    color: var(--primary-orange);
}

/* Yorum Kartları */
.testi-cards-col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.testimonial-card {
    background: #fff;
    border: 1px solid #eef0f2;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

.quote-icon {
    color: var(--primary-orange);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.testimonial-card p {
    font-size: 0.74rem;
    color: #444;
    line-height: 1.45;
    margin-bottom: 15px;
    font-style: italic;
}

.client-info strong {
    display: block;
    font-size: 0.75rem;
    color: #111;
}

.client-info span {
    font-size: 0.68rem;
    color: #777;
}

/* Marka Logoları Bandı */
.client-logos-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #eef0f2;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.client-logos-bar:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.client-logos-bar img {
    max-height: 26px;
    object-fit: contain;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .diff-grid-4col {
        grid-template-columns: repeat(2, 1fr);
    }

    .solutions-top-grid, .solutions-bottom-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testi-cards-col {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .testi-cards-col {
        grid-template-columns: 1fr;
    }

    .solutions-top-grid, .solutions-bottom-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .client-logos-bar {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .diff-grid-4col, .solutions-top-grid, .solutions-bottom-grid {
        grid-template-columns: 1fr;
    }
}

/* --- SITE FOOTER STİLLERİ --- */

.site-footer {
    background-color: #080d16;
    color: #a0aec0;
    padding-top: 50px;
    padding-bottom: 25px;
    font-size: 0.78rem;
    border-top: 1px solid #151d2a;
}

.footer-main-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.3fr;
    gap: 30px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Kolon Ayrım Çizgileri (Görseldeki gibi dikey ince separatörler) */
.footer-col {
    position: relative;
}

.footer-col:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 0;
    height: 100%;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.06);
}

/* Marka & Logo Kolonu */
.footer-logo {
    display: inline-block;
    margin-bottom: 15px;
}

.footer-logo img {
    height: 32px;
    object-fit: contain;
}

.footer-desc {
    color: #8c9ba5;
    font-size: 0.76rem;
    line-height: 1.5;
    margin-bottom: 20px;
    padding-right: 15px;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-links a {
    width: 32px;
    height: 32px;
    background-color: #151d2a;
    border: 1px solid #232d3f;
    border-radius: 6px;
    color: #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.25s ease;
}

.social-links a:hover {
    background-color: var(--primary-orange);
    border-color: var(--primary-orange);
    color: #fff;
    transform: translateY(-2px);
}

/* Footer Başlıkları */
.footer-title {
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin-bottom: 18px;
}

/* Bağlantı Listeleri */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links li a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.76rem;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-links li a:hover {
    color: var(--primary-orange);
    padding-left: 3px;
}

/* İletişim Bilgileri */
.footer-contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #94a3b8;
    font-size: 0.76rem;
    line-height: 1.4;
}

.footer-contact-info li i {
    color: var(--primary-orange);
    font-size: 0.9rem;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Bottom Bar / Copyright */
.footer-bottom-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    font-size: 0.72rem;
    color: #64748b;
}

.copyright-text {
    margin: 0;
}

.legal-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.legal-links a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s ease;
}

.legal-links a:hover {
    color: #cbd5e1;
}

.legal-links .sep {
    color: #334155;
}

/* RESPONSIVE FOOTER */
@media (max-width: 992px) {
    .footer-main-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .footer-col:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 600px) {
    .footer-main-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom-bar {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}



/* E-TİCARET FULFILLMENT HERO MOBİL DÜZELTMELERİ */
@media (max-width: 768px) {
    /* Hero container iç boşluklarını ve genişliğini sabitle */
    .sub-hero-section,
    .sub-hero-container {
        padding-left: 15px !important;
        padding-right: 15px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* 1. Üst Özellik Butonlarını Mobilde Tek Kolon Yap */
    .hero-badges-grid,
    .sub-hero-badges,
    .hero-features-list {
        display: grid !important;
        grid-template-columns: 1fr !important; /* Mobilde tek sütun yap */
        gap: 10px !important;
        width: 100% !important;
    }

    /* 2. Kesilen Metrik Kartlarını (2.500.000+, %99,9) Mobilde Tek Kolon Yap */
    .hero-features-grid,
    .hero-stats-grid,
    .stats-card-grid {
        display: grid !important;
        grid-template-columns: 1fr !important; /* Sağ tarafa taşmayı engeller, kartları üst üste dizer */
        gap: 15px !important;
        width: 100% !important;
    }

    /* Metrik Kart İçeriklerinin Düzgün Sığması İçin */
    .hero-feature-item,
    .stat-card {
        width: 100% !important;
        box-sizing: border-box !important;
        padding: 15px !important;
    }

    /* Başlık boyutunu mobil ekran için optimize et */
    .sub-hero-content h1 {
        font-size: 1.8rem !important;
        line-height: 1.2 !important;
    }
}




/* SUB-HERO ALT İSTATİSTİKLER (2.500.000+, %99,8 vb.) MOBİL DÜZELTMESİ */
@media (max-width: 768px) {
    /* 4'lü Grid yapısını mobilde tek sütun yap */
    .sub-hero-stats,
    .sub-hero-stats.stats-4-col {
        display: grid !important;
        grid-template-columns: 1fr !important;
        width: 100% !important;
        max-width: 100% !important;
        gap: 15px !important;
        margin-top: 25px !important;
        box-sizing: border-box !important;
    }

    /* Her bir stat kartının genişliğini ekrana tam yay */
    .sub-stat-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        display: flex !important;
        align-items: center !important;
        padding: 15px !important;
    }

    /* İkon ve yazı alanının daralmasını engelle */
    .sub-stat-info {
        flex: 1 !important;
        min-width: 0 !important; /* Metin taşmalarını önler */
    }

    .sub-stat-info h3 {
        font-size: 1.5rem !important;
        margin-bottom: 2px !important;
    }

    .sub-stat-info p {
        font-size: 0.8rem !important;
        line-height: 1.3 !important;
    }
}



/* HAMBURGER BUTON & MOBİL ÇEKMECE MENÜ STİLLERİ */

.hamburger-btn {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.6rem;
    cursor: pointer;
    padding: 5px;
    margin-left: 10px;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background-color: #0b1320;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    padding: 20px;
    box-sizing: border-box;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.5);
}

.mobile-drawer.active {
    right: 0;
}

.mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-logo {
    height: 30px;
    width: auto;
}

.close-btn {
    background: none;
    border: none;
    color: var(--primary-orange, #ff6600);
    font-size: 1.6rem;
    cursor: pointer;
}

.mobile-nav-links {
    list-style: none;
    padding: 20px 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    overflow-y: auto;
}

.mobile-nav-links a {
    color: #e2e8f0;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    display: block;
    padding: 8px 0;
    transition: color 0.2s ease;
}

.mobile-nav-links a.active,
.mobile-nav-links a:hover {
    color: var(--primary-orange, #ff6600);
}

.mobile-drawer-footer {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-block {
    display: flex !important;
    width: 100% !important;
    justify-content: center !important;
    text-align: center;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(3px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* RESPONSIVE BREAKPOINT (768PX) */
@media (max-width: 768px) {
    .nav-menu {
        display: none !important; /* Masaüstü menüyü gizle */
    }

    .hamburger-btn {
        display: block !important; /* Hamburger butonunu aç */
    }
    
    .nav-actions .btn-primary {
        display: none; /* Mobilde header butonu gizlenip çekmece içine girer */
    }

    .navbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 15px 0;
    }
}


/* İLETİŞİM & HARİTA KAPSAYICI */
.contact-section-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 30px;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

.contact-action-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.contact-action-card h2 {
    font-size: 1.8rem;
    color: #fff;
    margin: 0;
}

.contact-action-card p {
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0 0 10px 0;
}

.mail-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    padding: 14px 28px;
    font-weight: 600;
}

/* RESPONSIVE HARİTA TASARIMI */
.map-responsive-wrapper {
    width: 100%;
    height: 380px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.map-responsive-wrapper iframe {
    width: 100% !important;
    height: 100% !important;
}

/* MOBİL UYUMLULUK */
@media (max-width: 768px) {
    .contact-section-container {
        grid-template-columns: 1fr; /* Mobilde alt alta diz */
        gap: 20px;
    }

    .contact-action-card {
        padding: 25px 20px;
        align-items: center;
        text-align: center;
    }

    .map-responsive-wrapper {
        height: 280px; /* Mobilde harita yüksekliğini optimize et */
    }
}


/* TEKLİF AL CALLOUT KARTI */
.quote-callout-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    max-width: 700px;
    margin: 80px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    box-sizing: border-box;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Turuncu Başlık */
.quote-title {
    color: var(--primary-orange, #ff6600) !important;
    font-size: 2rem;
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.5px;
}

/* Açıklama Yazısı */
.quote-description {
    color: black;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    max-width: 600px;
}

/* Buton Düzenlemesi */
.quote-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 8px;
    margin-top: 10px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.quote-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.4);
}

/* MOBİL UYUMLULUK (MAX-WIDTH: 768PX) */
@media (max-width: 768px) {
    .quote-callout-card {
        padding: 30px 20px;
        width: 100%;
        margin: 20px 0;
    }

    .quote-title {
        font-size: 1.6rem;
    }

    .quote-description {
        font-size: 0.9rem;
    }

    .quote-btn {
        width: 100%;
        justify-content: center;
        box-sizing: border-box;
    }
}