/* =====================================================
   NAKLİYAT SCRİPTİ - ANA CSS (Bootstrap 5 tabanlı)
   Renk: Turuncu #FF6B35 + Lacivert #1a2744
   ===================================================== */

/* ===== CSS DEĞİŞKENLERİ ===== */
:root {
    --primary: #1a2744;
    --primary-dark: #111d36;
    --primary-light: #243b6e;
    --accent: #FF6B35;
    --accent-dark: #e5551f;
    --accent-light: #ff8c42;
    --text: #2d3748;
    --text-light: #718096;
    --text-muted: #a0aec0;
    --bg: #f8fafc;
    --bg-alt: #eef2f7;
    --white: #ffffff;
    --border: #e2e8f0;
    --shadow: 0 4px 24px rgba(26,39,68,0.10);
    --shadow-lg: 0 8px 40px rgba(26,39,68,0.15);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s ease;
    --font: 'Inter', sans-serif;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font);
    color: var(--text);
    background: var(--white);
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}
a { color: var(--accent); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent-dark); }
img { max-width: 100%; height: auto; }
p { margin-bottom: 1rem; }
h1,h2,h3,h4,h5,h6 { font-weight: 700; color: var(--primary); line-height: 1.3; }

/* ===== PRELOADER ===== */
#preloader {
    position: fixed; inset: 0; z-index: 9999;
    background: var(--primary);
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
#preloader.loaded { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner {
    display: flex; gap: 8px;
}
.preloader-inner span {
    width: 12px; height: 12px; border-radius: 50%;
    background: var(--accent);
    animation: preloadBounce 0.8s infinite alternate;
}
.preloader-inner span:nth-child(2) { animation-delay: 0.2s; }
.preloader-inner span:nth-child(3) { animation-delay: 0.4s; }
@keyframes preloadBounce {
    from { transform: translateY(0); opacity: 0.5; }
    to { transform: translateY(-16px); opacity: 1; }
}

/* ===== TOPBAR ===== */
#topbar {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.8);
    font-size: 13px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.topbar-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.topbar-left { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.topbar-right { display: flex; align-items: center; gap: 8px; }
.topbar-item { color: rgba(255,255,255,0.75); display: flex; align-items: center; gap: 6px; }
.topbar-item i { color: var(--accent); font-size: 12px; }
.topbar-item:hover { color: var(--white); }
.topbar-social {
    width: 28px; height: 28px; border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.7); font-size: 12px;
    transition: var(--transition);
}
.topbar-social:hover { background: var(--accent); color: var(--white); }
.topbar-wa {
    background: #25D366; color: white;
    padding: 4px 10px; border-radius: 20px;
    width: auto; font-size: 12px; font-weight: 600;
    display: flex; align-items: center; gap: 4px;
}
.topbar-wa:hover { background: #1da851; color: white; }

/* ===== NAVBAR ===== */
#main-navbar {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky; top: 0; z-index: 1000;
    transition: var(--transition);
}
#main-navbar.scrolled {
    box-shadow: 0 4px 30px rgba(26,39,68,0.2);
}
.navbar-inner {
    display: flex; align-items: center; justify-content: space-between;
    padding: 12px 0; gap: 16px;
}
.navbar-logo img { height: 52px; width: auto; object-fit: contain; }
.navbar-logo .logo-text {
    font-size: 22px; font-weight: 800; color: var(--primary);
    display: flex; flex-direction: column; line-height: 1.2;
}
.navbar-logo .logo-text span { color: var(--accent); font-size: 12px; font-weight: 500; }

/* Desktop Menu */
.navbar-menu {
    display: flex; align-items: center; gap: 4px;
    list-style: none; margin: 0; padding: 0;
}
.navbar-menu > li { position: relative; }
.navbar-menu > li > a {
    display: block; padding: 8px 14px; border-radius: 8px;
    color: var(--primary); font-weight: 600; font-size: 14px;
    transition: var(--transition); white-space: nowrap;
}
.navbar-menu > li > a:hover,
.navbar-menu > li > a.active { background: rgba(255,107,53,0.1); color: var(--accent); }
.navbar-menu > li.has-dropdown > a::after {
    content: '\F282'; font-family: 'Bootstrap-icons';
    font-size: 11px; margin-left: 4px;
}

