/* ============================================================
   Kargıpınarı Taksi - Ana CSS
   Renk Paleti: Siyah (#111) + Sarı (#FFC107) + Beyaz
   ============================================================ */

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
    --primary:       #FFC107;
    --primary-dark:  #e6a800;
    --primary-light: #FFD54F;
    --dark:          #111111;
    --dark-2:        #1a1a1a;
    --dark-3:        #222222;
    --dark-4:        #2d2d2d;
    --gray:          #6c757d;
    --gray-light:    #f8f9fa;
    --white:         #ffffff;
    --text:          #333333;
    --text-light:    #666666;
    --border:        #e0e0e0;
    --whatsapp:      #25D366;
    --whatsapp-dark: #1da851;
    --shadow-sm:     0 2px 8px rgba(0,0,0,.08);
    --shadow-md:     0 4px 20px rgba(0,0,0,.12);
    --shadow-lg:     0 8px 40px rgba(0,0,0,.16);
    --shadow-yellow: 0 4px 20px rgba(255,193,7,.3);
    --radius-sm:     6px;
    --radius-md:     12px;
    --radius-lg:     20px;
    --radius-xl:     30px;
    --transition:    all .3s ease;
    --font:          'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font);
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; transition: var(--transition); }

ul { list-style: none; padding: 0; margin: 0; }

h1,h2,h3,h4,h5,h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark);
}

.section-padding { padding: 80px 0; }

/* ============================================================
   TOPBAR
   ============================================================ */
.topbar {
    background: var(--dark);
    padding: 8px 0;
    font-size: .85rem;
    border-bottom: 2px solid var(--primary);
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.topbar-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #ccc;
    transition: var(--transition);
}

.topbar-item:hover { color: var(--primary); }

.topbar-item i { color: var(--primary); font-size: .8rem; }

.topbar-left { display: flex; align-items: center; gap: 20px; }
.topbar-right { display: flex; align-items: center; gap: 16px; }

/* ============================================================
   NAVBAR
   ============================================================ */
.main-navbar {
    background: var(--dark-2) !important;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,193,7,.15);
    transition: var(--transition);
    z-index: 1000;
}

.main-navbar.scrolled {
    padding: 8px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,.4);
}

/* Logo */
.logo-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: var(--primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--dark);
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-name {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -.3px;
}

.logo-sub {
    font-size: .7rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 3px;
}

/* Nav Links */
.main-navbar .nav-link {
    color: #ccc !important;
    font-weight: 500;
    padding: 8px 14px !important;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    font-size: .95rem;
}

.main-navbar .nav-link:hover,
.main-navbar .nav-link.active {
    color: var(--primary) !important;
    background: rgba(255,193,7,.08);
}

.main-navbar .dropdown-menu {
    background: var(--dark-3);
    border: 1px solid rgba(255,193,7,.2);
    border-radius: var(--radius-md);
    padding: 8px;
    min-width: 200px;
    box-shadow: var(--shadow-lg);
    max-height: 80vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.main-navbar .dropdown-item {
    color: #ccc;
    border-radius: var(--radius-sm);
    padding: 8px 12px;
    font-size: .9rem;
    transition: var(--transition);
}

.main-navbar .dropdown-item:hover {
    background: rgba(255,193,7,.1);
    color: var(--primary);
}

.btn-call {
    background: var(--primary) !important;
    color: var(--dark) !important;
    border: none;
    padding: 10px 20px !important;
    border-radius: var(--radius-xl) !important;
    font-size: .9rem !important;
    transition: var(--transition) !important;
}

.btn-call:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-1px);
    box-shadow: var(--shadow-yellow);
}

/* ============================================================
   HERO
   ============================================================ */
.hero-section {
    position: relative;
    background: var(--dark);
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Hero Slider */
.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0,0,0,.75) 0%,
        rgba(0,0,0,.55) 50%,
        rgba(26,18,0,.65) 100%
    );
    z-index: 1;
}

/* Slider Dots */
.hero-slider-dots {
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 8px;
}

.hero-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,.4);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.hero-slider-dot.active {
    background: var(--primary);
    transform: scale(1.3);
}

.min-vh-hero { min-height: 85vh; }

.hero-content { position: relative; z-index: 2; padding: 60px 0; }
.hero-card    { position: relative; z-index: 2; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,193,7,.1);
    border: 1px solid rgba(255,193,7,.3);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: var(--radius-xl);
    font-size: .85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -.5px;
}

