/* ============================================
   TAŞINMA EXPRESS - Premium Nakliyat Şablonu
   Ana Stil Dosyası
   ============================================ */

/* === Google Fonts === */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@600;700;800&display=swap');

/* === CSS Değişkenleri === */
:root {
    --primary: #0a1f3f;
    --primary-light: #132d5e;
    --primary-dark: #06152e;
    --secondary: #1a3a6b;
    --accent: #e8a23a;
    --accent-hover: #d4912e;
    --accent-light: #f5d69c;
    --text-dark: #1a1a2e;
    --text-body: #4a4a5a;
    --text-muted: #7a7a8a;
    --text-light: #ffffff;
    --bg-white: #ffffff;
    --bg-light: #f8f9fc;
    --bg-lighter: #eef1f6;
    --bg-dark: #0a1f3f;
    --bg-darker: #061530;
    --border-light: #e2e6ee;
    --border-medium: #d0d5e0;
    --shadow-sm: 0 2px 8px rgba(10, 31, 63, 0.06);
    --shadow-md: 0 4px 20px rgba(10, 31, 63, 0.1);
    --shadow-lg: 0 8px 40px rgba(10, 31, 63, 0.14);
    --shadow-xl: 0 16px 60px rgba(10, 31, 63, 0.18);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-body);
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

ul, ol {
    list-style: none;
}

/* === Tipografi === */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.3;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.4rem; }
h3 { font-size: 1.6rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232, 162, 58, 0.1);
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-badge i {
    font-size: 0.75rem;
}

.section-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.25;
}

.section-title span {
    color: var(--accent);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto 48px;
    line-height: 1.7;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

/* === Butonlar === */
.btn-primary-custom {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.3px;
}

.btn-primary-custom:hover {
    background: var(--accent-hover);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232, 162, 58, 0.35);
}

.btn-secondary-custom {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    border: 2px solid rgba(255,255,255,0.4);
    cursor: pointer;
    transition: var(--transition);
}

.btn-secondary-custom:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
    color: #fff;
    transform: translateY(-2px);
}

.btn-outline-custom {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    border: 2px solid var(--primary);
    cursor: pointer;
    transition: var(--transition);
}

.btn-outline-custom:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

.btn-white-custom {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-white-custom:hover {
    background: #f0f0f0;
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1.05rem;
}

/* === ÜST BİLGİ ÇUBUĞU === */
.top-bar {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.85);
    font-size: 0.85rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.top-bar a {
    color: rgba(255,255,255,0.85);
}

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

.top-bar-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-right: 24px;
}

.top-bar-item i {
    color: var(--accent);
    font-size: 0.8rem;
}

.top-bar-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
    margin-left: 6px;
    transition: var(--transition);
}

.top-bar-social a:hover {
    background: var(--accent);
    color: #fff;
}

/* === ANA HEADER === */
.main-header {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1050;
    transition: var(--transition);
}

.main-header.scrolled {
    box-shadow: var(--shadow-md);
}

.main-header .navbar {
    padding: 12px 0;
}

.main-header .navbar-brand {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.main-header .navbar-brand img {
    height: 44px;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-text .brand-name {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--primary);
}

.brand-text .brand-slogan {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.main-header .nav-link {
    font-weight: 600;
    font-size: 0.93rem;
    color: var(--text-dark) !important;
    padding: 8px 16px !important;
    transition: var(--transition);
    position: relative;
}

.main-header .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transition: var(--transition);
}

.main-header .nav-link:hover::after,
.main-header .nav-link.active::after {
    transform: scaleX(1);
}

.main-header .nav-link:hover,
.main-header .nav-link.active {
    color: var(--primary) !important;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-cta .btn-call {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.header-cta .btn-call i {
    color: var(--accent);
    font-size: 1rem;
}

.header-cta .btn-call:hover {
    background: var(--bg-light);
}

.navbar-toggler {
    border: none;
    padding: 8px;
    font-size: 1.4rem;
    color: var(--primary);
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* === HERO ALANI === */
.hero-section {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary) 100%);
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1600518464441-9154a4dea21b?w=1920&q=80') center/cover no-repeat;
    opacity: 0.15;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(232, 162, 58, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.04) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 60px 0;
}

.hero-content h1 {
    font-size: 3.4rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-content h1 span {
    color: var(--accent);
    display: block;
}

.hero-content p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.8);
    max-width: 540px;
    margin-bottom: 32px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-badges {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-badge-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(232, 162, 58, 0.2);
    color: var(--accent);
    border-radius: 50%;
    font-size: 0.9rem;
}

/* Hero Form */
.hero-form-wrapper {
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg);
    padding: 36px;
    position: relative;
    z-index: 2;
}

.hero-form-wrapper h3 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 6px;
}