/* Dropdown */
.dropdown-nav {
    position: absolute; top: calc(100% + 8px); left: 0;
    background: var(--white); border-radius: var(--radius);
    box-shadow: var(--shadow-lg); border: 1px solid var(--border);
    min-width: 200px; list-style: none; padding: 8px 0; margin: 0;
    opacity: 0; visibility: hidden; transform: translateY(-8px);
    transition: var(--transition); z-index: 999;
}
.has-dropdown:hover .dropdown-nav {
    opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown-nav li a {
    display: block; padding: 9px 18px;
    color: var(--text); font-size: 14px; font-weight: 500;
    transition: var(--transition);
}
.dropdown-nav li a:hover { background: var(--bg); color: var(--accent); padding-left: 24px; }

/* Navbar Actions */
.navbar-actions { display: flex; align-items: center; gap: 10px; }
.btn-teklif {
    background: var(--accent); color: var(--white);
    padding: 10px 20px; border-radius: 30px;
    font-weight: 700; font-size: 14px;
    display: flex; align-items: center; gap: 6px;
    transition: var(--transition); white-space: nowrap;
    box-shadow: 0 4px 15px rgba(255,107,53,0.4);
}
.btn-teklif:hover { background: var(--accent-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,107,53,0.5); }

/* Hamburger */
.hamburger {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 6px;
    border-radius: 8px; transition: var(--transition);
}
.hamburger span {
    display: block; width: 24px; height: 2px;
    background: var(--primary); border-radius: 2px;
    transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.mobile-menu {
    display: none; background: var(--white);
    border-top: 1px solid var(--border);
    padding: 12px 0;
}
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; padding: 0; margin: 0; }
.mobile-menu ul li a {
    display: block; padding: 10px 20px;
    color: var(--primary); font-weight: 600; font-size: 14px;
    border-radius: 8px; transition: var(--transition);
}
.mobile-menu ul li a:hover { background: var(--bg); color: var(--accent); }
.mobile-sub { display: none; padding-left: 12px; }
.mobile-sub.open { display: block; }
.mobile-sub li a { font-weight: 500; font-size: 13px; color: var(--text-light); }
.mobile-teklif-link {
    background: var(--accent) !important; color: var(--white) !important;
    border-radius: 30px !important; text-align: center;
    margin: 8px 16px !important; padding: 12px 20px !important;
}

/* ===== HERO / SLIDER ===== */
.hero-slider { position: relative; overflow: hidden; }
.hero-slide {
    position: relative; min-height: 620px;
    display: flex; align-items: center;
    background-size: cover; background-position: center; background-repeat: no-repeat;
}
.hero-slide::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(26,39,68,0.88) 0%, rgba(26,39,68,0.55) 60%, rgba(26,39,68,0.2) 100%);
}
.hero-content { position: relative; z-index: 2; color: var(--white); }
.hero-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(255,107,53,0.25); border: 1px solid rgba(255,107,53,0.4);
    color: #FF9B76; padding: 6px 14px; border-radius: 20px;
    font-size: 13px; font-weight: 600; margin-bottom: 16px;
}
.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800; color: var(--white);
    line-height: 1.15; margin-bottom: 20px;
}
.hero-title span { color: var(--accent); }
.hero-subtitle { font-size: 18px; color: rgba(255,255,255,0.85); margin-bottom: 32px; max-width: 540px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-hero-primary {
    background: var(--accent); color: var(--white);
    padding: 14px 28px; border-radius: 40px; font-weight: 700; font-size: 15px;
    display: inline-flex; align-items: center; gap: 8px;
    box-shadow: 0 6px 24px rgba(255,107,53,0.5);
    transition: var(--transition);
}
.btn-hero-primary:hover { background: var(--accent-dark); transform: translateY(-3px); color: var(--white); }
.btn-hero-secondary {
    background: rgba(255,255,255,0.15); color: var(--white);
    padding: 14px 28px; border-radius: 40px; font-weight: 600; font-size: 15px;
    display: inline-flex; align-items: center; gap: 8px;
    border: 2px solid rgba(255,255,255,0.4); backdrop-filter: blur(8px);
    transition: var(--transition);
}
.btn-hero-secondary:hover { background: var(--white); color: var(--primary); border-color: var(--white); }
.hero-features {
    display: flex; gap: 20px; margin-top: 40px; flex-wrap: wrap;
}
.hero-feat {
    display: flex; align-items: center; gap: 8px;
    color: rgba(255,255,255,0.85); font-size: 14px; font-weight: 500;
}
.hero-feat i { color: var(--accent); font-size: 16px; }
/* Slider controls */
.carousel-control-prev, .carousel-control-next {
    width: 48px; height: 48px;
    background: rgba(255,255,255,0.15); border-radius: 50%;
    top: 50%; transform: translateY(-50%);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.2);
    opacity: 1; transition: var(--transition);
}
.carousel-control-prev:hover, .carousel-control-next:hover { background: var(--accent); }
.carousel-control-prev { left: 20px; }
.carousel-control-next { right: 20px; }
.carousel-indicators button {
    width: 8px; height: 8px; border-radius: 50%; border: 2px solid white;
    background: transparent; opacity: 0.6;
}
.carousel-indicators button.active { background: var(--accent); border-color: var(--accent); opacity: 1; }