.hero-desc {
    font-size: 1.1rem;
    color: #aaa;
    margin-bottom: 28px;
    max-width: 520px;
    line-height: 1.8;
}

.hero-desc strong { color: var(--primary); }

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 36px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ccc;
    font-size: .9rem;
    font-weight: 500;
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; }

.btn-hero-call {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--primary);
    color: var(--dark);
    padding: 14px 28px;
    border-radius: var(--radius-xl);
    font-weight: 700;
    border: none;
    transition: var(--transition);
    box-shadow: var(--shadow-yellow);
}

.btn-hero-call span { display: flex; flex-direction: column; line-height: 1.2; }
.btn-hero-call small { font-size: .7rem; font-weight: 500; opacity: .8; }
.btn-hero-call:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255,193,7,.4); color: var(--dark); }

.btn-hero-whatsapp {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--whatsapp);
    color: var(--white);
    padding: 14px 28px;
    border-radius: var(--radius-xl);
    font-weight: 700;
    border: none;
    transition: var(--transition);
}

.btn-hero-whatsapp span { display: flex; flex-direction: column; line-height: 1.2; }
.btn-hero-whatsapp small { font-size: .7rem; font-weight: 500; opacity: .8; }
.btn-hero-whatsapp:hover { background: var(--whatsapp-dark); transform: translateY(-2px); color: var(--white); }

/* Hero Card */
.hero-card {
    position: relative;
    z-index: 2;
}

.hero-card-inner {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,193,7,.15);
    border-radius: var(--radius-lg);
    padding: 32px;
    backdrop-filter: blur(10px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,193,7,.1);
    border-radius: var(--radius-md);
    padding: 20px 16px;
    transition: var(--transition);
}

.hero-stat:hover { border-color: rgba(255,193,7,.3); background: rgba(255,193,7,.05); }