.hero-form-wrapper p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.hero-form-wrapper .form-control,
.hero-form-wrapper .form-select {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.93rem;
}

.hero-form-wrapper .form-control::placeholder {
    color: rgba(255,255,255,0.4);
}

.hero-form-wrapper .form-control:focus,
.hero-form-wrapper .form-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(232, 162, 58, 0.15);
    background: rgba(255,255,255,0.12);
}

.hero-form-wrapper .form-select option {
    background: var(--primary);
    color: #fff;
}

/* === İSTATİSTİK ALANI === */
.stats-section {
    padding: 0;
    position: relative;
    z-index: 10;
    margin-top: -50px;
}

.stats-card-wrapper {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: 48px 40px;
}

.stat-item {
    text-align: center;
    padding: 16px;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: var(--border-light);
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-number span {
    color: var(--accent);
}

.stat-label {
    font-size: 0.93rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* === HİZMETLER === */
.services-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.service-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
    height: 100%;
    position: relative;
    overflow: hidden;
}

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

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

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

.service-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(10, 31, 63, 0.06), rgba(232, 162, 58, 0.08));
    border-radius: var(--radius-md);
    margin: 0 auto 20px;
    font-size: 1.6rem;
    color: var(--primary);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: #fff;
}

.service-card h4 {
    font-weight: 700;
    margin-bottom: 12px;
    font-size: 1.15rem;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.93rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-card .service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.service-card .service-link:hover {
    gap: 10px;
    color: var(--accent-hover);
}

/* === NEDEN BİZ === */
.why-us-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.why-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 28px;
    border-radius: var(--radius-md);
    transition: var(--transition);
    height: 100%;
}

.why-card:hover {
    background: var(--bg-light);
    transform: translateY(-4px);
}

.why-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    border-radius: var(--radius-md);
    font-size: 1.2rem;
}

.why-card h5 {
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.why-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
}

/* === SÜREÇ ALANI === */
.process-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary) 100%);
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 50% 0%, rgba(232, 162, 58, 0.06) 0%, transparent 60%);
}

.process-section .section-title,
.process-section .section-subtitle {
    color: #fff;
}

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

.process-step {
    text-align: center;
    position: relative;
    padding: 0 20px;
}

.process-step-number {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(232, 162, 58, 0.15);
    color: var(--accent);
    font-size: 1.4rem;
    font-weight: 800;
    border-radius: 50%;
    margin: 0 auto 16px;
    border: 2px solid rgba(232, 162, 58, 0.3);
    position: relative;
    z-index: 2;
}

.process-step-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    font-size: 1.3rem;
    margin: 0 auto 12px;
}

.process-step h5 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.process-step p {
    color: rgba(255,255,255,0.55);
    font-size: 0.88rem;
    line-height: 1.6;
}

.process-connector {
    position: absolute;
    top: 32px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: rgba(232, 162, 58, 0.2);
    z-index: 1;
}

/* === ARAÇ FİLOSU === */
.fleet-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.fleet-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border-light);
    height: 100%;
}

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