/* ===== SECTION BAŞLIKLARI ===== */
.section-header { margin-bottom: 48px; }
.section-label {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--accent); font-size: 13px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 12px;
}
.section-label::before, .section-label::after {
    content: ''; width: 30px; height: 2px; background: var(--accent); border-radius: 2px;
}
.section-title {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 800; color: var(--primary); line-height: 1.25;
}
.section-title span { color: var(--accent); }
.section-desc { color: var(--text-light); font-size: 17px; max-width: 600px; margin: 12px auto 0; }

/* ===== GENEL BUTONLAR ===== */
.btn-primary-custom {
    background: var(--accent); color: var(--white);
    padding: 12px 28px; border-radius: 30px; font-weight: 700; font-size: 15px;
    display: inline-flex; align-items: center; gap: 8px;
    box-shadow: 0 4px 15px rgba(255,107,53,0.35);
    transition: var(--transition); border: none; cursor: pointer;
}
.btn-primary-custom:hover { background: var(--accent-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,107,53,0.5); }
.btn-outline-custom {
    background: transparent; color: var(--primary);
    padding: 12px 28px; border-radius: 30px; font-weight: 700; font-size: 15px;
    display: inline-flex; align-items: center; gap: 8px;
    border: 2px solid var(--primary); transition: var(--transition); cursor: pointer;
}
.btn-outline-custom:hover { background: var(--primary); color: var(--white); }
.btn-accent-outline {
    background: transparent; color: var(--accent);
    padding: 11px 26px; border-radius: 30px; font-weight: 700; font-size: 15px;
    display: inline-flex; align-items: center; gap: 8px;
    border: 2px solid var(--accent); transition: var(--transition);
}
.btn-accent-outline:hover { background: var(--accent); color: var(--white); }

/* ===== SAYAÇLAR ===== */
.sayaclar-section { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); padding: 64px 0; }
.sayac-item { text-align: center; padding: 20px; }
.sayac-number {
    font-size: 3rem; font-weight: 800; color: var(--accent); line-height: 1;
    display: block; margin-bottom: 8px;
}
.sayac-label { color: rgba(255,255,255,0.8); font-size: 15px; font-weight: 500; }
.sayac-icon { font-size: 2rem; color: rgba(255,255,255,0.2); margin-bottom: 12px; display: block; }