.hero-stat-icon {
    width: 44px;
    height: 44px;
    background: rgba(255,193,7,.15);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.hero-stat-text { display: flex; flex-direction: column; }
.hero-stat-text strong { font-size: 1.4rem; color: var(--white); line-height: 1; }
.hero-stat-text span { font-size: .75rem; color: #888; margin-top: 2px; }

/* Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255,193,7,.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    animation: bounce 2s infinite;
    cursor: pointer;
    transition: var(--transition);
}

.scroll-indicator:hover { border-color: var(--primary); background: rgba(255,193,7,.1); }

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-badge {
    display: inline-block;
    background: rgba(255,193,7,.1);
    color: var(--primary-dark);
    border: 1px solid rgba(255,193,7,.3);
    padding: 4px 16px;
    border-radius: var(--radius-xl);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -.3px;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.section-header { margin-bottom: 20px; }

/* ============================================================
   HİZMETLER
   ============================================================ */
.services-section { background: var(--white); }

.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
    width: 64px;
    height: 64px;
    background: rgba(255,193,7,.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: var(--dark);
}

.service-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    color: var(--dark);
}

.service-card p {
    color: var(--text-light);
    font-size: .95rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-link {
    color: var(--primary-dark);
    font-weight: 600;
    font-size: .9rem;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: var(--transition);
}

.service-link:hover { gap: 8px; color: var(--primary); }

/* ============================================================
   NEDEN BİZ
   ============================================================ */
.bg-dark-custom { background: var(--dark-2); }

.why-content .section-title { color: var(--white); }

.why-list { margin-top: 28px; display: flex; flex-direction: column; gap: 20px; }

.why-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.why-icon {
    width: 48px;
    height: 48px;
    background: rgba(255,193,7,.1);
    border: 1px solid rgba(255,193,7,.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.why-item:hover .why-icon {
    background: var(--primary);
    color: var(--dark);
}

.why-text h4 { font-size: 1rem; color: var(--white); margin-bottom: 4px; }
.why-text p { font-size: .9rem; color: #888; margin: 0; line-height: 1.6; }

.why-cta-box {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,193,7,.2);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.cta-box-inner { text-align: center; }

.cta-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,193,7,.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    margin: 0 auto 20px;
}

.cta-box-inner h3 { color: var(--white); font-size: 1.5rem; margin-bottom: 10px; }
.cta-box-inner p { color: #888; margin-bottom: 24px; }

.btn-cta-call {
    background: var(--primary) !important;
    color: var(--dark) !important;
    font-weight: 700;
    border: none;
    border-radius: var(--radius-xl) !important;
    transition: var(--transition) !important;
}

.btn-cta-call:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-yellow);
}

.btn-whatsapp {
    background: var(--whatsapp) !important;
    color: var(--white) !important;
    border: none;
    border-radius: var(--radius-xl) !important;
    font-weight: 700;
    transition: var(--transition) !important;
}

.btn-whatsapp:hover {
    background: var(--whatsapp-dark) !important;
    transform: translateY(-2px);
    color: var(--white) !important;
}

.cta-address { color: #666; }

/* ============================================================
   HİZMET BÖLGELERİ
   ============================================================ */
.area-card {
    display: block;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: var(--transition);
    overflow: hidden;
}

.area-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.area-card-inner {
    padding: 20px 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.area-card-inner i {
    font-size: 1.4rem;
    color: var(--primary);
}

.area-card-inner span {
    font-weight: 600;
    font-size: .9rem;
    color: var(--dark);
}

.area-card-inner small {
    font-size: .75rem;
    color: var(--gray);
}

.area-card:hover .area-card-inner span { color: var(--primary-dark); }

/* ============================================================
   MÜŞTERİ YORUMLARI
   ============================================================ */
.bg-light-custom { background: var(--gray-light); }

.overall-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 12px;
}

.rating-stars { color: var(--primary); font-size: 1.1rem; }
.rating-score { font-size: 1.4rem; font-weight: 800; color: var(--dark); }
.rating-source { font-size: .85rem; color: var(--gray); }

.reviews-slider { overflow: hidden; margin-top: 32px; }

.reviews-track {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.review-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: var(--transition);
}

.review-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.reviewer-avatar {
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.reviewer-info strong { display: block; font-size: .95rem; color: var(--dark); }
.review-stars { font-size: .8rem; margin-top: 2px; }
.review-text { font-size: .9rem; color: var(--text-light); line-height: 1.7; margin: 0; }

/* ============================================================
   HARİTA
   ============================================================ */
.map-wrapper { position: relative; }

.map-overlay-card {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    max-width: 280px;
}

.map-card-inner { padding: 20px; }
.map-card-inner h4 { font-size: 1rem; margin-bottom: 8px; }
.map-card-inner p { font-size: .82rem; color: var(--text-light); margin-bottom: 12px; line-height: 1.5; }

/* ============================================================
   SSS
   ============================================================ */
.faq-intro .section-title { color: var(--dark); }

.faq-accordion .faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-md) !important;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-accordion .accordion-button {
    background: var(--white);
    color: var(--dark);
    font-weight: 600;
    font-size: .95rem;
    padding: 18px 20px;
    border: none;
    box-shadow: none !important;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: rgba(255,193,7,.06);
    color: var(--primary-dark);
}

.faq-accordion .accordion-button::after {
    filter: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FFC107'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-accordion .accordion-body {
    font-size: .92rem;
    color: var(--text-light);
    line-height: 1.8;
    padding: 16px 20px 20px;
    border-top: 1px solid var(--border);
}

/* ============================================================
   BLOG KARTI
   ============================================================ */
.blog-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 100%;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.blog-card-img-wrap { overflow: hidden; aspect-ratio: 16/9; }

.blog-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.blog-card:hover .blog-card-img { transform: scale(1.05); }

.blog-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.blog-category {
    background: rgba(255,193,7,.1);
    color: var(--primary-dark);
    padding: 3px 10px;
    border-radius: var(--radius-xl);
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.blog-date { font-size: .8rem; color: var(--gray); }

.blog-card-title {
    font-size: 1.05rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-card-title a { color: var(--dark); }
.blog-card-title a:hover { color: var(--primary-dark); }

.blog-card-excerpt {
    font-size: .88rem;
    color: var(--text-light);
    line-height: 1.7;
    flex: 1;
    margin-bottom: 16px;
}

.blog-read-more {
    color: var(--primary-dark);
    font-weight: 600;
    font-size: .88rem;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: var(--transition);
    margin-top: auto;
}

.blog-read-more:hover { gap: 8px; color: var(--primary); }

/* ============================================================
   CTA BÖLÜMÜ
   ============================================================ */
.cta-section {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-3) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,193,7,.05) 0%, transparent 60%);
}

.cta-inner { position: relative; z-index: 1; }

.cta-icon-big {
    width: 100px;
    height: 100px;
    background: rgba(255,193,7,.1);
    border: 2px solid rgba(255,193,7,.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary);
    margin: 0 auto 24px;
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255,193,7,.4); }
    50%       { box-shadow: 0 0 0 16px rgba(255,193,7,0); }
}

.cta-inner h2 { font-size: 2rem; color: var(--white); margin-bottom: 12px; }
.cta-inner p  { color: #aaa; margin-bottom: 28px; font-size: 1.05rem; }
.cta-buttons  { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--dark); color: #ccc; }

.footer-top { padding: 60px 0 40px; border-bottom: 1px solid rgba(255,255,255,.06); }

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-desc { font-size: .9rem; color: #888; line-height: 1.8; margin-bottom: 20px; }

.footer-social { display: flex; gap: 10px; }

.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: .9rem;
    transition: var(--transition);
}

.footer-social a:hover { background: var(--primary); color: var(--dark); border-color: var(--primary); }

.footer-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
}

.footer-links li { margin-bottom: 8px; }

.footer-links a {
    color: #888;
    font-size: .88rem;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.footer-links a i { font-size: .7rem; color: var(--primary); }
.footer-links a:hover { color: var(--primary); padding-left: 4px; }

.footer-contact li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: .88rem;
    color: #888;
}

.footer-contact i { color: var(--primary); margin-top: 3px; flex-shrink: 0; width: 14px; }
.footer-contact a { color: #888; }
.footer-contact a:hover { color: var(--primary); }

.footer-bottom {
    padding: 20px 0;
    background: rgba(0,0,0,.3);
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copy { font-size: .85rem; color: #666; margin: 0; }

.footer-legal { display: flex; gap: 12px; align-items: center; font-size: .82rem; }
.footer-legal a { color: #666; }
.footer-legal a:hover { color: var(--primary); }
.footer-legal span { color: #444; }

/* ============================================================
   WHATSAPP & PHONE FLOAT
   ============================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: var(--whatsapp);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37,211,102,.4);
    transition: var(--transition);
    text-decoration: none;
}

.whatsapp-float:hover {
    background: var(--whatsapp-dark);
    transform: scale(1.1);
    color: var(--white);
}

.whatsapp-tooltip {
    position: absolute;
    right: 66px;
    background: var(--dark);
    color: var(--white);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-size: .8rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

.phone-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: var(--primary);
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    z-index: 999;
    box-shadow: var(--shadow-yellow);
    transition: var(--transition);
    animation: pulse 3s infinite;
}

.phone-float:hover { background: var(--primary-dark); transform: scale(1.1); color: var(--dark); }

/* Konum Paylaşma Butonu */
.location-float {
    position: fixed;
    bottom: 160px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #4285F4;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(66,133,244,.4);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.location-float:hover {
    background: #3367d6;
    transform: scale(1.1);
    color: var(--white);
}

.location-tooltip {
    position: absolute;
    right: 66px;
    background: var(--dark);
    color: var(--white);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-size: .8rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.location-float:hover .location-tooltip { opacity: 1; }

@media (max-width: 575.98px) {
    .location-float { bottom: 148px; right: 16px; width: 48px; height: 48px; font-size: 1.2rem; }
}

/* ============================================================
   TOPBAR
   ============================================================ */
.topbar { z-index: 1001; position: relative; }

/* ============================================================
   BLOG SAYFASI
   ============================================================ */
.blog-hero {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-3) 100%);
    padding: 60px 0;
    border-bottom: 3px solid var(--primary);
}

.blog-hero h1 { color: var(--white); font-size: 2.2rem; margin-bottom: 8px; }
.blog-hero p  { color: #888; }

.blog-sidebar { position: sticky; top: 90px; }

@media (max-width: 991.98px) {
    .blog-sidebar { position: static; top: auto; }
}

.sidebar-widget {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 24px;
}

.sidebar-widget-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
}

.sidebar-category-list li { margin-bottom: 8px; }

.sidebar-category-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--text-light);
    font-size: .9rem;
    padding: 6px 0;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.sidebar-category-list a:hover { color: var(--primary-dark); padding-left: 4px; }

.sidebar-category-list .count {
    background: rgba(255,193,7,.1);
    color: var(--primary-dark);
    padding: 2px 8px;
    border-radius: var(--radius-xl);
    font-size: .75rem;
    font-weight: 700;
}

.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }

.tag-cloud a {
    background: var(--gray-light);
    color: var(--text-light);
    padding: 4px 12px;
    border-radius: var(--radius-xl);
    font-size: .8rem;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.tag-cloud a:hover { background: var(--primary); color: var(--dark); border-color: var(--primary); }

/* ============================================================
   BLOG DETAY
   ============================================================ */
.post-hero {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-3) 100%);
    padding: 50px 0 40px;
}

.post-hero h1 { color: var(--white); font-size: clamp(1.6rem, 3vw, 2.2rem); line-height: 1.3; }

.post-meta { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 16px; }

.post-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #888;
    font-size: .85rem;
}

.post-meta-item i { color: var(--primary); }
.post-meta-item a { color: #888; }
.post-meta-item a:hover { color: var(--primary); }

.post-featured-img {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    margin-bottom: 32px;
}

.post-content {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text);
}

.post-content h2 { font-size: 1.5rem; margin: 32px 0 16px; color: var(--dark); }
.post-content h3 { font-size: 1.25rem; margin: 28px 0 12px; color: var(--dark); }
.post-content p  { margin-bottom: 20px; }
.post-content ul, .post-content ol { margin: 0 0 20px 24px; }
.post-content li { margin-bottom: 8px; }
.post-content a  { color: var(--primary-dark); text-decoration: underline; }
.post-content a:hover { color: var(--primary); }
.post-content blockquote {
    border-left: 4px solid var(--primary);
    padding: 16px 20px;
    background: rgba(255,193,7,.05);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 24px 0;
    font-style: italic;
    color: var(--text-light);
}

.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    margin: 20px 0;
    display: block;
}

