﻿/* ==========================================================================
   UNIVERSAL HERO SYSTEM -
   ========================================================================== */

/* 
   Bu hero yapısı tüm sayfalarda kullanılabilir:
   - index.html (Ana sayfa - 3 slide)
   - hizmetlerimiz.html (Hizmetler - tek slide)
   - DiÄŸer 8 sayfa (tek slide)
   
   Class isimleri:
   - .hero-slider-main veya .services-hero-slider (ikisi de aynı çalışır)
   - .hero-slide-main veya .services-slide (ikisi de aynı çalışır)
*/

/* ========== CONTAINER ========== */
.hero-slider-main,
.services-hero-slider,
.page-hero-slider {
    margin-top: 110px;
    position: relative;
    height: 550px;
    overflow: hidden;
}

/* ========== SLIDES ========== */
.hero-slide-main,
.services-slide,
.page-hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    overflow: hidden;
}

.hero-slide-main.active,
.services-slide.active,
.page-hero-slide.active {
    opacity: 1;
    z-index: 1;
}

/* ========== IMAGES ========== */
.hero-slide-main picture,
.services-slide picture,
.page-hero-slide picture {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-slide-main img,
.services-slide img,
.page-hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    display: block;
}

/* Desktop: Ken Burns Animation */
@media (min-width: 969px) {
    .hero-slide-main img {
        animation: kenburns 20s ease infinite;
    }
}

@keyframes kenburns {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.08);
    }
}

/* ========== OVERLAY ========== */
.hero-slide-overlay,
.services-slide-overlay,
.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Desktop: Different overlays for different page types */
@media (min-width: 969px) {
    /* Ana sayfa: OVERLAY YOK - Sadece yazı gölgesi */
    .hero-slide-overlay {
        background: none;
        justify-content: flex-start;
    }
    
    /* DiÄŸer sayfalar: OVERLAY YOK - Sadece yazı gölgesi */
    .services-slide-overlay,
    .page-hero-overlay {
        background: none;
        justify-content: center;
    }
}

/* ========== CONTENT STYLES ========== */

/* Hero Content Container */
.hero-content {
    max-width: 700px;
    animation: fadeInUp 1s ease-out;
    text-align: left;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Badge */
.hero-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--primary);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 2rem;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
}

/* Title */
.hero-title,
.services-slide-title,
.page-hero-title {
    color: white;
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.hero-title .highlight {
    color: var(--accent);
    display: inline-block;
}

/* Subtitle */
.hero-subtitle,
.services-slide-subtitle,
.page-hero-subtitle {
    color: white;
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    font-weight: 500;
    text-shadow: 0 2px 6px rgba(0,0,0,0.5);
    max-width: 600px;
}

/* Hizmetler sayfası subtitle color */
.services-slide-subtitle {
    color: var(--accent);
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 2rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 700;
    transition: all 0.3s;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.hero-btn-primary {
    background: var(--accent);
    color: var(--primary);
}

.hero-btn-primary:hover {
    background: #fcd34d;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(251, 191, 36, 0.4);
}

.hero-btn-secondary {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid white;
    backdrop-filter: blur(10px);
}

.hero-btn-secondary:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-3px);
}

/* Features */
.hero-features {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
}

.hero-feature svg {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

/* ========== NAVIGATION ========== */

/* Hero Slider Navigation */
.hero-slider-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 10;
    pointer-events: none;
}

.hero-prev,
.hero-next {
    pointer-events: all;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    border: 2px solid rgba(255,255,255,0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.hero-prev:hover,
.hero-next:hover {
    background: rgba(255,255,255,0.95);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.hero-prev:hover svg path,
.hero-next:hover svg path {
    fill: var(--primary);
}

/* Hero Slider Dots */
.hero-slider-dots {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1.5rem;
    z-index: 10;
}

.hero-dot {
     position: relative;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255,255,255,0.6);
    border: 2px solid white;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
/* Masaüstü için görünmez tıklama alanı */
.hero-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 32px;  /* Masaüstü için 32px güvenli bir alandır */
    height: 32px;
    transform: translate(-50%, -50%);
    /* Bu alan sayesinde kullanıcı noktanın 5-10 piksel yanına tıklasa da slide değişir */
}
.hero-dot.active {
    background: var(--accent);
    transform: scale(1.3);
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.6);
}

.hero-dot:hover {
    background: white;
    transform: scale(1.2);
}

/* ========== MOBILE RESPONSIVE ========== */
@media (max-width: 968px) {
    /* Container */
    .hero-slider-main,
    .services-hero-slider,
    .page-hero-slider {
        height: 400px;
        margin-top: 170px;
    }
    
    /* Images - DENGELI GÖRÜNÜM */
    .hero-slide-main img,
    .services-slide img,
    .page-hero-slide img {
        animation: none;
        object-fit: cover;
        object-position: center 40%;
    }
    
    /* Overlay - YOK - SADECE YAZI GÖLGESİ */
    .hero-slide-overlay,
    .services-slide-overlay,
    .page-hero-overlay {
        background: none;
        justify-content: center;
    }
    
    /* Content adjustments */
    .hero-content,
    .services-slide-overlay .container {
        padding: 0 1rem;
        max-width: 100%;
        text-align: center;
    }
    
    /* Titles - ÇOK GÜÇLÜ GÖLGE */
    .hero-title,
    .services-slide-title,
    .page-hero-title {
        font-size: 1.75rem;
        line-height: 1.1;
        margin-bottom: 0.8rem;
        text-shadow: 
            0 2px 4px rgba(0,0,0,0.9),
            0 4px 8px rgba(0,0,0,0.8),
            0 8px 16px rgba(0,0,0,0.7);
    }
    
    /* Subtitles */
    .hero-subtitle,
    .services-slide-subtitle,
    .page-hero-subtitle {
        font-size: 0.92rem;
        line-height: 1.4;
        margin-bottom: 1rem;
        text-shadow: 
            0 2px 4px rgba(0,0,0,0.9),
            0 4px 8px rgba(0,0,0,0.8);
    }
    
    /* Badges */
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
        margin-bottom: 1rem;
        box-shadow: 
            0 4px 12px rgba(0,0,0,0.4),
            0 8px 24px rgba(0,0,0,0.3);
    }
    
    /* Buttons */
    .hero-buttons {
        margin-bottom: 1rem;
        gap: 0.6rem;
        flex-direction: column;
    }
    
    .hero-btn {
        padding: 0.8rem 1.3rem;
        font-size: 0.85rem;
        width: 100%;
        justify-content: center;
    }
    
    .hero-btn svg {
        width: 18px;
        height: 18px;
        margin-right: 6px;
    }
    
    /* Features */
    .hero-features {
        gap: 0.65rem;
        flex-direction: column;
    }
    
    .hero-feature {
        font-size: 0.88rem;
        text-shadow: 0 2px 6px rgba(0,0,0,0.8);
    }
    
    .hero-feature svg {
        width: 24px;
        height: 24px;
        filter: drop-shadow(0 2px 6px rgba(0,0,0,0.8));
    }
    
    /* Navigation */
    .hero-slider-nav {
        padding: 0 0.5rem;
    }
    
    .hero-prev,
    .hero-next {
        width: 42px;
        height: 42px;
    }
    
    .hero-prev svg,
    .hero-next svg {
        width: 22px;
        height: 22px;
    }
    
    /* Dots */
    .hero-slider-dots {
        bottom: 1rem;
    }
    
    .hero-dot {
        width: 9px;
        height: 9px;
    }
}