/* ===== HİZMETLER ===== */
.hizmet-card {
    background: var(--white); border-radius: var(--radius-lg);
    box-shadow: var(--shadow); border: 1px solid var(--border);
    overflow: hidden; transition: var(--transition);
    height: 100%; display: flex; flex-direction: column;
}
.hizmet-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--accent); }
.hizmet-card-img {
    position: relative; height: 220px; overflow: hidden;
}
.hizmet-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.hizmet-card:hover .hizmet-card-img img { transform: scale(1.08); }
.hizmet-card-img-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(26,39,68,0.7) 0%, transparent 60%);
}
.hizmet-card-ikon {
    position: absolute; top: 16px; right: 16px;
    width: 48px; height: 48px; border-radius: 12px;
    background: var(--accent); color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
}
.hizmet-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.hizmet-card-title { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.hizmet-card-desc { color: var(--text-light); font-size: 14px; flex: 1; line-height: 1.65; }
.hizmet-card-footer { padding: 16px 24px; border-top: 1px solid var(--border); }
.hizmet-card-link {
    color: var(--accent); font-weight: 700; font-size: 14px;
    display: flex; align-items: center; gap: 6px;
    transition: var(--transition);
}
.hizmet-card-link:hover { gap: 10px; color: var(--accent-dark); }

/* ===== BÖLGELER ===== */
.bolge-card {
    background: var(--white); border-radius: var(--radius-lg);
    box-shadow: var(--shadow); border: 1px solid var(--border);
    overflow: hidden; transition: var(--transition); height: 100%;
}
.bolge-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.bolge-card-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 20px 24px; display: flex; align-items: center; gap: 12px;
}
.bolge-card-icon {
    width: 44px; height: 44px; border-radius: 10px;
    background: var(--accent); color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; flex-shrink: 0;
}
.bolge-card-sehir { color: var(--white); font-size: 17px; font-weight: 700; }
.bolge-card-sehir small { display: block; color: rgba(255,255,255,0.6); font-size: 12px; font-weight: 400; }
.bolge-card-ilceler { padding: 16px 20px; }
.bolge-ilce-item {
    display: inline-flex; align-items: center; gap: 4px;
    background: var(--bg); color: var(--text);
    padding: 5px 12px; border-radius: 20px; font-size: 13px;
    margin: 3px; transition: var(--transition); border: 1px solid var(--border);
}
.bolge-ilce-item:hover { background: var(--accent); color: var(--white); border-color: var(--accent); transform: translateY(-2px); }
.bolge-ilce-item i { font-size: 10px; color: var(--accent-light); }
.bolge-ilce-item:hover i { color: rgba(255,255,255,0.7); }