.post-content table {
    width: 100%;
    overflow-x: auto;
    display: block;
}

.post-content pre {
    overflow-x: auto;
    white-space: pre-wrap;
    word-break: break-word;
}

.post-content iframe,
.post-content video,
.post-content embed {
    max-width: 100%;
}

.post-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 32px; }

.post-tag {
    background: var(--gray-light);
    color: var(--text-light);
    padding: 4px 14px;
    border-radius: var(--radius-xl);
    font-size: .82rem;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.post-tag:hover { background: var(--primary); color: var(--dark); border-color: var(--primary); }

/* ============================================================
   YORUMLAR
   ============================================================ */
.comments-section { margin-top: 48px; }
.comments-title { font-size: 1.3rem; margin-bottom: 24px; padding-bottom: 12px; border-bottom: 2px solid var(--border); }

.comment-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.comment-avatar {
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    flex-shrink: 0;
}

.comment-body { flex: 1; min-width: 0; }
.comment-author { font-weight: 700; font-size: .95rem; }
.comment-date { font-size: .8rem; color: var(--gray); margin-left: 8px; }
.comment-text { font-size: .9rem; color: var(--text-light); margin-top: 6px; line-height: 1.7; word-break: break-word; }

@media (max-width: 480px) {
    .comment-item { flex-direction: column; gap: 10px; }
    .comment-avatar { width: 36px; height: 36px; font-size: .85rem; }
}

.comment-form .form-control {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-size: .95rem;
    transition: var(--transition);
}

.comment-form .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255,193,7,.15);
}