.fleet-card-img {
    height: 220px;
    background: linear-gradient(135deg, var(--bg-lighter), var(--bg-light));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.fleet-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fleet-card-img .fleet-placeholder {
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.3;
}

.fleet-card-body {
    padding: 24px;
}

.fleet-card-body h5 {
    font-weight: 700;
    margin-bottom: 8px;
}

.fleet-card-body p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.fleet-specs {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.fleet-spec {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: var(--text-muted);
    background: var(--bg-light);
    padding: 4px 12px;
    border-radius: 50px;
}

.fleet-spec i {
    color: var(--accent);
    font-size: 0.75rem;
}

/* === MÜŞTERİ YORUMLARI === */
.testimonials-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.testimonial-card {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 36px;
    height: 100%;
    border: 1px solid var(--border-light);
    transition: var(--transition);
    position: relative;
}

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

.testimonial-stars {
    color: var(--accent);
    font-size: 0.9rem;
    margin-bottom: 16px;
    display: flex;
    gap: 2px;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 3rem;
    color: var(--accent);
    opacity: 0.3;
    font-family: var(--font-display);
    position: absolute;
    top: -20px;
    left: -5px;
    line-height: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
}

.testimonial-author-info h6 {
    font-weight: 700;
    margin-bottom: 2px;
    font-size: 0.95rem;
}

.testimonial-author-info span {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* === BÖLGELER === */
.regions-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.region-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: var(--transition);
    border: 1px solid var(--border-light);
    height: 100%;
}

.region-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.region-card i {
    color: var(--accent);
    font-size: 1.1rem;
}

.region-card span {
    font-weight: 600;
    font-size: 0.93rem;
    color: var(--text-dark);
}

/* === GALERİ === */
.gallery-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 260px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 31, 63, 0.8) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-lighter), var(--bg-light));
    font-size: 2.5rem;
    color: var(--primary);
    opacity: 0.2;
}

/* === SSS / ACCORDION === */
.faq-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.faq-accordion .accordion-item {
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md) !important;
    margin-bottom: 12px;
    overflow: hidden;
    background: var(--bg-white);
}

.faq-accordion .accordion-button {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-dark);
    padding: 20px 24px;
    background: var(--bg-white);
    box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: var(--bg-light);
    color: var(--primary);
}

.faq-accordion .accordion-button::after {
    background-size: 1rem;
}

.faq-accordion .accordion-body {
    padding: 0 24px 20px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* === BLOG === */
.blog-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.blog-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border-light);
    height: 100%;
}

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

.blog-card-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.blog-card-img .blog-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--accent);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card-body {
    padding: 24px;
}

.blog-card-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.blog-card-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.blog-card-meta i {
    color: var(--accent);
    font-size: 0.75rem;
}

.blog-card-body h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-card-body h4 a {
    color: var(--text-dark);
}

.blog-card-body h4 a:hover {
    color: var(--accent);
}

.blog-card-body p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.88rem;
}

.blog-read-more:hover {
    gap: 10px;
    color: var(--accent-hover);
}

/* === ALT CTA BLOĞU === */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 30% 50%, rgba(232, 162, 58, 0.1) 0%, transparent 60%);
}

.cta-section h2 {
    color: #fff;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-section p {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

/* === FOOTER === */
.main-footer {
    background: var(--bg-darker);
    color: rgba(255,255,255,0.7);
    padding: 80px 0 0;
}

.footer-brand .navbar-brand {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.93rem;
    line-height: 1.8;
    margin-bottom: 24px;
    color: rgba(255,255,255,0.55);
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin-right: 8px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent);
    color: #fff;
}

.footer-title {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 36px;
    height: 2px;
    background: var(--accent);
}

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

.footer-links a {
    color: rgba(255,255,255,0.55);
    font-size: 0.9rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 4px;
}

.footer-links a i {
    font-size: 0.6rem;
    color: var(--accent);
    opacity: 0.6;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}