/* ===== BLOG ===== */
.blog-card {
    background: var(--white); border-radius: var(--radius-lg);
    box-shadow: var(--shadow); border: 1px solid var(--border);
    overflow: hidden; transition: var(--transition); height: 100%;
    display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-card-img { position: relative; height: 200px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-kat {
    position: absolute; top: 14px; left: 14px;
    background: var(--accent); color: var(--white);
    font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 20px;
    text-transform: uppercase; letter-spacing: 0.5px;
}
.blog-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.blog-card-meta { display: flex; gap: 12px; margin-bottom: 12px; flex-wrap: wrap; }
.blog-card-meta span { color: var(--text-muted); font-size: 13px; display: flex; align-items: center; gap: 4px; }
.blog-card-meta i { color: var(--accent); }
.blog-card-title { font-size: 17px; font-weight: 700; margin-bottom: 10px; line-height: 1.4; }
.blog-card-title a { color: var(--primary); }
.blog-card-title a:hover { color: var(--accent); }
.blog-card-desc { color: var(--text-light); font-size: 14px; flex: 1; }
.blog-card-footer { padding: 14px 20px; border-top: 1px solid var(--border); }
.blog-read-more { color: var(--accent); font-weight: 700; font-size: 14px; display: flex; align-items: center; gap: 6px; }
.blog-read-more:hover { gap: 10px; color: var(--accent-dark); }

/* ===== SSS ===== */
.sss-section { background: var(--bg); }
.sss-accordion .accordion-item {
    border: 1px solid var(--border); border-radius: var(--radius) !important;
    margin-bottom: 10px; overflow: hidden;
}
.sss-accordion .accordion-button {
    font-weight: 700; color: var(--primary); font-size: 15px;
    background: var(--white); padding: 18px 22px;
    border-radius: var(--radius) !important;
}
.sss-accordion .accordion-button:not(.collapsed) {
    background: var(--primary); color: var(--white); box-shadow: none;
}
.sss-accordion .accordion-button:not(.collapsed)::after { filter: brightness(0) invert(1); }
.sss-accordion .accordion-button:focus { box-shadow: none; }
.sss-accordion .accordion-body { padding: 18px 22px; color: var(--text-light); font-size: 15px; line-height: 1.7; }

/* ===== YORUMLAR ===== */
.yorum-card {
    background: var(--white); border-radius: var(--radius-lg);
    box-shadow: var(--shadow); border: 1px solid var(--border);
    padding: 28px; height: 100%; position: relative; overflow: hidden;
}
.yorum-card::before {
    content: '\201C'; font-size: 80px; color: rgba(255,107,53,0.08);
    position: absolute; top: -10px; right: 20px;
    font-family: serif; line-height: 1;
}
.yorum-stars { color: #f59e0b; font-size: 16px; margin-bottom: 14px; }
.yorum-text { color: var(--text-light); font-size: 15px; line-height: 1.8; margin-bottom: 20px; }
.yorum-author { display: flex; align-items: center; gap: 12px; }
.yorum-avatar {
    width: 48px; height: 48px; border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white); font-size: 18px; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.yorum-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.yorum-name { font-weight: 700; color: var(--primary); font-size: 15px; }
.yorum-city { color: var(--text-muted); font-size: 13px; display: flex; align-items: center; gap: 4px; }
.yorum-city i { color: var(--accent); }

/* ===== FILO / ARAÇLAR ===== */
.filo-card {
    background: var(--white); border-radius: var(--radius-lg);
    box-shadow: var(--shadow); overflow: hidden; transition: var(--transition);
}
.filo-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.filo-card img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.4s; }
.filo-card:hover img { transform: scale(1.05); }
.filo-card-body { padding: 18px; }
.filo-card-title { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.filo-card-desc { color: var(--text-light); font-size: 13px; }

/* ===== REFERANSLAR ===== */
.referans-logo {
    background: var(--white); border-radius: var(--radius);
    box-shadow: var(--shadow); border: 1px solid var(--border);
    padding: 20px 24px; display: flex; align-items: center; justify-content: center;
    transition: var(--transition); height: 90px;
    filter: grayscale(1) opacity(0.6);
}
.referans-logo:hover { filter: grayscale(0) opacity(1); transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.referans-logo img { max-height: 50px; max-width: 100%; object-fit: contain; }

/* ===== CTA BANNER ===== */
.cta-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 64px 0; position: relative; overflow: hidden;
}
.cta-banner::before {
    content: ''; position: absolute; top: -50%; right: -10%;
    width: 400px; height: 400px; border-radius: 50%;
    background: rgba(255,107,53,0.1); pointer-events: none;
}
.cta-banner::after {
    content: ''; position: absolute; bottom: -40%; left: -5%;
    width: 300px; height: 300px; border-radius: 50%;
    background: rgba(255,107,53,0.06); pointer-events: none;
}
.cta-title { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; color: var(--white); line-height: 1.25; }
.cta-title span { color: var(--accent); }
.cta-desc { color: rgba(255,255,255,0.75); font-size: 17px; }
.btn-cta-primary {
    background: var(--accent); color: var(--white);
    padding: 14px 32px; border-radius: 40px; font-weight: 700; font-size: 16px;
    display: inline-flex; align-items: center; gap: 8px;
    transition: var(--transition);
    box-shadow: 0 6px 24px rgba(255,107,53,0.4);
}
.btn-cta-primary:hover { background: var(--accent-dark); transform: translateY(-3px); color: var(--white); }
.btn-cta-secondary {
    background: rgba(255,255,255,0.12); color: var(--white);
    padding: 14px 32px; border-radius: 40px; font-weight: 700; font-size: 16px;
    display: inline-flex; align-items: center; gap: 8px;
    border: 2px solid rgba(255,255,255,0.3); backdrop-filter: blur(8px);
    transition: var(--transition);
}
.btn-cta-secondary:hover { background: var(--white); color: var(--primary); }

/* ===== PAGE BANNER ===== */
.page-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 64px 0; position: relative; overflow: hidden;
}
.page-banner-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: 0.15;
}
.page-banner h1 { color: var(--white); font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 800; }
.page-banner p { color: rgba(255,255,255,0.75); font-size: 17px; margin-bottom: 0; }
.breadcrumb { background: none; padding: 0; margin: 0; }
.breadcrumb-item { color: rgba(255,255,255,0.8); font-size: 14px; }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.6); }
.breadcrumb-item a { color: rgba(255,255,255,0.75); }
.breadcrumb-item a:hover { color: var(--accent); }
.breadcrumb-item.active { color: var(--accent); }