/* ============================================================
   HİZMET BÖLGESİ SAYFASI
   ============================================================ */
.area-hero {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-3) 100%);
    padding: 60px 0;
    border-bottom: 3px solid var(--primary);
}

.area-hero h1 { color: var(--white); font-size: clamp(1.8rem, 3.5vw, 2.5rem); }
.area-hero p  { color: #888; margin-top: 10px; }

.area-content { font-size: 1rem; line-height: 1.9; color: var(--text); }
.area-content h2 { font-size: 1.5rem; margin: 32px 0 16px; }
.area-content h3 { font-size: 1.2rem; margin: 24px 0 12px; }
.area-content p  { margin-bottom: 18px; }
.area-content ul { margin: 0 0 18px 20px; }
.area-content li { margin-bottom: 6px; }

/* ============================================================
   ADMIN PANELİ
   ============================================================ */
.admin-body { background: #f0f2f5; }

.admin-sidebar {
    width: 260px;
    background: var(--dark);
    min-height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    transition: var(--transition);
    overflow-y: auto;
}

.admin-sidebar-logo {
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255,255,255,.06);
    display: flex;
    align-items: center;
    gap: 10px;
}

.admin-sidebar-logo .logo-icon { width: 36px; height: 36px; font-size: 1rem; }
.admin-sidebar-logo .logo-name { font-size: .95rem; }
.admin-sidebar-logo .logo-sub  { font-size: .6rem; }

.admin-nav { padding: 16px 0; }

.admin-nav-section {
    padding: 8px 24px 4px;
    font-size: .7rem;
    font-weight: 700;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.admin-nav-item a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    color: #888;
    font-size: .9rem;
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.admin-nav-item a:hover,
.admin-nav-item a.active {
    color: var(--primary);
    background: rgba(255,193,7,.06);
    border-left-color: var(--primary);
}

.admin-nav-item a i { width: 18px; text-align: center; }

.admin-main {
    margin-left: 260px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.admin-topbar {
    background: var(--white);
    padding: 14px 28px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 99;
    box-shadow: var(--shadow-sm);
}

.admin-topbar-title { font-size: 1.1rem; font-weight: 700; color: var(--dark); }

.admin-user { display: flex; align-items: center; gap: 10px; }
.admin-user-name { font-size: .9rem; font-weight: 600; color: var(--dark); }

.admin-content { padding: 28px; flex: 1; }

.admin-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 24px;
}

.admin-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 8px;
}

.admin-card-title i { color: var(--primary); }

.stat-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: var(--transition);
}