.footer-contact-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(232, 162, 58, 0.12);
    color: var(--accent);
    border-radius: 50%;
    font-size: 0.85rem;
}

.footer-contact-item span {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}

.footer-contact-item a {
    color: rgba(255,255,255,0.6);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0;
    margin-top: 48px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
}

/* === SABİT BUTONLAR === */
.fixed-whatsapp {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25d366;
    color: #fff;
    font-size: 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    cursor: pointer;
}

.fixed-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
    color: #fff;
}

.fixed-phone {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 56px;
    height: 56px;
    background: var(--primary);
    color: #fff;
    font-size: 1.3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    box-shadow: 0 4px 20px rgba(10, 31, 63, 0.4);
    transition: var(--transition);
    cursor: pointer;
}

.fixed-phone:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(10, 31, 63, 0.5);
    color: #fff;
}

/* === MOBİL ALT BAR === */
.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    z-index: 9998;
    padding: 0;
}

.mobile-bottom-bar a {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 4px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-muted);
    gap: 4px;
    text-align: center;
}

.mobile-bottom-bar a i {
    font-size: 1.1rem;
}

.mobile-bottom-bar a.bar-call {
    color: var(--primary);
}

.mobile-bottom-bar a.bar-whatsapp {
    color: #25d366;
}

.mobile-bottom-bar a.bar-quote {
    background: var(--accent);
    color: #fff;
    border-radius: var(--radius-sm);
    margin: 6px 4px;
}

/* === İÇ SAYFA HERO === */
.page-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary) 100%);
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 80% 50%, rgba(232, 162, 58, 0.06) 0%, transparent 50%);
}

.page-hero h1 {
    color: #fff;
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 12px;
    position: relative;
}

.page-hero p {
    color: rgba(255,255,255,0.6);
    font-size: 1.05rem;
    position: relative;
}

.breadcrumb-custom {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    position: relative;
}

.breadcrumb-custom a {
    color: rgba(255,255,255,0.5);
    font-size: 0.88rem;
    font-weight: 500;
}

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

.breadcrumb-custom span {
    color: rgba(255,255,255,0.3);
    font-size: 0.75rem;
}

.breadcrumb-custom .current {
    color: var(--accent);
    font-size: 0.88rem;
    font-weight: 500;
}

/* === İÇ SAYFA İÇERİK === */
.page-content {
    padding: 80px 0;
}

.content-area h2 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    margin-top: 40px;
}

.content-area h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    margin-top: 32px;
}

.content-area p {
    margin-bottom: 16px;
    line-height: 1.8;
}

.content-area ul {
    margin-bottom: 16px;
    padding-left: 0;
}

.content-area ul li {
    padding: 6px 0 6px 28px;
    position: relative;
    color: var(--text-body);
}

.content-area ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 8px;
    color: var(--accent);
    font-size: 0.8rem;
}

/* === FORM STILLERI === */
.form-modern .form-label {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.form-modern .form-control,
.form-modern .form-select {
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-size: 0.93rem;
    transition: var(--transition);
}

.form-modern .form-control:focus,
.form-modern .form-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(232, 162, 58, 0.1);
}

.form-modern textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* === GÜVEN KUTUSU === */
.trust-box {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 36px;
    border: 1px solid var(--border-light);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.trust-item:last-child {
    margin-bottom: 0;
}

.trust-item-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(232, 162, 58, 0.1);
    color: var(--accent);
    border-radius: 50%;
    font-size: 1rem;
}

.trust-item h6 {
    font-weight: 700;
    margin-bottom: 2px;
    font-size: 0.93rem;
}

.trust-item p {
    margin: 0;
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* === GALERİ SAYFA === */
.gallery-filter {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px;
}

.gallery-filter .filter-btn {
    padding: 8px 24px;
    border: 1px solid var(--border-light);
    border-radius: 50px;
    background: var(--bg-white);
    color: var(--text-body);
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-filter .filter-btn:hover,
.gallery-filter .filter-btn.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.gallery-page-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 280px;
    margin-bottom: 24px;
    cursor: pointer;
}

.gallery-page-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.gallery-page-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 31, 63, 0.7) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-page-item:hover .gallery-page-overlay {
    opacity: 1;
}