/* ===== FİLO BANNER ===== */
.filo-section-inner {
    display: grid; gap: 24px;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

/* ===== ÖZELLIK KUTUSU (WHY US) ===== */
.ozellik-card {
    background: var(--white); border-radius: var(--radius-lg);
    padding: 32px 24px; box-shadow: var(--shadow); border: 1px solid var(--border);
    transition: var(--transition); text-align: center; height: 100%;
}
.ozellik-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--accent); }
.ozellik-icon {
    width: 72px; height: 72px; border-radius: 20px; margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(255,107,53,0.15), rgba(255,107,53,0.05));
    color: var(--accent); font-size: 28px;
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
}
.ozellik-card:hover .ozellik-icon { background: var(--accent); color: var(--white); }
.ozellik-title { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.ozellik-desc { color: var(--text-light); font-size: 14px; line-height: 1.7; }

/* ===== FORM ===== */
.form-control, .form-select {
    border: 1.5px solid var(--border); border-radius: 10px;
    padding: 12px 16px; font-size: 15px; color: var(--text);
    transition: var(--transition); background: var(--white);
}
.form-control:focus, .form-select:focus {
    border-color: var(--accent); box-shadow: 0 0 0 3px rgba(255,107,53,0.1); outline: none;
}
.form-label { font-weight: 600; color: var(--primary); font-size: 14px; margin-bottom: 6px; }
.form-group { margin-bottom: 18px; }

/* İletişim sidebar */
.iletisim-sidebar .contact-info-item {
    display: flex; gap: 16px; padding: 20px 0;
    border-bottom: 1px solid var(--border);
}
.iletisim-sidebar .contact-info-item:last-child { border-bottom: none; }
.contact-icon {
    width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
    background: rgba(255,107,53,0.1); color: var(--accent);
    display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.contact-icon-text h6 { font-size: 13px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
.contact-icon-text p, .contact-icon-text a { font-size: 16px; font-weight: 600; color: var(--primary); margin: 0; }

/* ===== FOOTER ===== */
#main-footer {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.7);
    padding: 64px 0 0;
}
.footer-brand { margin-bottom: 24px; }
.footer-brand img { height: 48px; margin-bottom: 16px; }
.footer-brand-text { font-size: 22px; font-weight: 800; color: var(--white); }
.footer-brand-text span { color: var(--accent); }
.footer-desc { font-size: 14px; line-height: 1.8; color: rgba(255,255,255,0.6); max-width: 280px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social-link {
    width: 38px; height: 38px; border-radius: 10px;
    background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7);
    display: flex; align-items: center; justify-content: center; font-size: 16px;
    transition: var(--transition);
}
.footer-social-link:hover { background: var(--accent); color: var(--white); transform: translateY(-3px); }
.footer-title { color: var(--white); font-size: 16px; font-weight: 700; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid var(--accent); display: inline-block; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links li a {
    color: rgba(255,255,255,0.65); font-size: 14px;
    display: flex; align-items: center; gap: 6px; transition: var(--transition);
}
.footer-links li a::before { content: '\F285'; font-family: 'Bootstrap-Icons'; font-size: 10px; color: var(--accent); }
.footer-links li a:hover { color: var(--white); padding-left: 4px; }
.footer-contact-item {
    display: flex; gap: 12px; margin-bottom: 16px; align-items: flex-start;
}
.footer-contact-icon {
    width: 36px; height: 36px; border-radius: 8px; flex-shrink: 0;
    background: rgba(255,107,53,0.15); color: var(--accent);
    display: flex; align-items: center; justify-content: center; font-size: 16px;
}
.footer-contact-text { font-size: 14px; color: rgba(255,255,255,0.7); }
.footer-contact-text strong { display: block; color: rgba(255,255,255,0.9); font-size: 13px; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 2px; }
.footer-contact-text a { color: rgba(255,255,255,0.85); }
.footer-contact-text a:hover { color: var(--accent); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0; margin-top: 48px;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { margin: 0; font-size: 13px; color: rgba(255,255,255,0.75); }
.footer-bottom a { color: var(--accent); font-weight: 600; }

/* ===== FLOATING BUTTONS ===== */
.floating-actions {
    position: fixed; right: 20px; bottom: 24px; z-index: 888;
    display: flex; flex-direction: column; gap: 10px; align-items: flex-end;
}
.float-btn {
    width: 52px; height: 52px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-size: 22px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    transition: var(--transition); cursor: pointer; text-decoration: none;
}
.float-btn:hover { transform: scale(1.12) translateY(-2px); color: var(--white); }
.float-whatsapp { background: #25D366; box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
.float-phone { background: var(--accent); box-shadow: 0 4px 20px rgba(255,107,53,0.4); }
.float-btn .float-label {
    position: absolute; right: calc(100% + 10px);
    background: var(--primary); color: var(--white);
    padding: 4px 10px; border-radius: 6px; font-size: 12px; font-weight: 600;
    white-space: nowrap; opacity: 0; pointer-events: none; transition: var(--transition);
}
.float-btn:hover .float-label { opacity: 1; }
#backToTop {
    position: fixed; bottom: 24px; left: 20px; z-index: 888;
    width: 44px; height: 44px; border-radius: 10px;
    background: var(--primary); color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; opacity: 0; visibility: hidden; transition: var(--transition);
    cursor: pointer; border: none;
    box-shadow: 0 4px 15px rgba(26,39,68,0.3);
}
#backToTop.visible { opacity: 1; visibility: visible; }
#backToTop:hover { background: var(--accent); transform: translateY(-3px); }

/* ===== SIDEBAR ===== */
.sidebar-card {
    background: var(--white); border-radius: var(--radius-lg);
    box-shadow: var(--shadow); border: 1px solid var(--border);
    overflow: hidden; margin-bottom: 24px;
}
.sidebar-card-header {
    background: var(--primary); color: var(--white);
    padding: 14px 20px; font-size: 15px; font-weight: 700;
    display: flex; align-items: center; gap: 8px;
}
.sidebar-card-header i { color: var(--accent); }
.sidebar-card-body { padding: 18px; }

/* ===== SAYFA LAYOUT ===== */
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 56px 0; }
.bg-alt { background: var(--bg); }

/* ===== HIZMET DETAY ===== */
.hizmet-detay-content h2, .hizmet-detay-content h3 { color: var(--primary); margin-top: 1.5em; }
.hizmet-detay-content ul { padding-left: 1.5rem; }
.hizmet-detay-content ul li { margin-bottom: 8px; color: var(--text-light); }
.hizmet-detay-content ul li::marker { color: var(--accent); }
.hizmet-detay-content p { color: var(--text-light); }
.hizmet-ozellik-item {
    display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--border);
}
.hizmet-ozellik-item:last-child { border-bottom: none; }
.hizmet-ozellik-ikon {
    width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0;
    background: rgba(255,107,53,0.1); color: var(--accent);
    display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.fiyat-badge {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white); padding: 4px 12px; border-radius: 20px; font-size: 14px; font-weight: 700;
}

/* ===== BÖLGE DETAY ===== */
.bolge-ilce-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 12px; }
.bolge-ilce-card {
    background: var(--white); border-radius: var(--radius);
    padding: 14px 16px; border: 1px solid var(--border);
    text-align: center; transition: var(--transition);
    display: flex; align-items: center; gap: 10px;
}
.bolge-ilce-card:hover { border-color: var(--accent); background: rgba(255,107,53,0.05); transform: translateY(-2px); }
.bolge-ilce-card i { color: var(--accent); font-size: 16px; }
.bolge-ilce-card span { font-size: 14px; font-weight: 600; color: var(--primary); }

/* ===== HAKKIMIZDA SAYFA ===== */
.about-img-wrapper { position: relative; }
.about-img-wrapper img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.about-badge {
    position: absolute; bottom: -20px; right: -20px;
    background: var(--accent); color: var(--white);
    padding: 20px; border-radius: var(--radius-lg); text-align: center;
    min-width: 120px; box-shadow: 0 8px 24px rgba(255,107,53,0.4);
}
.about-badge .number { font-size: 2.2rem; font-weight: 800; display: block; line-height: 1; }
.about-badge .label { font-size: 12px; opacity: 0.85; }
.about-check-list { list-style: none; padding: 0; }
.about-check-list li {
    padding: 8px 0; border-bottom: 1px solid var(--border);
    display: flex; align-items: center; gap: 10px; font-size: 15px;
}
.about-check-list li:last-child { border-bottom: none; }
.about-check-list li i { color: var(--accent); font-size: 18px; flex-shrink: 0; }

/* ===== TEKLIF FORM ===== */
.teklif-wrapper {
    background: var(--white); border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg); border: 1px solid var(--border); overflow: hidden;
}
.teklif-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white); padding: 28px 32px;
}