/* ========== SMALL PHONES (< 400px) ========== */
@media (max-width: 400px) {
    .hero-slider-main,
    .services-hero-slider,
    .page-hero-slider {
        height: 520px;
    }
    
    .hero-title,
    .services-slide-title,
    .page-hero-title {
        font-size: 1.65rem;
    }
    
    .hero-subtitle,
    .services-slide-subtitle,
    .page-hero-subtitle {
        font-size: 0.92rem;
    }
}

/* ========== LARGE PHONES & SMALL TABLETS (401px - 600px) ========== */
@media (min-width: 401px) and (max-width: 600px) {
    .hero-slider-main,
    .services-hero-slider,
    .page-hero-slider {
        height: 600px;
    }
}

/* ========== TABLETS (601px - 968px) ========== */
@media (min-width: 601px) and (max-width: 968px) {
    .hero-slider-main,
    .services-hero-slider,
    .page-hero-slider {
        height: 500px;
    }
    
    .hero-title,
    .services-slide-title {
        font-size: 2.2rem;
    }
}

/* ========== NAVIGATION & CONTROLS ========== */
/* (Slider ok butonları ve noktalar için mevcut stillerinizi kullanın) */

/* 
   KULLANIM ÖRNEKLERİ:
   
   1. Ana Sayfa (3 slide):
   <section class="hero-slider-main">
       <div class="hero-slide-main active">...</div>
       <div class="hero-slide-main">...</div>
       <div class="hero-slide-main">...</div>
   </section>
   
   2. Hizmetler Sayfası (tek slide):
   <section class="services-hero-slider">
       <div class="services-slide active">...</div>
   </section>
   
   3. Diger Sayfalar (tek slide - aynı):
   <section class="page-hero-slider">
       <div class="page-hero-slide active">...</div>
   </section>
*/

/* ========== ORIGINAL STYLES (style.css) ========== */

/* ========== CSS Variables ========== */
:root {
    --primary: #1e3a8a;       /* Kocaeli için ana mavi */
    --primary-light: #3b82f6;
    --accent: #fbbf24;        /* Nakliyat için sarı */
    --text: #1f2937;
    --text-light: #6b7280;
    --bg: #ffffff;
    --bg-light: #f9fafb;
    --border: #e5e7eb;
}

/* ========== Reset ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg);
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ========== Top Bar ========== */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--primary);
    color: var(--bg);
    padding: 0.5rem 0;
    z-index: 1001;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-contact {
    color: var(--bg);
    font-weight: 600;
    font-size: 1rem;
    transition: opacity 0.3s;
}

.top-contact:hover {
    opacity: 0.8;
}

.top-social {
    display: flex;
    gap: 1rem;
}

.top-social a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    transition: transform 0.3s;
}

.top-social svg {
    display: block;
}

.top-social a:hover {
    transform: scale(1.15);
}

.social-fb {
    background: #1877F2;
    color: white;
}

.social-tw {
    background: #000000;
    color: white;
    font-size: 0.9rem;
}

.social-ln {
    background: #0A66C2;
    color: white;
    font-size: 0.85rem;
}

.social-wa {
    background: #25D366;
    color: white;
}

.social-ig {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}
.social-ig svg {
    width: 18px;
    height: 18px;
    fill: white;
}

/* ========== Header ========== */
.header {
    position: fixed;
    top: 42px;
    left: 0;
    width: 100%;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: box-shadow 0.3s;
}

/* Hide dropdown toggle button on desktop */
.dropdown-toggle-btn {
    display: none;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.75rem;
    font-weight: 800;
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 45px;
    width: auto;
}

.logo-text {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    gap: 8px;                       /* İki kelime arası boşluk */
    font-size: 28px;                /* Yazı boyutu */
    font-weight: 800;               /* Kalın yazı */
   line-height: 1.2;
    align-items: center;
                     
    
}

.logo-kocaeli {
    color: #00338d !important;
}

.logo-nakliyat {
    color: #b8860b !important;
}

.nav-menu {
    display: flex;
    gap: 0;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-weight: 500;
    padding: 1rem 1rem;
    display: block;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--primary);
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg);
    min-width: 240px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-radius: 0 0 8px 8px;
    padding: 0.75rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    z-index: 1000;
    border-top: 3px solid var(--primary);
}

.dropdown-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-width: 540px;
    padding: 1rem 0;
    left: -150px;
}

.dropdown-column a,
.dropdown a {
    display: block;
    padding: 0.7rem 1.25rem;
    color: var(--text);
    font-size: 0.88rem;
    transition: all 0.3s;
    white-space: nowrap;
}

.dropdown-column a:hover,
.dropdown a:hover {
    background: var(--bg-light);
    color: var(--primary);
    padding-left: 1.75rem;
}

.nav-item:hover > .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-cta {
    background: var(--accent);
    color: var(--primary);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s;
    margin-left: 1rem;
    font-weight: 700;
}

.nav-cta:hover {
    background: #fcd34d;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    transition: all 0.3s;
    border-radius: 2px;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ========== Hizmetler Genel ========== */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--accent);
    color: var(--primary);
}

.btn-primary:hover {
    background: #fcd34d;
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--bg);
    color: var(--primary);
}

.btn-secondary:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
}

/* ========== Sections ========== */
.section-title {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    text-align: center;
}

.section-desc {
    text-align: center;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.125rem;
}

.services-intro,
.content-section,
.regions,
.pricing,
.process,
.corporate-moving,
.why-us,
.faq,
.google-reviews,
.cta-section {
    padding: 6rem 0;
}

.bg-light {
    background: var(--bg-light);
}

.content-box {
    max-width: 900px;
    margin: 0 auto;
}