.gallery-page-overlay .overlay-content {
    color: #fff;
}

.gallery-page-overlay .overlay-content h6 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 4px;
}

.gallery-page-overlay .overlay-content span {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.7);
}

/* === LIGHTBOX === */
.lightbox-modal .modal-dialog {
    max-width: 900px;
}

.lightbox-modal .modal-content {
    background: transparent;
    border: none;
}

.lightbox-modal .modal-body {
    padding: 0;
}

.lightbox-modal .btn-close {
    position: absolute;
    top: -40px;
    right: 0;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.lightbox-modal img {
    border-radius: var(--radius-md);
}

/* === BLOG DETAY === */
.blog-detail-header {
    margin-bottom: 32px;
}

.blog-detail-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.blog-detail-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    color: var(--text-muted);
}

.blog-detail-meta i {
    color: var(--accent);
}

.blog-detail-cover {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    margin-bottom: 40px;
}

.blog-sidebar-widget {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 28px;
    margin-bottom: 24px;
    border: 1px solid var(--border-light);
}

.blog-sidebar-widget h5 {
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent);
    font-size: 1.05rem;
}

.sidebar-post {
    display: flex;
    gap: 14px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-light);
}

.sidebar-post:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.sidebar-post-img {
    width: 70px;
    height: 70px;
    min-width: 70px;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.sidebar-post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar-post h6 {
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 4px;
    line-height: 1.4;
}

.sidebar-post h6 a {
    color: var(--text-dark);
}

.sidebar-post h6 a:hover {
    color: var(--accent);
}

.sidebar-post span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* === RESPONSIVE === */
@media (max-width: 1199px) {
    h1, .hero-content h1 { font-size: 2.8rem; }
    .section-title { font-size: 2rem; }
}

@media (max-width: 991px) {
    .top-bar { display: none; }
    
    h1, .hero-content h1 { font-size: 2.4rem; }
    .section-title { font-size: 1.8rem; }
    
    .hero-section { min-height: auto; padding: 80px 0; }
    
    .hero-badges { gap: 16px; }
    
    .stat-item:not(:last-child)::after { display: none; }
    
    .header-cta .btn-call span { display: none; }
    
    .process-connector { display: none; }
    
    .page-hero { padding: 80px 0 40px; }
    .page-hero h1 { font-size: 2rem; }
}

@media (max-width: 767px) {
    h1, .hero-content h1 { font-size: 2rem; }
    h2, .section-title { font-size: 1.6rem; }
    
    .hero-section { min-height: auto; }
    .hero-content { padding: 40px 0; }
    .hero-buttons { flex-direction: column; }
    .hero-badges { flex-direction: column; gap: 12px; }
    
    .hero-form-wrapper { padding: 24px; }
    
    .stats-card-wrapper { padding: 32px 20px; }
    .stat-number { font-size: 2.2rem; }
    
    .services-section,
    .why-us-section,
    .process-section,
    .fleet-section,
    .testimonials-section,
    .regions-section,
    .gallery-section,
    .faq-section,
    .blog-section,
    .page-content { padding: 60px 0; }
    
    .section-header { margin-bottom: 32px; }
    
    .mobile-bottom-bar {
        display: flex;
    }
    
    .fixed-whatsapp,
    .fixed-phone {
        bottom: 80px;
    }
    
    body {
        padding-bottom: 60px;
    }
    
    .cta-section h2 { font-size: 1.6rem; }
    
    .blog-detail-cover { height: 260px; }
}

@media (max-width: 575px) {
    .container { padding-left: 20px; padding-right: 20px; }
    
    h1, .hero-content h1 { font-size: 1.75rem; }
    .section-title { font-size: 1.5rem; }
    
    .btn-primary-custom,
    .btn-secondary-custom,
    .btn-outline-custom,
    .btn-white-custom { 
        padding: 12px 24px; 
        font-size: 0.88rem;
        width: 100%;
        justify-content: center;
    }
    
    .cta-buttons { flex-direction: column; align-items: center; }
}

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

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

/* === HAKKIMIZDA SAYFA ÖZELLERİ === */
.about-story-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}