/* ===== 404 ===== */
.not-found-section { min-height: 80vh; display: flex; align-items: center; }
.not-found-code { font-size: 8rem; font-weight: 900; color: var(--accent); line-height: 1; opacity: 0.25; }

/* ===== DEMO MOD ===== */
.demo-bar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 9998;
    background: linear-gradient(90deg, var(--accent), var(--accent-dark));
    color: var(--white); text-align: center; font-size: 13px; font-weight: 600;
    padding: 8px 16px; box-shadow: 0 2px 10px rgba(255,107,53,0.4);
}
.demo-bar a { color: var(--white); text-decoration: underline; }
body.demo-mode { padding-top: 36px; }

/* ===== ANIMASYONLAR ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}
.fade-in-up { animation: fadeInUp 0.6s ease both; }
.fade-in-up-2 { animation: fadeInUp 0.6s ease 0.15s both; }
.fade-in-up-3 { animation: fadeInUp 0.6s ease 0.3s both; }

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .navbar-menu, .navbar-actions .btn-teklif { display: none; }
    .hamburger { display: flex; }
    .section-pad { padding: 56px 0; }
    .hero-slide { min-height: 460px; }
}
@media (max-width: 767px) {
    .topbar-left .topbar-item.topbar-slogan { display: none; }
    .sayac-number { font-size: 2.2rem; }
    .hero-slide { min-height: 380px; }
    .page-banner { padding: 44px 0; }
    .cta-banner { padding: 48px 0; }
    .section-pad { padding: 44px 0; }
    .floating-actions { right: 12px; bottom: 16px; }
}
@media (max-width: 575px) {
    .hero-btns { gap: 8px; }
    .btn-hero-primary, .btn-hero-secondary { padding: 11px 20px; font-size: 14px; }
    #topbar { display: none; }
}