.content-box h2 {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.content-box p {
    color: var(--text-light);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

/* ========== Regions ========== */
.regions {
    background: var(--bg-light);
}

.region-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.region-card {
    background: var(--bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s;
    display: block;
}

.region-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.region-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.region-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.region-card:hover .region-image img {
    transform: scale(1.15);
}

.region-content {
    padding: 1.75rem;
}

.region-content h3 {
    color: var(--primary);
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}

.region-card:hover .region-content h3 {
    color: var(--primary-light);
}

.region-content p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ========== Pricing ========== */
.pricing {
    background: var(--bg-light);
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.price-card {
    background: var(--bg);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid var(--border);
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

.price-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

.price-card.featured {
    border-color: var(--accent);
    border-width: 3px;
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--primary);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
}

.price-card h3 {
    color: var(--primary);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-light);
}

.price-note {
    text-align: center;
    color: var(--text-light);
    font-style: italic;
    font-size: 0.95rem;
}

/* ========== Quality Service ========== */
.quality-service {
    padding: 6rem 0;
    background: var(--bg);
}

.quality-content {
    display: grid;
    grid-template-columns: 500px 1fr;
    gap: 4rem;
    align-items: center;
}

.quality-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.quality-text h2 {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.quality-text h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.quality-text p {
    color: var(--text-light);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.highlight-box {
    background: var(--primary);
    color: white;
    padding: 2rem;
    border-radius: 12px;
}

.highlight-box p {
    color: white;
    margin: 0;
}

.highlight-box strong {
    color: var(--accent);
}

/* ========== Process ========== */
.process {
    background: var(--bg-light);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-item {
    text-align: center;
    padding: 2rem;
    background: var(--bg);
    border-radius: 12px;
    transition: all 0.3s;
}

.process-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.process-image {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.process-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.process-item:hover .process-image img {
    transform: scale(1.1);
}

.process-item h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.process-item p {
    color: var(--text-light);
}

/* ========== Corporate Moving ========== */
.corporate-moving {
    padding: 6rem 0;
    background: var(--bg);
}

.corporate-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.corporate-image img {
    width: 100%;
height: 400px;
object-fit: cover; 
   object-position: center;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.corporate-text h3 {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.corporate-text p {
    color: var(--text-light);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* ========== Features ========== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    background: var(--bg);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
}

.feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.feature h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.feature p {
    color: var(--text-light);
}

/* ========== FAQ ========== */
.faq {
    background: var(--bg);
}

.faq-list {
    max-width: 900px;
    margin: 3rem auto 0;
}

.faq-accordion {
    background: var(--bg-light);
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
}

.faq-question-btn {
    width: 100%;
    background: var(--bg);
    border: none;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary);
    text-align: left;
    transition: all 0.3s;
}

.faq-question-btn:hover {
    background: var(--bg-light);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    transition: transform 0.3s;
}

.faq-accordion.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
    background: var(--bg-light);
}

.faq-answer p {
    padding: 1.5rem 2rem;
    color: var(--text-light);
    margin: 0;
}

.faq-accordion.active .faq-answer {
    max-height: 300px;
}

/* ========== Google Reviews ========== */
.google-reviews {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.review-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin: 4rem 0 3rem;
}

.review-btn {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    transition: all 0.4s;
    border: 3px solid transparent;
}

.review-btn:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

.google-btn {
    border-color: #4285f4;
}

.google-btn:hover {
    border-color: #1a73e8;
    background: #f8fbff;
}

.write-btn {
    border-color: #fbbf24;
}

.write-btn:hover {
    border-color: #f59e0b;
    background: #fffbf0;
}

.review-icon {
    margin-bottom: 1.5rem;
}

.review-content h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.review-content p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.stars {
    font-size: 1.5rem;
    letter-spacing: 0.25rem;
}

.review-note {
    text-align: center;
    color: var(--text-light);
    font-size: 1rem;
    font-style: italic;
}

/* ========== CTA Section ========== */
.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}

/* ========== Services Intro Section ========== */
.services-intro-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.services-intro-content {
    max-width: 1000px;
    margin: 0 auto;
}

.services-main-title {
    color: var(--primary);
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1.5rem;
}

.services-main-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 3px;
}

.services-intro-text {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.services-intro-text p {
    color: var(--text-light);
    font-size: 1.125rem;
    line-height: 1.9;
    margin-bottom: 2rem;
    text-align: justify;
}

.services-intro-text p:last-child {
    margin-bottom: 0;
}

.services-intro-text strong {
    color: var(--primary);
    font-weight: 700;
}

/* ========== Service Cards Section ========== */
.service-cards-section {
    padding: 6rem 0;
    background: white;
}

.service-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: block;
    position: relative;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(30, 58, 138, 0.2);
}

.service-card-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-card-image img {
    transform: scale(1.15);
}

.service-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.7) 0%, rgba(59, 130, 246, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover .service-card-overlay {
    opacity: 1;
}

.service-card-icon {
    transform: scale(0.8);
    transition: transform 0.4s ease;
}

.service-card:hover .service-card-icon {
    transform: scale(1.2) rotate(10deg);
}

.service-card-content {
    padding: 2rem;
}

.service-card-content h3 {
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    transition: color 0.3s;
}

.service-card:hover .service-card-content h3 {
    color: var(--primary-light);
}

.service-card-content p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-card-link {
    color: var(--accent);
    font-weight: 700;
    font-size: 1.125rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.service-card:hover .service-card-link {
    gap: 1rem;
    color: var(--primary);
}

/* ========== Responsive - Services ========== */
@media (max-width: 968px) {
    .services-hero-slider {
        margin-top: 170px;
        height: 450px;
    }
    
    .services-slide {
        overflow: hidden;
    }
    
    .services-slide img {
        object-fit: cover;
        object-position: center center;
        width: 100%;
        height: 100%;
    }
    
    .services-slide-overlay {
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%);
    }
    
    .services-slide-title {
        font-size: 1.75rem;
        padding: 0 1.5rem;
        line-height: 1.2;
    }
    
    .services-slide-subtitle {
        font-size: 1rem;
        padding: 0 1.5rem;
    }
    
    .services-main-title {
        font-size: 1.75rem;
    }
    
    .services-intro-text {
        padding: 2rem 1.5rem;
    }
    
    .services-intro-text p {
        font-size: 0.95rem;
    }
    
    .service-cards-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-card-image {
        height: 220px;
    }
}

/* ========== CTA Section ========== */
.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}

.cta-box {
    text-align: center;
    padding: 3rem 2rem;
}

.cta-box h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-box p {
    color: rgba(255,255,255,0.9);
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.btn-cta {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: var(--accent);
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.btn-cta:hover {
    background: #fcd34d;
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

/* ========== Floating Buttons ========== */
.floating-whatsapp,
.floating-call,
.scroll-to-top {
    position: fixed;
    right: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: all 0.3s;
    z-index: 999;
    cursor: pointer;
    border: none;
}

.floating-whatsapp svg,
.floating-call svg,
.scroll-to-top svg {
    pointer-events: none;
}

.floating-whatsapp {
    bottom: 10rem;
    background: #25D366;
}

.floating-whatsapp:hover {
    background: #20BA5A;
    transform: scale(1.1);
}

.floating-call {
    bottom: 16rem;
    background: #EF4444;
}

.floating-call:hover {
    background: #DC2626;
    transform: scale(1.1);
}

.scroll-to-top {
    bottom: 2rem;
    background: var(--primary);
    opacity: 0;
    visibility: hidden;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--primary-light);
    transform: scale(1.1);
}

/* ========== Responsive ========== */
@media (max-width: 992px) {
    .quality-content,
    .corporate-content {
        grid-template-columns: 1fr;
     gap: 2rem;
    }
    
    .quality-image,
    .corporate-image {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 968px) {
    /* Top Bar Mobile */
    .top-bar-content {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .top-contact {
        font-size: 0.9rem;
    }
    
    /* Header Mobile */
    .header {
        top: 80px;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 160px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 160px);
        background: var(--bg);
        flex-direction: column;
        padding: 1rem 2rem 2rem;
        transition: left 0.3s;
        border-top: 1px solid var(--border);
        overflow-y: auto;
        overflow-x: hidden;
        align-items: flex-start;
        gap: 0;
        -webkit-overflow-scrolling: touch;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        width: 100%;
        border-bottom: 1px solid var(--border);
    }
    
    .nav-link {
        padding: 1rem 0;
        font-size: 1.125rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }
    
    /* Dropdown toggle button - ONLY for mobile */
    .dropdown-toggle-btn {
        display: none;
    }
    
    
    /* Active state for mobile links */
    .nav-item.open > .nav-link {
        color: var(--primary-light);
    }
    
    /* Dropdown arrow indicator for mobile */
    .nav-item:has(.dropdown) .nav-link::after {
        content: '▼';
        font-size: 0.75rem;
        margin-left: 0.5rem;
        transition: transform 0.3s;
        color: var(--primary);
    }
    
    .nav-item.open .nav-link::after {
        transform: rotate(180deg);
        color: var(--primary-light);
    }
    
    .nav-cta {
        margin-left: 0;
        margin-top: 1rem;
        width: 100%;
        text-align: center;
    }
    
    .dropdown,
    .dropdown-2col {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--bg-light);
        border-top: none;
        border-radius: 0;
        max-height: 0;
        overflow: hidden;
        overflow-y: auto;
        transition: max-height 0.5s ease-in-out;
        padding: 0;
        grid-template-columns: 1fr;
        min-width: auto;
        margin-bottom: 0;
    }
    
    .nav-item.open .dropdown,
    .nav-item.open .dropdown-2col {
        max-height: 2500px;
        padding: 1rem 0;
        margin-bottom: 0.5rem;
    }
    
    .dropdown a,
    .dropdown-column a {
        padding: 0.875rem 1.25rem;
        font-size: 1rem;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    
    .dropdown a:last-child,
    .dropdown-column a:last-child {
        border-bottom: none;
    }
    
    .dropdown a:hover,
    .dropdown-column a:hover {
        padding-left: 1.75rem;
        background: var(--bg);
    }
    
    /* Hero Banner Mobile */
    .hero-banner {
        height: 400px;
        margin-top: 160px;
    }
    
    /* Sections Mobile */
    .services-intro,
    .content-section,
    .regions,
    .pricing,
    .process,
    .corporate-moving,
    .why-us,
    .faq,
    .google-reviews,
    .cta-section {
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-desc {
        font-size: 1rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    /* Region Grid Mobile */
    .region-grid {
        grid-template-columns: 1fr;
    }
    
    /* Floating Buttons Mobile */
    .floating-whatsapp,
    .floating-call,
    .scroll-to-top {
        right: 1rem;
        width: 50px;
        height: 50px;
    }
    
    .floating-whatsapp svg,
    .floating-call svg,
    .scroll-to-top svg {
        width: 26px;
        height: 26px;
    }
    
    .floating-whatsapp {
        bottom: 8rem;
    }
    
    .floating-call {
        bottom: 13rem;
    }
    
    .scroll-to-top {
        bottom: 1.5rem;
    }
    
    /* CTA Mobile */
    .cta-box h2 {
        font-size: 1.75rem;
    }
    
    .cta-box p {
        font-size: 1rem;
    }
    
    .btn-cta {
        font-size: 1.25rem;
        padding: 1rem 2rem;
    }
    
    /* Review Buttons Mobile */
    .review-buttons {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 640px) {
    /* Price Grid Mobile */
    .price-grid {
        grid-template-columns: 1fr;
    }
    
    /* Process Grid Mobile */
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    /* Features Grid Mobile */
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    /* FAQ Mobile */
    .faq-question-btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .faq-answer p {
        padding: 1rem 1.5rem;
    }
}
/* ============================================
   BREADCRUMB NAVIGATION
   ============================================ */

.breadcrumb {
    background: #f3f4f6;
    padding: 1.25rem 0;
    margin-top: 0;
    border-bottom: 1px solid #e5e7eb;
}

.breadcrumb-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.breadcrumb-item a {
    color: #1e3a8a;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.breadcrumb-item a:hover {
    color: #fbbf24;
    text-decoration: underline;
}

.breadcrumb-separator {
    color: #6b7280;
    font-size: 1rem;
    font-weight: 600;
}

.breadcrumb-current {
    color: #374151;
    font-weight: 700;
}

/* Breadcrumb Mobile */
@media (max-width: 968px) {
    .breadcrumb {
        padding: 1rem 0;
    }
    
    .breadcrumb-container {
        padding: 0 1rem;
    }
    
    .breadcrumb-nav {
        font-size: 0.875rem;
        gap: 0.5rem;
    }
    
    .breadcrumb-item {
        gap: 0.5rem;
    }
}

/* ============================================
   HAKKIMIZDA SAYFASI ÖZEL STİLLERİ
   ============================================ */

/* Hakkımızda Sayfa BaşlıÄŸı */
.about-page-title {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 2rem;
}

/* TÃ¼m section başlıkları için tutarlı boşluk */
.content-section .section-title {
    margin-bottom: 3rem;
}

.content-section .content-box h2 {
    margin-bottom: 1.5rem;
}

/* İçerik + Görsel Kutuları */
.about-content-box {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    max-width: 100%;
}

.about-content-text {
    color: var(--text-light);
    font-size: 1.125rem;
    line-height: 1.8;
    margin: 0;
}

.about-content-image {
    text-align: center;
}

.about-content-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.about-image-caption {
    margin-top: 1rem;
    color: var(--primary);
    font-weight: 700;
    font-size: 1rem;
}

/* Farkımız Liste Stilleri */
.about-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-features-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-light);
    font-size: 1.05rem;
}

.about-features-list li:last-child {
    border-bottom: none;
}

.about-features-list strong {
    color: var(--primary);
}

.about-learn-more {
    margin-top: 2rem;
    color: var(--text-light);
    font-size: 1.125rem;
}

.about-learn-more a {
    color: var(--primary);
    font-weight: 700;
    text-decoration: underline;
}

/* Hizmet Kartları (6 adet) */
.about-service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.about-service-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.about-service-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.about-service-card p {
    color: var(--text-light);
}

/* Fiyat Politikası Başlıkları */
.about-pricing-subtitle {
    color: var(--primary);
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
}

.about-highlight-box {
    background: var(--primary);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.about-highlight-box p {
    color: white;
    margin: 0;
}

/* Mobil Responsive */
@media (max-width: 968px) {
    .about-content-box {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1.5rem;
    }
    
    .about-content-box .about-content-image {
        order: -1; /* Görseli Ã¼ste al */
    }
    
    .about-page-title {
        font-size: 1.75rem;
    }
    
    .about-service-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}




/* ============================================
   NAKLIYAT KRITERLERI PAGE SPECIFIC STYLES
   ============================================ */

/* Kriter Selection Image Wrapper */
.criteria-image-wrapper {
    text-align: center;
    margin: 3rem 0;
}

.criteria-image-wrapper img {
    max-width: 800px;
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Criteria Validity Info Box */
.criteria-validity-box {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary);
    margin: 3rem 0;
}

.criteria-validity-box h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.criteria-validity-box p {
    color: var(--text);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.criteria-validity-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.criteria-validity-list li {
    padding: 0.5rem 0;
    color: var(--text);
    font-size: 1.05rem;
}

/* Process Steps List */
.process-steps-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.process-steps-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-light);
    font-size: 1.05rem;
}

.process-steps-list li:last-child {
    border-bottom: none;
}

/* Expertise Highlight Box */
.expertise-highlight {
    background: var(--accent);
    color: var(--primary);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 1.5rem;
}

.expertise-highlight p {
    margin: 0;
    font-weight: 700;
    font-size: 1.125rem;
}

/* Criteria Cards (A-Z, Standart, Boş) */
.criteria-card-az {
    border-left: 4px solid #f59e0b;
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
}

.criteria-card-standart {
    border-left: 4px solid #3b82f6;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.criteria-card-bos {
    border-left: 4px solid #6b7280;
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
}

.criteria-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.criteria-card-az h3,
.criteria-card-az h4,
.criteria-card-az h5 {
    color: #c2410c;
}

.criteria-card-standart h3,
.criteria-card-standart h4,
.criteria-card-standart h5 {
    color: #1e40af;
}

.criteria-card-bos h3,
.criteria-card-bos h4,
.criteria-card-bos h5 {
    color: #374151;
}

.criteria-card-desc {
    color: var(--text);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.criteria-card h4 {
    font-size: 1.15rem;
    margin: 1.5rem 0 0.75rem;
}

.criteria-card h5 {
    font-size: 1rem;
    margin: 1.5rem 0 0.75rem;
}

.criteria-advantages {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.criteria-advantages li {
    padding: 0.5rem 0;
    color: var(--text);
    font-size: 0.95rem;
}

.criteria-note {
    color: var(--text);
    font-size: 0.95rem;
    margin: 0 0 1.5rem 0;
}

.criteria-price-box {
    padding: 1rem;
    border-radius: 8px;
}

.criteria-price-box-az {
    background: rgba(194, 65, 12, 0.1);
}

.criteria-price-box-standart {
    background: rgba(30, 64, 175, 0.1);
}

.criteria-price-box-bos {
    background: rgba(107, 114, 128, 0.1);
}

.criteria-price-box p {
    margin: 0;
    font-weight: 600;
    font-size: 0.95rem;
}

.criteria-price-box-az p {
    color: #c2410c;
}

.criteria-price-box-standart p {
    color: #1e40af;
}

.criteria-price-box-bos p {
    color: #374151;
}

/* Profile Cards */
.profile-card-az {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid #f59e0b;
}

.profile-card-standart {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid #3b82f6;
}

.profile-card-bos {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid #6b7280;
}

.profile-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.profile-card-az h3 {
    color: #c2410c;
}

.profile-card-standart h3 {
    color: #1e40af;
}

.profile-card-bos h3 {
    color: #374151;
}

.profile-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.profile-list li {
    padding: 0.5rem 0;
    color: var(--text);
    font-size: 1rem;
}

/* Location Cards (Şehir İçi / Şehirler Arası) */
.location-card {
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.location-card-city {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.location-card-intercity {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.location-emoji {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.location-card h3 {
    text-align: center;
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.location-card-city h3 {
    color: #1e40af;
}

.location-card-intercity h3 {
    color: #c2410c;
}

.location-card-desc {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.location-requirements {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.location-requirements h4 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.15rem;
}

.location-requirements-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.location-requirements-list li {
    padding: 0.75rem 0;
    font-size: 1.05rem;
}

.location-requirements-list li:not(:last-child) {
    border-bottom: 1px solid var(--border);
}

.location-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 1.25rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.3s;
}

.location-btn-city {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.location-btn-city:hover {
    background: #1e40af;
    transform: translateY(-2px);
}

.location-btn-intercity {
    background: var(--accent);
    color: #1f2937;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.location-btn-intercity:hover {
    background: #f59e0b;
    transform: translateY(-2px);
}

/* Parsiyel Info Box */
.parsiyel-box {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-left: 5px solid #f59e0b;
    padding: 2.5rem;
    border-radius: 16px;
    margin-top: 3rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.parsiyel-box h3 {
    color: #c2410c;
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.parsiyel-box p {
    color: var(--text);
    font-size: 1.125rem;
}

.parsiyel-box p:not(:last-of-type) {
    margin-bottom: 1rem;
}

.parsiyel-box p:last-of-type {
    margin-bottom: 1.5rem;
}

.parsiyel-highlight {
    color: #c2410c;
    font-weight: 700;
}

.parsiyel-btn {
    display: inline-block;
    background: #c2410c;
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.125rem;
    box-shadow: 0 4px 12px rgba(194, 65, 12, 0.3);
    transition: all 0.3s;
}

.parsiyel-btn:hover {
    background: #9a3412;
    transform: translateY(-2px);
}

/* Parsiyel Link in Lists */
.parsiyel-link {
    color: #c2410c;
    font-weight: 700;
    text-decoration: underline;
}

.parsiyel-link:hover {
    color: #9a3412;
}

/* Mobile Responsive for Criteria Page */
@media (max-width: 968px) {
    .criteria-image-wrapper {
        margin: 2rem 0;
    }
    
    .criteria-validity-box {
        padding: 1.5rem;
    }
    
    .location-card {
        padding: 2rem;
    }
    
    .location-emoji {
        font-size: 2.5rem;
    }
    
    .parsiyel-box {
        padding: 2rem;
    }
}
/* ============================================
   INFO ACCORDION SECTION - Modern Kartlı Tasarım
   ============================================ */

.info-accordion-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.info-accordion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.info-accordion-item {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.info-accordion-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

/* Renk Temaları */
.accordion-blue .info-accordion-header {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
}

.accordion-green .info-accordion-header {
    background: linear-gradient(135deg, #065f46 0%, #10b981 100%);
}

.accordion-orange .info-accordion-header {
    background: linear-gradient(135deg, #c2410c 0%, #f97316 100%);
}

.accordion-purple .info-accordion-header {
    background: linear-gradient(135deg, #6b21a8 0%, #a855f7 100%);
}

/* Header */
.info-accordion-header {
    width: 100%;
    padding: 1.5rem;
    border: none;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    cursor: pointer;
    color: white;
    text-align: left;
    transition: all 0.3s;
}

.info-accordion-header:hover {
    filter: brightness(1.1);
}

.info-accordion-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.info-accordion-item.active .info-accordion-icon {
    transform: scale(1.1) rotate(10deg);
    background: rgba(255,255,255,0.3);
}

.info-accordion-title-wrap {
    flex: 1;
}

.info-accordion-title-wrap h3 {
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 0.25rem 0;
    line-height: 1.3;
}

.info-accordion-title-wrap p {
    color: rgba(255,255,255,0.9);
    font-size: 0.875rem;
    margin: 0;
    font-weight: 400;
}

.info-accordion-toggle {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 300;
    transition: all 0.3s;
}

.info-accordion-item.active .info-accordion-toggle {
    transform: rotate(45deg);
    background: rgba(255,255,255,0.3);
}

/* Content */
.info-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
}

.info-accordion-item.active .info-accordion-content {
    max-height: 1000px;
}

.info-accordion-content p,
.info-accordion-content ul {
    padding: 0 1.5rem;
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
    margin: 1.25rem 0;
}

.info-accordion-content p:first-child {
    padding-top: 1.5rem;
}

.info-accordion-content p:last-child,
.info-accordion-content ul:last-child {
    padding-bottom: 1.5rem;
}

.info-accordion-content ul {
    list-style: none;
    padding-left: 1.5rem;
}

.info-accordion-content ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.info-accordion-content strong {
    color: var(--primary);
    font-weight: 600;
}

.info-accordion-content a {
    color: var(--primary);
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s;
}

.info-accordion-content a:hover {
    color: var(--primary-light);
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .info-accordion-section {
        padding: 4rem 0;
    }
    
    .info-accordion-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .info-accordion-header {
        padding: 1.25rem;
        gap: 1rem;
    }
    
    .info-accordion-icon {
        width: 40px;
        height: 40px;
    }
    
    .info-accordion-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .info-accordion-title-wrap h3 {
        font-size: 1.125rem;
    }
    
    .info-accordion-title-wrap p {
        font-size: 0.8125rem;
    }
    
    .info-accordion-toggle {
        width: 32px;
        height: 32px;
        font-size: 1.5rem;
    }
    
    .info-accordion-content p,
    .info-accordion-content ul {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
        font-size: 0.9375rem;
    }
}

@media (max-width: 640px) {
    .info-accordion-header {
        flex-wrap: wrap;
    }
    
    .info-accordion-icon {
        order: 1;
    }
    
    .info-accordion-title-wrap {
        order: 2;
        flex-basis: calc(100% - 88px);
    }
    
    .info-accordion-toggle {
        order: 3;
    }
}

/* ============================================
   SERVICE INFO CARDS - İkon Kartlı Hizmetler Bölümü
   ============================================ */

.services-intro-cards {
    padding: 6rem 0;
    background: white;
}

.service-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-info-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    transition: height 0.4s;
}

.service-info-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-info-card:hover::before {
    height: 8px;
}

/* Renk Temaları */
.card-experience::before {
    background: linear-gradient(90deg, #fbbf24 0%, #f59e0b 100%);
}

.card-expertise::before {
    background: linear-gradient(90deg, #3b82f6 0%, #1e40af 100%);
}

.card-special::before {
    background: linear-gradient(90deg, #10b981 0%, #059669 100%);
}

.card-experience:hover {
    box-shadow: 0 20px 40px rgba(251, 191, 36, 0.25);
}

.card-expertise:hover {
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.25);
}

.card-special:hover {
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.25);
}

/* İkon */
.service-info-icon {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s;
}

.card-experience .service-info-icon {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #c2410c;
}

.card-expertise .service-info-icon {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    color: #1e40af;
}

.card-special .service-info-icon {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    color: #065f46;
}

.service-info-card:hover .service-info-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Başlık */
.service-info-card h3 {
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.card-experience h3 {
    color: #c2410c;
}

.card-expertise h3 {
    color: #1e40af;
}

.card-special h3 {
    color: #065f46;
}

/* İçerik */
.service-info-card p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.8;
    margin: 0;
}

.service-info-card strong {
    color: var(--primary);
    font-weight: 600;
}

.service-info-card a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: underline;
    transition: color 0.3s;
}

.service-info-card a:hover {
    color: var(--primary-light);
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .services-intro-cards {
        padding: 4rem 0;
    }
    
    .service-info-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-info-card {
        padding: 2rem;
    }
    
    .service-info-icon {
        width: 64px;
        height: 64px;
    }
    
    .service-info-icon svg {
        width: 36px;
        height: 36px;
    }
    
    .service-info-card h3 {
        font-size: 1.25rem;
    }
    
    .service-info-card p {
        font-size: 0.9375rem;
    }
}

@media (max-width: 640px) {
    .service-info-card {
        padding: 1.5rem;
    }
    
    .service-info-icon {
        width: 56px;
        height: 56px;
    }
    
    .service-info-icon svg {
        width: 32px;
        height: 32px;
    }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    color: #ffffff;
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

/* Footer Logo */
.footer-logo {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.footer-logo .logo-text {
    color: #ffffff;
}

.footer-logo .logo-highlight {
    color: #fbbf24;
}

/* Footer Description */
.footer-description {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-description:last-child {
    margin-bottom: 0;
}

/* Footer Titles */
.footer-title {
    color: #fbbf24;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

/* Footer Lists */
.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 0.75rem;
}

.footer-list a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-list a:hover {
    color: #fbbf24;
}

/* Footer Contact */
.contact-group {
    margin-bottom: 1rem;
}

.contact-group:last-child {
    margin-bottom: 0;
}

.contact-label {
    display: block;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-link {
    display: block;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-link:hover {
    color: #fbbf24;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    text-align: center;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* ==========================================================================
   PRICE TABLE STYLES - Fiyat Tablosu
   ========================================================================== */

.price-table-wrapper {
    overflow-x: auto;
    margin: 25px 0;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
}

.price-table thead {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
}

.price-table th {
    padding: 18px 20px;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.3px;
}

.price-table tbody tr {
    transition: background-color 0.2s ease;
}

.price-table tbody tr:nth-child(odd) {
    background: #f8fafc;
}

.price-table tbody tr:nth-child(even) {
    background: white;
}

.price-table tbody tr:hover {
    background: #e0f2fe;
}

.price-table td {
    padding: 15px 20px;
    border-bottom: 1px solid #e2e8f0;
    color: #1e293b;
    font-size: 0.95rem;
}

.price-table tbody tr:last-child td {
    border-bottom: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .price-table th,
    .price-table td {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
    
    .price-table-wrapper {
        margin: 20px -15px;
        border-radius: 0;
    }
}

/* ==========================================================================
   
KOCAELI EVDEN EVE NAKLIYAT PAGE STYLES - FULL & RESPONSIVE
   

========================================================================== */


/* --- GENEL TASARIM ÖĞELERİ --- */

.pricing-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1rem;
    line-height: 1.7;
    color: #4b5563;
}

.pricing-section-title {
    color: 

#1e40af;
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
    margin: 50px 0 30px;
}

/* --- FIYAT TABLOSU --- */
.price-table-wrapper {
    overflow-x: auto;
    

margin: 25px 0;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    

border-radius: 12px;
    overflow: hidden;
}

.price-table thead {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
}

.price-table th {
    padding: 

18px 20px;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.3px;
}

.price-table td {
    padding: 15px 20px;
    border-bottom: 1px solid #e2e8f0;
    

color: #1e293b;
    font-size: 0.95rem;
}

.price-table tbody tr:nth-child(odd) { background: #f8fafc; }
.price-table tbody tr:hover { background: #e0f2fe; }

/* --- PRICING CARDS 

--- */
.pricing-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.pricing-card {
    background: 

white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    

transform: translateY(-5px);
    border-color: #3b82f6;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.15);
}

.pricing-card-popular {
    border: 3px solid #fbbf24;
    

background: linear-gradient(135deg, #fef3c7 0%, #ffffff 100%);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    

background: #fbbf24;
    color: #1e3a8a;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
}

.pricing-route {
  

  font-size: 1.1rem;
    color: #1e3a8a;
    font-weight: 600;
    margin-bottom: 15px;
}

.pricing-amount {
    font-size: 1.5rem;
    color: #1e40af;
    font-weight: 700;
}

/* --- 

DISCOUNT & NOTES --- */
.discount-section {
    background: white;
    padding: 30px;
    border-radius: 12px;
    margin-top: 40px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.discount-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.discount-card {
    text-align: center;
    padding: 20px;
    

background: #f8fafc;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.discount-emoji { font-size: 2rem; margin-bottom: 10px; }
.discount-percentage { font-size: 

1.5rem; font-weight: bold; color: #059669; margin: 0; }

.price-note-box {
    background: #fef3c7;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #f59e0b;
    

margin-top: 40px;
}

/* --- SERVICES HIGHLIGHT --- */
.services-highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    

margin-top: 40px;
}

.service-highlight-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s 

ease;
    border: 2px solid #e5e7eb;
}

.service-highlight-icon { font-size: 3rem; margin-bottom: 15px; display: block; }
.service-highlight-title { color: #1e40af; font-size: 1.3rem; 

font-weight: 700; margin-bottom: 15px; }

.service-highlight-list { list-style: none; padding: 0; margin: 20px 0; }
.service-highlight-list li {
     color: #065f46;
    padding: 8px 0 8px 25px;
    position: relative;
    line-height: 1.6;
    font-weight: 500;

8px 25px;
    position: relative;
    line-height: 1.6;
}
.service-highlight-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2rem;
}

/* --- 

TIPS ACCORDION --- */
.tips-accordion { margin-top: 30px; }
.tip-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 15px;
    border: 1px solid #e5e7eb;
    

overflow: hidden;
}
.tip-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    background: linear-gradient

(135deg, #f8fafc 0%, #ffffff 100%);
}
.tip-content { padding: 0 25px 20px; color: #4b5563; line-height: 1.8; display: none; }
.tip-item.active .tip-content { display: block; 

animation: slideDown 0.3s ease; }

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- CTA 

BUTTONS --- */
.cta-buttons { display: flex; gap: 15px; flex-wrap: wrap; justify-content: center; margin-top: 25px; }
.btn-phone, .btn-whatsapp, .btn-service-link {
    display: 

inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-

whatsapp { background: #25D366; color: white; }
.btn-service-link { color: #1e40af; border: 2px solid #3b82f6; margin-top: 15px; }

/* 

==========================================================================
   
KOCAELİ EVDEN EVE NAKLIYAT PAGE  RESPONSIVE AYARLAR (Mobile & Tablet)
   
========================================================================== */


@media (max-width: 768px) {
    /* Tablo Mobilde Kaydırılabilir ve Daha Küçük Font */
    .price-table th, 
    .price-table td {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
    
    .price-table-wrapper {
        margin: 20px -15px;
        border-radius: 0;
    }

    /* Kartlar Mobilde Tek Kolon */
    .pricing-cards-grid,
    .services-highlight-grid {
        grid-

template-columns: 1fr;
    }
    
    .pricing-section-title {
        font-size: 1.2rem;
    }

    /* İndirim Bölümü 2 Kolon */
    .discount-grid {
        grid-template-columns: repeat(2, 1fr);
    

    gap: 15px;
    }

    .discount-emoji { font-size: 1.5rem; }
    .discount-percentage { font-size: 1.2rem; }

    /* Butonlar Mobilde Tam Genişlik */
    .cta-buttons {
        flex-

direction: column;
    }

    .btn-phone, 
    .btn-whatsapp,
    .btn-service-link {
        width: 100%;
        justify-content: center;
        padding: 15px;
    }

    /* Servis İkonları ve 

Metinleri */
    .service-highlight-icon { font-size: 2.5rem; }
    .service-highlight-card { padding: 20px; }
    
    /* Akordiyon Mobil Font */
    .tip-header h3 { font-size: 1rem; }
    

.tip-icon { font-size: 1.5rem; }
    .tip-header { padding: 15px 20px; }
}

/* Çok Küçük Ekranlar İçin (Opsiyonel) */
@media (max-width: 480px) {
    .discount-grid {
        grid-

template-columns: 1fr;
    }
}
/* ==========================================
   TEKLİF FORMU (Mobile & Tablet)
   ========================================== */

/* ── Sayfa Arka Planı ── */


.teklif-page {
    background: var(--bg-light);
    min-height: 100vh;
    padding-bottom: 0rem;
}


/* ── Hero Bant (resim yok) ── */

.teklif-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 10rem 0 3rem;
    text-align: center;
}

.teklif-hero h1 {
    color: white;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.teklif-hero p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}


/* ── Form Kartı ── */

.teklif-card {
    background: white;
    border-radius: 24px;
    box-shadow: 0 16px 48px rgba(30,58,138,0.12);
    padding: 3rem;
    max-width: 820px;
    margin: -0rem auto 0;
    position: relative;
    z-index: 2;
}


/* ── Alan Grupları ── */

.teklif-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.teklif-grid-full {
    grid-column: 1 / -1;
}

.teklif-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.teklif-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.teklif-label span {
    color: var(--accent);
    margin-left: 2px;
}

/* ── Input / Select / Textarea ── */
.teklif-input,
.teklif-select,
.teklif-textarea {
    width: 100%;
    padding: 0.9rem 1.1rem;
    border: 2px solid var(--border);
    border-radius: 12px;
    font-size: 1rem;
    color: var(--text);
    background: var(--bg-light);
    transition: border-color 0.25s, box-shadow 0.25s;
    font-family: inherit;
    appearance: none;
    -webkit-appearance: none;
}

.teklif-input:focus,
.teklif-select:focus,
.teklif-textarea:focus {
    outline: none;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 4px rgba(59,130,246,0.15);
    background: white;
}

.teklif-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='%231e3a8a'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.2rem;
    padding-right: 2.5rem;
    cursor: pointer;
}

.teklif-textarea {
    resize: vertical;
    min-height: 110px;
    line-height: 1.6;
}

/* ── Radio Chip Grupları ── */
.teklif-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 0.25rem;
}

.teklif-chip input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.teklif-chip label {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 1.1rem;
    border: 2px solid var(--border);
    border-radius: 50px;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-light);
    background: var(--bg-light);
    cursor: pointer;
    transition: all 0.2s;
    user-select: none;
}

.teklif-chip label:hover {
    border-color: var(--primary-light);
    color: var(--primary);
    background: white;
}

.teklif-chip input[type="radio"]:checked + label {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    box-shadow: 0 4px 12px rgba(30,58,138,0.25);
}

/* ── Bölüm Ayırıcı ── */
.teklif-divider {
    border: none;
    border-top: 2px dashed var(--border);
    margin: 2rem 0;
}

.teklif-section-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.teklif-section-title::after {
    content: '';
    flex: 1;
    height: 2px;
    background: linear-gradient(to right, var(--border), transparent);
}

/* ── Gönder Butonu ── */
.teklif-submit {
    width: 100%;
    padding: 1.1rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    font-size: 1.15rem;
    font-weight: 700;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 0.02em;
    margin-top: 0.5rem;
    box-shadow: 0 6px 20px rgba(30,58,138,0.3);
}

.teklif-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(30,58,138,0.4);
}

.teklif-submit:active {
    transform: translateY(0);
}

/* ── Güven Rozetleri ── */
.teklif-trust {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.teklif-trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.88rem;
    font-weight: 500;
}

.teklif-trust-icon {
    font-size: 1.3rem;
}

/* ── Başarı Mesajı ── */
.teklif-success {
    display: none;
    text-align: center;
    padding: 3rem 2rem;
}

.teklif-success-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.teklif-success h2 {
    color: var(--primary);
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.teklif-success p {
    color: var(--text-light);
    font-size: 1.05rem;
}

/* ── Responsive ── */
@media (max-width: 680px) {
    .teklif-card {
        padding: 2rem 1.5rem;
        margin: -1.5rem 1rem 0;
        border-radius: 16px;
    }

    .teklif-grid {
        grid-template-columns: 1fr;
    }

    .teklif-hero {
        padding: 3rem 1.5rem 2.5rem;
    }

    .teklif-trust {
        gap: 1.25rem;
    }
}

/* ==========================================
   İLETİSİM (Mobile & Tablet)
   ========================================== */
/* ── İki Sütun Layout ── */
.iletisim-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* ── Bilgi Kartları ── */
.iletisim-info-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 24px rgba(30,58,138,0.1);
    margin-bottom: 1.5rem;
}

.iletisim-info-card h2 {
    color: var(--primary);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.iletisim-info-row {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--bg-light);
}

.iletisim-info-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.iletisim-info-icon {
    font-size: 1.3rem;
    min-width: 2rem;
    text-align: center;
    margin-top: 2px;
}

.iletisim-info-text strong {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.3rem;
}

.iletisim-info-text a,
.iletisim-info-text p {
    color: var(--text-light);
    font-size: 0.97rem;
    line-height: 1.6;
    text-decoration: none;
    display: block;
    margin: 0;
    transition: color 0.2s;
}

.iletisim-info-text a:hover {
    color: var(--primary-light);
}

/* ── Harita ── */
.iletisim-map {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(30,58,138,0.1);
    height: 260px;
    margin-top: 1.5rem;
}

.iletisim-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* ── Form Kartı ── */
.iletisim-form-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 24px rgba(30,58,138,0.1);
    position: sticky;
    top: 120px;
}

.iletisim-form-card h2 {
    color: var(--primary);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.75rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

/* Form alanları teklif-* class'larını kullanıyor */
.iletisim-form-grid {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .iletisim-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .iletisim-form-card {
        position: static;
    }
}

@media (max-width: 680px) {
    .iletisim-info-card,
    .iletisim-form-card {
        padding: 1.75rem 1.5rem;
    }
}

/* ==========================================
   HATA SAYFALARI (404, 410)
   ========================================== */


.error-page-wrapper {
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
    padding: 2rem 0 1rem;
}

.error-page-number {
    font-size: clamp(5rem, 18vw, 9rem);
    font-weight: 900;
    line-height: 1;
    color: var(--primary);
    opacity: 0.12;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.error-page-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.error-page-countdown {
    font-size: 0.875rem;
    color: #888;
    margin-top: 1.5rem;
}

.error-page-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 2rem;
}

.error-page-link-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 1rem;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    color: var(--primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.error-page-link-card:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 16px rgba(30, 58, 138, 0.12);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .error-page-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .error-page-links {
        grid-template-columns: 1fr 1fr;
    }
    .error-page-actions {
        flex-direction: column;
        align-items: center;
    }
}