.stat-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.stat-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.stat-icon.yellow { background: rgba(255,193,7,.1); color: var(--primary); }
.stat-icon.blue   { background: rgba(13,110,253,.1); color: #0d6efd; }
.stat-icon.green  { background: rgba(25,135,84,.1);  color: #198754; }
.stat-icon.red    { background: rgba(220,53,69,.1);  color: #dc3545; }

.stat-value { font-size: 1.8rem; font-weight: 800; color: var(--dark); line-height: 1; }
.stat-label { font-size: .85rem; color: var(--gray); margin-top: 4px; }

/* Admin Tablo */
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th {
    background: var(--gray-light);
    padding: 12px 16px;
    font-size: .82rem;
    font-weight: 700;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: .5px;
    border-bottom: 2px solid var(--border);
    text-align: left;
}

.admin-table td {
    padding: 14px 16px;
    font-size: .9rem;
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
}

.admin-table tr:hover td { background: rgba(255,193,7,.03); }

.badge-published { background: rgba(25,135,84,.1); color: #198754; padding: 3px 10px; border-radius: var(--radius-xl); font-size: .75rem; font-weight: 700; }
.badge-draft     { background: rgba(108,117,125,.1); color: #6c757d; padding: 3px 10px; border-radius: var(--radius-xl); font-size: .75rem; font-weight: 700; }
.badge-pending   { background: rgba(255,193,7,.1); color: #856404; padding: 3px 10px; border-radius: var(--radius-xl); font-size: .75rem; font-weight: 700; }
.badge-approved  { background: rgba(25,135,84,.1); color: #198754; padding: 3px 10px; border-radius: var(--radius-xl); font-size: .75rem; font-weight: 700; }
.badge-spam      { background: rgba(220,53,69,.1); color: #dc3545; padding: 3px 10px; border-radius: var(--radius-xl); font-size: .75rem; font-weight: 700; }

/* Admin Form */
.admin-form .form-label { font-weight: 600; font-size: .9rem; color: var(--dark); margin-bottom: 6px; }

.admin-form .form-control,
.admin-form .form-select {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    font-size: .95rem;
    transition: var(--transition);
}

.admin-form .form-control:focus,
.admin-form .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255,193,7,.15);
}

/* Admin Login */
.admin-login-page {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-3) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.admin-login-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    width: 100%;
    max-width: 420px;
    box-shadow: var(--shadow-lg);
}

.admin-login-logo { text-align: center; margin-bottom: 32px; }
.admin-login-logo .logo-icon { width: 64px; height: 64px; font-size: 1.8rem; margin: 0 auto 12px; }
.admin-login-logo h2 { font-size: 1.4rem; color: var(--dark); }
.admin-login-logo p  { font-size: .85rem; color: var(--gray); }

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination-nav { margin-top: 40px; }

.pagination { justify-content: center; gap: 4px; }

.page-link {
    border: 1px solid var(--border);
    color: var(--text);
    border-radius: var(--radius-sm) !important;
    padding: 8px 14px;
    font-size: .9rem;
    transition: var(--transition);
}

.page-link:hover { background: var(--primary); color: var(--dark); border-color: var(--primary); }

.page-item.active .page-link {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--dark);
    font-weight: 700;
}

.page-item.disabled .page-link { color: #ccc; }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb { background: none; padding: 0; margin: 0; font-size: .85rem; }
.breadcrumb-item + .breadcrumb-item::before { color: #888; }
.breadcrumb-item a { color: #888; }
.breadcrumb-item a:hover { color: var(--primary); }
.breadcrumb-item.active { color: var(--primary); }

/* ============================================================
   HATA SAYFALARI
   ============================================================ */
.error-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.error-code { font-size: 8rem; font-weight: 900; color: var(--primary); line-height: 1; }
.error-title { font-size: 1.8rem; margin: 16px 0 12px; }
.error-desc { color: var(--text-light); margin-bottom: 28px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
/* ============================================================
   RESPONSIVE - Tablet (≤991px)
   ============================================================ */
@media (max-width: 991.98px) {
    /* Admin sidebar */
    .admin-sidebar { transform: translateX(-100%); }
    .admin-sidebar.open { transform: translateX(0); }
    .admin-main { margin-left: 0; }
    .admin-content { padding: 20px 16px; }

    /* Hero */
    .hero-section { min-height: auto; }
    .min-vh-hero { min-height: auto; }
    .hero-content { padding: 50px 0 30px; }

    /* Harita */
    .map-overlay-card { display: none; }

    /* CTA kutusu */
    .why-cta-box { padding: 28px 20px; }

    /* Navbar mobil menü açıkken arka plan */
    .main-navbar .navbar-collapse {
        background: var(--dark-2);
        padding: 12px 16px 20px;
        border-top: 1px solid rgba(255,255,255,.08);
        border-radius: 0 0 var(--radius-md) var(--radius-md);
    }
    .main-navbar .nav-link { padding: 10px 4px !important; border-bottom: 1px solid rgba(255,255,255,.06); }
    .main-navbar .nav-link:last-child { border-bottom: none; }
    .main-navbar .dropdown-menu { position: static !important; background: var(--dark-3); border: none; box-shadow: none; padding-left: 12px; }

    /* Blog liste grid */
    .blog-grid { grid-template-columns: repeat(2, 1fr); }

    /* Post içerik */
    .post-content h2 { font-size: 1.4rem; }
    .post-content h3 { font-size: 1.2rem; }

    /* Hizmet bölgeleri */
    .region-grid { grid-template-columns: repeat(2, 1fr); }

    /* İletişim formu */
    .contact-info-grid { grid-template-columns: 1fr; }

    /* Tablo overflow */
    .table-responsive-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
}

/* ============================================================
   RESPONSIVE - Mobil (≤767px)
   ============================================================ */
@media (max-width: 767.98px) {
    .section-padding { padding: 48px 0; }

    /* Topbar */
    .topbar-item:not(:first-child) { display: none; }

    /* Hero */
    .hero-title { font-size: 1.85rem; line-height: 1.25; }
    .hero-subtitle { font-size: 1rem; }
    .hero-cta { flex-direction: column; gap: 12px; }
    .btn-hero-call, .btn-hero-whatsapp { width: 100%; justify-content: center; font-size: .95rem; }

    /* CTA butonları */
    .cta-buttons { flex-direction: column; align-items: center; gap: 12px; }
    .cta-buttons .btn { width: 100%; max-width: 320px; }

    /* Footer */
    .footer-bottom-inner { flex-direction: column; text-align: center; gap: 8px; }
    .footer-col { margin-bottom: 28px; }

    /* Yorumlar */
    .reviews-track { grid-template-columns: 1fr; }

    /* Admin login */
    .admin-login-box { padding: 28px 20px; }

    /* Blog */
    .blog-grid { grid-template-columns: 1fr; }
    .blog-card-body { padding: 18px; }
    .blog-card-title { font-size: 1rem; }
    .blog-hero-title { font-size: 1.6rem; }
    .blog-sidebar { margin-top: 32px; }

    /* Blog post detay */
    .post-header { padding: 40px 0 24px; }
    .post-title { font-size: 1.5rem; line-height: 1.3; }
    .post-meta { flex-wrap: wrap; gap: 8px; font-size: .82rem; }
    .post-content { font-size: .95rem; }
    .post-content h2 { font-size: 1.3rem; margin-top: 28px; }
    .post-content h3 { font-size: 1.1rem; }
    .post-content img { max-width: 100%; height: auto; }
    .post-content pre { overflow-x: auto; font-size: .82rem; }
    .post-content table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }

    /* Hizmet bölgeleri */
    .region-grid { grid-template-columns: 1fr; gap: 12px; }
    .region-hero-title { font-size: 1.6rem; }

    /* Sayfa başlıkları */
    .page-hero-title { font-size: 1.6rem; }
    .section-title { font-size: 1.5rem; }

    /* Floating butonlar */
    .float-call-btn, .float-whatsapp-btn { width: 52px; height: 52px; font-size: 1.2rem; }

    /* Formlar */
    .form-control, .form-select { font-size: 16px; } /* iOS zoom önleme */

    /* Tablo */
    .admin-table { font-size: .82rem; }
    .admin-table th, .admin-table td { padding: 8px 10px; }

    /* Breadcrumb */
    .breadcrumb { font-size: .82rem; flex-wrap: wrap; }

    /* Pagination */
    .pagination .page-link { padding: 6px 10px; font-size: .88rem; }
}

/* ============================================================
   RESPONSIVE - Küçük Mobil (≤575px)
   ============================================================ */
@media (max-width: 575.98px) {
    /* Hero özellikleri */
    .hero-features { gap: 8px; flex-wrap: wrap; }
    .hero-feature { font-size: .8rem; padding: 6px 10px; }
    .hero-title { font-size: 1.6rem; }

    /* Hizmet kartları */
    .service-card { padding: 20px 16px; }
    .service-icon { width: 52px; height: 52px; font-size: 1.3rem; }

    /* Bölge kartları */
    .area-card-inner { padding: 14px 10px; }
    .area-card-inner span { font-size: .8rem; }

    /* Blog */
    .blog-card-body { padding: 14px; }
    .blog-card-meta { font-size: .78rem; }

    /* Post */
    .post-title { font-size: 1.3rem; }
    .post-content h2 { font-size: 1.2rem; }
    .post-content h3 { font-size: 1.05rem; }

    /* Stat sayaçları */
    .stat-number { font-size: 2rem; }
    .stat-label { font-size: .82rem; }

    /* FAQ */
    .faq-question { font-size: .95rem; padding: 14px 16px; }
    .faq-answer { padding: 0 16px 14px; font-size: .9rem; }

    /* İletişim */
    .contact-card { padding: 20px 16px; }

    /* Floating butonlar daha küçük */
    .float-call-btn { bottom: 80px; right: 16px; width: 48px; height: 48px; }
    .float-whatsapp-btn { bottom: 20px; right: 16px; width: 48px; height: 48px; }

    /* Admin */
    .admin-login-box { padding: 24px 16px; }
    .admin-stats-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .admin-stat-card { padding: 16px 12px; }
}

/* ============================================================
   RESPONSIVE - Çok Küçük (≤400px)
   ============================================================ */
@media (max-width: 400px) {
    .hero-title { font-size: 1.4rem; }
    .hero-cta .btn { font-size: .88rem; padding: 12px 16px; }
    .section-title { font-size: 1.3rem; }
    .post-title { font-size: 1.2rem; }
    .admin-stats-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   UTILITY
   ============================================================ */
.text-warning { color: var(--primary) !important; }
.bg-warning   { background-color: var(--primary) !important; }
.btn-warning  { background-color: var(--primary); border-color: var(--primary); color: var(--dark); font-weight: 700; }
.btn-warning:hover { background-color: var(--primary-dark); border-color: var(--primary-dark); color: var(--dark); }
.btn-outline-warning { border-color: var(--primary); color: var(--primary-dark); font-weight: 600; }
.btn-outline-warning:hover { background-color: var(--primary); color: var(--dark); }

.fw-800 { font-weight: 800; }
.lh-sm  { line-height: 1.3; }

/* Lazy load fade-in */
img[loading="lazy"] { opacity: 0; transition: opacity .4s ease; }
img[loading="lazy"].loaded { opacity: 1; }

/* AOS fallback (AOS kütüphanesi yoksa) */
[data-aos] { opacity: 1 !important; transform: none !important; }