.about-story-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about-experience-badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: var(--accent);
    color: #fff;
    padding: 20px 24px;
    border-radius: var(--radius-md);
    text-align: center;
}

.about-experience-badge .number {
    font-size: 2.4rem;
    font-weight: 900;
    display: block;
    line-height: 1;
}

.about-experience-badge span {
    font-size: 0.82rem;
    font-weight: 600;
}

.vision-mission-card {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 36px;
    height: 100%;
    border-left: 4px solid var(--accent);
}

.vision-mission-card h4 {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.vision-mission-card h4 i {
    color: var(--accent);
}

.vision-mission-card p {
    color: var(--text-muted);
    line-height: 1.8;
    margin: 0;
}

/* === HİZMET DETAY ÖZELLERİ === */
.service-detail-content {
    padding-right: 40px;
}

.service-advantage {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.service-advantage:hover {
    background: var(--bg-lighter);
}

.service-advantage-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(232, 162, 58, 0.12);
    color: var(--accent);
    border-radius: 50%;
    font-size: 1.1rem;
}

.service-advantage h6 {
    font-weight: 700;
    margin-bottom: 4px;
}

.service-advantage p {
    margin: 0;
    font-size: 0.88rem;
    color: var(--text-muted);
}

/* Sidebar Teklif Kutusu */
.sidebar-quote-box {
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary));
    border-radius: var(--radius-lg);
    padding: 36px;
    color: #fff;
    text-align: center;
}

.sidebar-quote-box h4 {
    color: #fff;
    margin-bottom: 12px;
}

.sidebar-quote-box p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.sidebar-quote-box .btn-primary-custom {
    width: 100%;
    justify-content: center;
}

.sidebar-service-list {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid var(--border-light);
}

.sidebar-service-list h5 {
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent);
}

.sidebar-service-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-body);
    font-weight: 500;
    font-size: 0.93rem;
}

.sidebar-service-list a:last-child {
    border-bottom: none;
}

.sidebar-service-list a:hover {
    color: var(--accent);
    padding-left: 8px;
}

.sidebar-service-list a.active {
    color: var(--accent);
    font-weight: 700;
}

/* === TEKLİF FORMU === */
.quote-form-wrapper {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
}

.quote-form-wrapper h3 {
    margin-bottom: 8px;
}

.quote-form-wrapper > p {
    color: var(--text-muted);
    margin-bottom: 32px;
}

/* === İLETİŞİM KARTLARI === */
.contact-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 36px;
    text-align: center;
    border: 1px solid var(--border-light);
    transition: var(--transition);
    height: 100%;
}

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

.contact-card-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    border-radius: var(--radius-md);
    font-size: 1.4rem;
    margin: 0 auto 20px;
}

.contact-card h5 {
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 4px;
}

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

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

/* === HARİTA === */
.map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 400px;
    border: 1px solid var(--border-light);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* === SSS SAYFASI === */
.sss-category {
    margin-bottom: 48px;
}

.sss-category h3 {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.sss-category h3 i {
    color: var(--accent);
}

/* === BLOG SAYFASI === */
.blog-grid-item {
    margin-bottom: 30px;
}

.blog-page-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: var(--transition);
    height: 100%;
}

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

.blog-page-card .blog-card-img {
    height: 200px;
}

/* === GENEL SAYFA === */
.page-template-content {
    min-height: 500px;
}

.page-template-content h1 {
    color: var(--text-dark);
    font-size: 2rem;
}
