/* ============================================================
   STYLE.CSS | ALK AMBULANS - ANKARA ÖZEL AMBULANS
   +15 Yıl SEO + Senior Yazılımcı - Profesyonel CSS
   Son Güncelleme: 2026-03-16
   ============================================================

   İÇİNDEKİLER:
   01. Reset & Değişkenler
   02. Genel Tipografi & Yardımcılar
   03. Skip Link & Erişilebilirlik
   04. Header & Navigasyon
   05. Hamburger Menü & Mobil Nav
   06. Breadcrumb
   07. Hero Section
   08. Genel Section & Başlıklar
   09. Neden Biz (Features Grid)
   10. Hizmetler (Services Grid)
   11. SSS Accordion
   12. Galeri Slider
   13. İletişim & Harita
   14. SEO İçerik Bölümü
   15. Footer (4 Sütunlu)
   16. Floating Butonlar & Scroll Top
   17. Hakkımızda Sayfası
   18. Blog Listesi Sayfası
   19. Blog Detay Sayfası
   20. Animasyonlar
   21. Responsive 992px
   22. Responsive 768px
   23. Responsive 480px
   24. Print & Reduced Motion
   ============================================================ */


/* ============================================================
   01. RESET & DEĞİŞKENLER
   ============================================================ */
@font-face {
    font-family: 'Font Awesome 6 Free';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/webfonts/fa-solid-900.woff2") format("woff2");
}
@font-face {
    font-family: 'Font Awesome 6 Brands';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/webfonts/fa-brands-400.woff2") format("woff2");
}

:root {
    /* Renkler */
    --primary: #d90429;
    --primary-hover: #b2001f;
    --primary-light: rgba(217, 4, 41, 0.08);
    --secondary: #f9f9f9;
    --dark: #2b2d42;
    --dark-light: #3a3d57;
    --white: #ffffff;
    --text: #495057;
    --text-light: #6c757d;
    --border: #e9ecef;
    --border-dark: #dee2e6;
    --whatsapp: #25D366;
    --whatsapp-hover: #1da851;

    /* Tipografi */
    --font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-xs: 0.8rem;
    --font-sm: 0.9rem;
    --font-base: 1rem;
    --font-md: 1.1rem;
    --font-lg: 1.2rem;
    --font-xl: 1.4rem;

    /* Spacing */
    --section-padding: 100px;
    --container-max: 1100px;

    /* Border Radius */
    --radius: 12px;
    --radius-sm: 8px;
    --radius-full: 50px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 5px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
    --shadow-header: 0 2px 10px rgba(0,0,0,0.05);

    /* Z-Index */
    --z-floating: 300;
    --z-overlay: 400;
    --z-nav: 500;
    --z-hamburger: 600;
    --z-header: 200;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-family);
    line-height: 1.7;
    color: var(--text);
    background-color: var(--white);
}
body.menu-is-open { overflow: hidden; }
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 20px; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-hover); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

::selection { background-color: var(--primary); color: var(--white); }


/* ============================================================
   02. GENEL TİPOGRAFİ & YARDIMCILAR
   ============================================================ */
.sr-only {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.bg-light { background-color: var(--secondary); }
.h1-sub, .hero-sub {
    display: block;
    font-size: 0.45em;
    font-weight: 400;
    margin-top: 8px;
    opacity: 0.9;
}


/* ============================================================
   03. SKIP LINK & ERİŞİLEBİLİRLİK
   ============================================================ */
.skip-link {
    position: absolute; top: -100px; left: 10px;
    background: var(--primary); color: var(--white);
    padding: 12px 24px; border-radius: var(--radius-sm);
    z-index: 9999; font-weight: 700; font-size: var(--font-base);
    transition: top 0.3s ease;
}
.skip-link:focus { top: 10px; color: var(--white); }

*:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
}


/* ============================================================
   04. HEADER & NAVİGASYON
   ============================================================ */
header {
    background: rgba(255, 255, 255, 1);
    box-shadow: var(--shadow-header);
    position: sticky;
    top: 0;
    z-index: var(--z-header);
}
header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
}

/* Logo */
.logo { display: flex; align-items: center; text-decoration: none; }
.logo-image { height: 90px; width: auto; }

/* Nav */
header nav ul { display: flex; margin: 0; padding: 0; }
header nav ul li { margin-left: 25px; }
header nav a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 700;
    font-size: var(--font-sm);
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
    transition: color 0.3s ease, border-color 0.3s ease;
}
header nav a:hover,
header nav a[aria-current="page"] {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

/* Nav Buton (Hemen Ara) */
.nav-button {
    background: var(--primary);
    color: var(--white);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 700;
    font-size: var(--font-sm);
    white-space: nowrap;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(217, 4, 41, 0.3);
}
.nav-button:hover {
    background-color: var(--primary-hover);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(217, 4, 41, 0.4);
}


/* ============================================================
   05. HAMBURGER MENÜ & MOBİL NAV
   ============================================================ */
.hamburger-menu {
    display: none;
    font-size: 1.8rem;
    color: var(--dark);
    z-index: var(--z-hamburger);
    padding: 5px;
}
#menu-overlay {
    position: fixed; top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: var(--z-overlay);
    opacity: 0; visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}
#menu-overlay.overlay-active { opacity: 1; visibility: visible; }


/* ============================================================
   06. BREADCRUMB
   ============================================================ */
.breadcrumb-nav,
.breadcrumb {
    background-color: var(--secondary);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
}
.breadcrumb-nav .container,
.breadcrumb .container { padding-top: 0; padding-bottom: 0; }

.breadcrumb-list,
.breadcrumb ol {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
    font-size: var(--font-sm);
}
.breadcrumb-list li,
.breadcrumb ol li { display: flex; align-items: center; gap: 8px; }

.breadcrumb-list li:not(:last-child)::after,
.breadcrumb ol li:not(:last-child):not(.breadcrumb-separator)::after {
    content: '›';
    color: var(--text-light);
    font-size: 1.1em;
}
.breadcrumb-separator { font-size: 0.7em; color: var(--text-light); }
.breadcrumb-separator + li::before { display: none; }

.breadcrumb-list a,
.breadcrumb ol a { color: var(--primary); text-decoration: none; font-weight: 500; }
.breadcrumb-list a:hover,
.breadcrumb ol a:hover { text-decoration: underline; }
.breadcrumb-list span[aria-current],
.breadcrumb ol span[aria-current] { color: var(--text-light); font-weight: 400; }


/* ============================================================
   07. HERO SECTION
   ============================================================ */
.hero {
    position: relative;
    overflow: hidden;
    color: var(--white);
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.hero-background-image {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
}
.hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
}
.hero .container {
    position: relative;
    z-index: 2;
}
.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}
.hero p {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    margin-bottom: 2rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}
.hero-cta-group {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* CTA Butonlar */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    color: var(--primary);
    padding: 16px 32px;
    text-decoration: none;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: var(--font-lg);
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.cta-button:hover {
    background: var(--secondary);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}
.cta-button.cta-whatsapp {
    background: var(--whatsapp);
    color: var(--white);
}
.cta-button.cta-whatsapp:hover {
    background: var(--whatsapp-hover);
    color: var(--white);
}


/* ============================================================
   08. GENEL SECTION & BAŞLIKLAR
   ============================================================ */
.content-section { padding: var(--section-padding) 0; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h1,
.section-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}
.section-header h1::after,
.section-header h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--primary);
    margin: 15px auto 0;
    border-radius: 2px;
}
.section-header p {
    max-width: 700px;
    margin: 0 auto;
    font-size: var(--font-md);
    color: var(--text);
}


/* ============================================================
   09. NEDEN BİZ (FEATURES GRID)
   ============================================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}
.feature-item {
    text-align: center;
    padding: 30px 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.feature-item:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}
.feature-item .icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}
.feature-item h3 {
    font-size: var(--font-lg);
    color: var(--dark);
    margin-bottom: 10px;
}
.feature-item p {
    font-size: var(--font-sm);
    line-height: 1.6;
    color: var(--text);
}


/* ============================================================
   10. HİZMETLER (SERVICES GRID)
   ============================================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.service-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.service-card .service-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.service-card:hover .service-img { transform: scale(1.05); }
.service-card .service-content {
    padding: 25px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.service-card h3 {
    color: var(--dark);
    font-size: var(--font-lg);
    margin-bottom: 10px;
}
.service-card p {
    font-size: var(--font-sm);
    line-height: 1.6;
    color: var(--text);
    flex-grow: 1;
}
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-weight: 700;
    font-size: var(--font-sm);
    margin-top: 12px;
    transition: gap 0.3s ease;
}
.service-link:hover { gap: 10px; }


/* ============================================================
   11. SSS ACCORDION
   ============================================================ */
.accordion { max-width: 800px; margin: 0 auto; }
.accordion-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}
.accordion-item:hover { border-color: var(--border-dark); }
.accordion-header {
    width: 100%;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: var(--font-base);
    color: var(--dark);
    background: var(--white);
    text-align: left;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.accordion-header span { flex: 1; padding-right: 15px; }
.accordion-header i {
    transition: transform 0.3s ease, color 0.3s ease;
    font-size: 0.9em;
    flex-shrink: 0;
}
.accordion-header[aria-expanded="true"] {
    background: var(--primary);
    color: var(--white);
}
.accordion-header[aria-expanded="true"] i {
    transform: rotate(180deg);
    color: var(--white);
}
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 20px;
}
.accordion-content.open,
.accordion-content[aria-hidden="false"] {
    max-height: 300px;
    padding: 20px;
}
.accordion-content p {
    font-size: var(--font-sm);
    line-height: 1.7;
}
.accordion-content a { font-weight: 600; }


/* ============================================================
   12. GALERİ SLIDER
   ============================================================ */
.gallery-slider-container { max-width: 900px; margin: 0 auto; }
.gallery-slider {
    position: relative;
    height: 500px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background-color: #eee;
}
.gallery-slider img {
    width: 100%; height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0; left: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
}
.gallery-slider img.active { opacity: 1; }

.gallery-slider .prev-btn,
.gallery-slider .next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: var(--white);
    border: none;
    padding: 15px;
    font-size: 1.5rem;
    z-index: 10;
    transition: background-color 0.3s ease;
}
.gallery-slider .prev-btn:hover,
.gallery-slider .next-btn:hover { background-color: rgba(0, 0, 0, 0.8); }
.gallery-slider .prev-btn { left: 0; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.gallery-slider .next-btn { right: 0; border-radius: var(--radius-sm) 0 0 var(--radius-sm); }

.gallery-thumbnails {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}
.gallery-thumbnails img {
    width: 100px; height: 65px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    border: 3px solid transparent;
    opacity: 0.5;
    transition: opacity 0.3s ease, border-color 0.3s ease;
}
.gallery-thumbnails img:hover { opacity: 0.8; }
.gallery-thumbnails img.active { opacity: 1; border-color: var(--primary); }


/* ============================================================
   13. İLETİŞİM & HARİTA
   ============================================================ */
.contact-info {
    font-style: normal;
    margin-bottom: 40px;
}
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.contact-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}
.contact-item i {
    color: var(--primary);
    font-size: 1.4rem;
    margin-top: 2px;
    flex-shrink: 0;
    width: 25px;
    text-align: center;
}
.contact-item strong {
    display: block;
    color: var(--dark);
    font-size: var(--font-sm);
    margin-bottom: 4px;
}
.contact-item a, .contact-item span {
    color: var(--text);
    font-size: var(--font-sm);
}
.contact-item a { color: var(--primary); font-weight: 600; }
.contact-item-full { grid-column: 1 / -1; }

/* Harita */
.map-container {
    margin-top: 40px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    cursor: pointer;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary);
}
.map-placeholder { text-align: center; padding: 20px; }
.map-placeholder i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 15px;
    display: block;
}
.map-placeholder p { font-weight: 700; color: var(--dark); margin-bottom: 5px; }
.map-placeholder span { font-size: var(--font-sm); color: var(--text-light); }
.map-container iframe { width: 100%; height: 450px; border: 0; display: block; }


/* ============================================================
   14. SEO İÇERİK BÖLÜMÜ
   ============================================================ */
.seo-content-section { padding-top: 0; }
.seo-article {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
    background: var(--secondary);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    text-align: left;
}
.seo-article h2 {
    color: var(--dark);
    font-size: 1.4rem;
    text-align: center;
    margin-bottom: 20px;
}
.seo-article h2::after { display: none; }
.seo-article p {
    color: var(--text);
    font-size: var(--font-sm);
    line-height: 1.8;
    margin-bottom: 15px;
}
.seo-article p:last-child { margin-bottom: 0; }
.seo-article a { font-weight: 600; }


/* ============================================================
   15. FOOTER (4 SÜTUNLU)
   ============================================================ */
footer {
    background: var(--dark);
    color: var(--secondary);
}

/* Ana Footer */
.footer-main { padding: 60px 0 40px; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
}
.footer-column {}

/* Footer Logo & Açıklama */
.footer-logo { display: inline-block; margin-bottom: 15px; }
.footer-logo img { height: 70px; width: auto; }
.footer-desc {
    font-size: var(--font-sm);
    line-height: 1.7;
    color: #adb5bd;
    margin-bottom: 20px;
}

/* Footer Sosyal Medya */
.footer-social { display: flex; gap: 12px; }
.footer-social a {
    width: 42px; height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.footer-social a:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
    color: var(--white);
}

/* Footer Başlıklar */
.footer-title {
    color: var(--white);
    font-size: var(--font-md);
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
}

/* Footer Linkler */
.footer-links { padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: #adb5bd;
    font-size: var(--font-sm);
    transition: color 0.3s ease, padding-left 0.3s ease;
}
.footer-links a:hover { color: var(--white); padding-left: 5px; }

/* Footer İletişim */
.footer-contact { font-style: normal; }
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}
.footer-contact-item i {
    color: var(--primary);
    font-size: 1rem;
    margin-top: 3px;
    flex-shrink: 0;
    width: 18px;
    text-align: center;
}
.footer-contact-label {
    display: block;
    font-size: var(--font-xs);
    color: var(--text-light);
    margin-bottom: 2px;
}
.footer-contact-item a {
    color: #adb5bd;
    font-size: var(--font-sm);
    font-weight: 600;
    transition: color 0.3s ease;
}
.footer-contact-item a:hover { color: var(--white); }
.footer-contact-item span {
    color: #adb5bd;
    font-size: var(--font-sm);
}

/* Footer Ankara Bölgeleri */
.footer-areas {
    padding: 30px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-areas-inner { text-align: center; }
.footer-areas-title {
    color: var(--white);
    font-size: var(--font-base);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.footer-areas-title i { color: var(--primary); }
.footer-areas-text {
    color: #adb5bd;
    font-size: var(--font-sm);
    margin-bottom: 15px;
}
.footer-areas-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 10px;
    margin-bottom: 15px;
    padding: 0;
}
.footer-areas-list li span {
    color: #adb5bd;
    font-size: var(--font-xs);
    background: rgba(255,255,255,0.05);
    padding: 3px 10px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.08);
    display: inline-block;
}
.footer-areas-cta { color: #adb5bd; font-size: var(--font-sm); }
.footer-areas-cta a { color: var(--primary); font-weight: 700; }

/* Alt Footer */
.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.footer-copyright {
    color: #adb5bd;
    font-size: var(--font-xs);
}
.footer-legal { display: flex; gap: 8px; align-items: center; }
.footer-legal a {
    color: #adb5bd;
    font-size: var(--font-xs);
    transition: color 0.3s ease;
}
.footer-legal a:hover { color: var(--white); }
.footer-legal span { color: rgba(255,255,255,0.2); font-size: var(--font-xs); }

/* Developer Kredisi */
.footer-developer {
    text-align: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.developer-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(217, 4, 41, 0.15), rgba(217, 4, 41, 0.05));
    border: 1px solid rgba(217, 4, 41, 0.3);
    color: #e0e0e0;
    font-size: 0.8rem;
    padding: 6px 16px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}
.developer-badge:hover {
    background: linear-gradient(135deg, rgba(217, 4, 41, 0.3), rgba(217, 4, 41, 0.1));
    border-color: rgba(217, 4, 41, 0.5);
    color: #ffffff;
    transform: translateY(-1px);
}
.developer-badge i {
    color: var(--primary);
    font-size: 0.85rem;
}
.developer-badge strong {
    color: #ffffff;
    font-weight: 700;
}


/* ============================================================
   16. FLOATING BUTONLAR & SCROLL TOP
   ============================================================ */
.floating-call-button {
    position: fixed;
    bottom: 20px; right: 20px;
    width: 60px; height: 60px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 4px 15px rgba(217, 4, 41, 0.4);
    z-index: var(--z-floating);
    text-decoration: none;
    animation: pulse 2s infinite;
}
.floating-whatsapp-button {
    position: fixed;
    bottom: 90px; right: 20px;
    width: 60px; height: 60px;
    background-color: var(--whatsapp);
    color: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: var(--z-floating);
    text-decoration: none;
    animation: pulse-whatsapp 2s infinite;
}
#scrollTopBtn {
    position: fixed;
    bottom: 20px; left: 20px;
    width: 48px; height: 48px;
    background-color: var(--dark);
    color: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    box-shadow: var(--shadow-md);
    z-index: var(--z-floating);
    opacity: 0; visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.3s ease;
}
#scrollTopBtn:hover { transform: translateY(-4px); background-color: var(--dark-light); }
#scrollTopBtn.visible { opacity: 1; visibility: visible; }

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(217, 4, 41, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(217, 4, 41, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(217, 4, 41, 0); }
}
@keyframes pulse-whatsapp {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}


/* ============================================================
   17. HAKKIMIZDA SAYFASI
   ============================================================ */
.about-hero {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    color: var(--white);
    padding: 60px 0 50px;
    margin-top: 0;
}
.about-hero-content { text-align: center; max-width: 800px; margin: 0 auto; }
.about-hero h1 {
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
    font-weight: 900;
    margin-bottom: 15px;
    line-height: 1.3;
}
.about-hero-desc {
    font-size: var(--font-md);
    line-height: 1.8;
    color: rgba(255,255,255,0.85);
}

/* Hikaye Grid */
.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.about-story-image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    width: 100%;
}
.about-story-text h2 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    color: var(--dark);
    margin-bottom: 20px;
}
.about-story-text h2::after { display: none; }
.about-story-text p {
    margin-bottom: 15px;
    line-height: 1.8;
}

/* Misyon Vizyon */
.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.mission-card, .vision-card {
    padding: 35px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--white);
}
.mission-card h3, .vision-card h3 {
    color: var(--dark);
    font-size: var(--font-xl);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.mission-card h3 i, .vision-card h3 i { color: var(--primary); }
.mission-card p, .vision-card p { line-height: 1.8; }

/* İstatistikler */
.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}
.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 5px;
}
.stat-label {
    font-size: var(--font-sm);
    color: var(--dark);
    font-weight: 700;
}
.stat-desc {
    font-size: var(--font-xs);
    color: var(--text-light);
    margin-top: 5px;
}

/* Ekip Grid */
.about-team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.team-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}
.team-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}
.team-card h3 {
    color: var(--dark);
    font-size: var(--font-base);
    margin-bottom: 8px;
}
.team-card p {
    font-size: var(--font-xs);
    color: var(--text-light);
    line-height: 1.5;
}

/* Sertifikalar */
.about-cert-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}
.cert-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}
.cert-icon {
    font-size: 2rem;
    color: var(--primary);
    flex-shrink: 0;
}
.cert-card h3 {
    color: var(--dark);
    font-size: var(--font-base);
    margin-bottom: 8px;
}
.cert-card p {
    font-size: var(--font-sm);
    color: var(--text);
    line-height: 1.6;
}

/* Hakkımızda Hizmetler */
.about-services-list { max-width: 800px; margin: 0 auto; }
.about-service-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    border-bottom: 1px solid var(--border);
}
.about-service-item:last-child { border-bottom: none; }
.about-service-item i {
    color: var(--primary);
    font-size: 1.2rem;
    flex-shrink: 0;
}
.about-service-item a {
    color: var(--dark);
    font-weight: 600;
    font-size: var(--font-base);
    transition: color 0.3s ease;
}
.about-service-item a:hover { color: var(--primary); }

/* CTA Box (Genel) */
.about-cta-box, .blog-cta-box {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    border-radius: var(--radius);
    color: var(--white);
    margin-top: 30px;
}
.about-cta-box h2, .blog-cta-box h3 {
    color: var(--white);
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    margin-bottom: 15px;
}
.about-cta-box h2::after { display: none; }
.about-cta-box p, .blog-cta-box p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 25px;
    font-size: var(--font-md);
}
.about-cta-buttons, .blog-cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}


/* ============================================================
   18. BLOG LİSTESİ SAYFASI
   ============================================================ */
.blog-listing-section { padding-top: 60px; }

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.blog-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

/* Blog Kart Resim */
.blog-card-image-link {
    display: block;
    position: relative;
    overflow: hidden;
}
.blog-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.blog-card:hover .blog-card-img { transform: scale(1.05); }

/* Blog Kategori Etiketi */
.blog-category {
    position: absolute;
    top: 12px; left: 12px;
    background: var(--primary);
    color: var(--white);
    font-size: var(--font-xs);
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
}

/* Blog Kart İçerik */
.blog-card-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
    font-size: var(--font-xs);
    color: var(--text-light);
    flex-wrap: wrap;
}
.blog-meta i { margin-right: 4px; }
.blog-read-time { display: flex; align-items: center; }

.blog-card-content h2 {
    font-size: var(--font-base);
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.4;
}
.blog-card-content h2::after { display: none; }
.blog-card-content h2 a { color: var(--dark); transition: color 0.3s ease; }
.blog-card-content h2 a:hover { color: var(--primary); }

.blog-card-content > p {
    font-size: var(--font-sm);
    color: var(--text);
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 15px;
}

/* Blog Kart Footer */
.blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid var(--border);
    margin-top: auto;
}
.blog-author {
    font-size: var(--font-xs);
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 5px;
}
.blog-read-more {
    font-size: var(--font-xs);
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s ease;
}
.blog-read-more:hover { gap: 8px; }

/* Blog Yazar Bilgi Kutusu */
.blog-author-box {
    text-align: center;
    padding: 30px;
    background: var(--secondary);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    margin-top: 40px;
}
.blog-author-box h3 {
    color: var(--dark);
    font-size: var(--font-lg);
    margin-bottom: 8px;
}
.blog-author-box .author-title {
    color: var(--primary);
    font-weight: 600;
    font-size: var(--font-sm);
    margin-bottom: 10px;
}
.blog-author-box p {
    font-size: var(--font-sm);
    color: var(--text);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

/* Blog Alt İçerik */
.blog-bottom-content {
    text-align: center;
    padding: 40px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    margin-top: 40px;
}
.blog-bottom-content h2 {
    font-size: var(--font-xl);
    color: var(--dark);
    margin-bottom: 15px;
}
.blog-bottom-content h2::after { display: none; }
.blog-bottom-content p {
    font-size: var(--font-sm);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 20px;
}
.blog-bottom-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}
.blog-bottom-links a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: var(--font-sm);
}


/* ============================================================
   19. BLOG DETAY SAYFASI
   ============================================================ */
.blog-detail-section { padding-top: 20px; padding-bottom: 60px; }
.blog-detail-layout { max-width: 800px; margin: 0 auto; }

/* Blog Detay Header */
.blog-detail-header { margin-bottom: 30px; }
.blog-category-tag {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    font-size: var(--font-xs);
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 15px;
}
.blog-detail-header { 
    margin-bottom: 30px; 
    position: static; /* Ana header'dan gelen sticky özelliğini iptal eder */
    background: transparent; /* Ana header'dan gelen beyaz arkaplanı iptal eder */
    box-shadow: none; /* Ana header'dan gelen gölgeyi iptal eder */
    z-index: 1;
}
.blog-meta-info {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    font-size: var(--font-sm);
    color: var(--text-light);
}
.blog-meta-info i { margin-right: 5px; color: var(--primary); }

/* Blog Detay Görsel */
.blog-detail-image {
    margin-bottom: 30px;
}
.blog-detail-image img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}
.blog-detail-image figcaption {
    text-align: center;
    font-size: var(--font-xs);
    color: var(--text-light);
    margin-top: 10px;
    font-style: italic;
}

/* Blog Detay İçerik */
.blog-detail-body h2 {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    color: var(--dark);
    margin: 30px 0 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--primary-light);
}
.blog-detail-body h2::after { display: none; }
.blog-detail-body h3 {
    font-size: var(--font-lg);
    color: var(--dark);
    margin: 25px 0 12px;
}
.blog-detail-body p {
    margin-bottom: 15px;
    line-height: 1.8;
    font-size: var(--font-base);
}
.blog-detail-body ul, .blog-detail-body ol {
    margin: 15px 0;
    padding-left: 25px;
}
.blog-detail-body ul { list-style: disc; }
.blog-detail-body ol { list-style: decimal; }
.blog-detail-body li {
    margin-bottom: 8px;
    line-height: 1.7;
    font-size: var(--font-base);
}
.blog-detail-body a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: rgba(217, 4, 41, 0.3);
    transition: text-decoration-color 0.3s ease;
}
.blog-detail-body a:hover {
    text-decoration-color: var(--primary);
}
.blog-detail-body strong { color: var(--dark); }

/* Blog Karşılaştırma Tablosu */
.blog-comparison-table {
    overflow-x: auto;
    margin: 20px 0;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
}
.blog-comparison-table table {
    width: 100%;
    border-collapse: collapse;
    font-size: var(--font-sm);
}
.blog-comparison-table th {
    background: var(--dark);
    color: var(--white);
    padding: 12px 16px;
    text-align: left;
    font-weight: 700;
}
.blog-comparison-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    color: var(--text);
}
.blog-comparison-table tr:nth-child(even) td { background: var(--secondary); }
.blog-comparison-table tr:hover td { background: var(--primary-light); }

/* Blog CTA Box */
.blog-cta-box {
    margin: 35px 0;
    padding: 35px;
}

/* İlgili Yazılar */
.related-posts { margin-top: 50px; }
.related-posts h2 {
    font-size: var(--font-xl);
    color: var(--dark);
    margin-bottom: 25px;
    text-align: center;
}
.related-posts h2::after { display: none; }
.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.related-post-card {
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    text-decoration: none;
}
.related-post-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}
.related-post-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
}
.related-post-card h3 {
    padding: 12px 15px;
    font-size: var(--font-sm);
    color: var(--dark);
    line-height: 1.4;
}

/* Blog İçi Özellik/Grid Kartları */
.blog-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin: 30px 0;
}
.blog-feature-card {
    background: var(--secondary);
    padding: 25px 20px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.blog-feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}
.blog-feature-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
    display: block;
}
.blog-feature-card strong {
    display: block;
    color: var(--dark);
    font-size: var(--font-base);
    margin-bottom: 8px;
}
.blog-feature-card p {
    font-size: var(--font-sm);
    color: var(--text);
    margin-bottom: 0;
    line-height: 1.5;
}


/* ============================================================
   20. ANİMASYONLAR
   ============================================================ */
.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.animate-on-scroll.visible { opacity: 1; transform: none; }
.fade-in-up { transform: translateY(30px); }
.fade-in-left { transform: translateX(-40px); }
.fade-in-right { transform: translateX(40px); }
.zoom-in { transform: scale(0.95); }


/* ============================================================
   21. RESPONSİVE 992px
   ============================================================ */
@media (max-width: 992px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .blog-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .gallery-slider { height: 400px; }
    .gallery-thumbnails img { width: 80px; height: 52px; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .about-team-grid { grid-template-columns: repeat(2, 1fr); }
    .about-stats-grid { grid-template-columns: repeat(3, 1fr); gap: 15px; }
    .related-posts-grid { grid-template-columns: repeat(3, 1fr); gap: 15px; }
}


/* ============================================================
   22. RESPONSİVE 768px (TABLET & MOBİL)
   ============================================================ */
@media (max-width: 768px) {
    :root { --section-padding: 60px; }

    /* Header Mobil - z-index overlay'den yüksek olmalı (stacking context fix) */
    header { z-index: var(--z-hamburger); }
    header .container { padding-top: 8px; padding-bottom: 8px; }
    .logo-image { height: 65px; }
    .nav-button { display: none; }
    .hamburger-menu { display: block; }

    /* Mobil Menü */
    header nav {
        position: fixed;
        top: 0; right: -280px;
        width: 280px; height: 100vh;
        background-color: var(--white);
        z-index: var(--z-nav);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        padding: 90px 0 30px;
        display: block;
        overflow-y: auto;
    }
    header nav.nav-active { right: 0; }
    header nav ul { flex-direction: column; }
    header nav ul li { margin: 0; width: 100%; }
    header nav a {
        display: block;
        padding: 15px 30px;
        text-align: center;
        font-size: var(--font-lg);
        border-bottom: 1px solid var(--border);
    }
    header nav a:hover {
        background-color: var(--secondary);
        border-bottom-color: var(--border);
    }

    /* Hero Mobil */
    .hero { min-height: 70vh; }
    .hero h1 { font-size: clamp(1.8rem, 6vw, 2.8rem); }
    .hero-cta-group { flex-direction: column; align-items: center; }
    .cta-button { padding: 14px 28px; font-size: var(--font-base); width: 100%; max-width: 300px; justify-content: center; }

    /* Genel */
    .section-header { margin-bottom: 35px; }
    .section-header h1, .section-header h2 { font-size: clamp(1.5rem, 4vw, 2rem); }

    /* Grid'ler */
    .features-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 20px; }
    .feature-item { padding: 18px 12px; }
    .feature-item .icon { font-size: 2.2rem; margin-bottom: 12px; }
    .feature-item h3 { font-size: var(--font-sm); margin-bottom: 6px; }
    .feature-item p { font-size: var(--font-xs); line-height: 1.5; }

    .services-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .service-card .service-img { height: 140px; }
    .service-card .service-content { padding: 15px; }
    .service-card h3 { font-size: var(--font-sm); margin-bottom: 6px; }
    .service-card p { font-size: var(--font-xs); line-height: 1.5; }
    .service-link { font-size: var(--font-xs); }

    /* Blog Grid Mobil */
    .blog-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .blog-card-img { height: 150px; }
    .blog-card-content { padding: 15px; }
    .blog-card-content h2 { font-size: var(--font-sm); }
    .blog-card-content > p { font-size: var(--font-xs); margin-bottom: 10px; }
    .blog-card-footer { flex-direction: column; gap: 8px; align-items: flex-start; }

    /* İletişim Mobil */
    .contact-grid { grid-template-columns: 1fr; }
    .contact-item-full { grid-column: auto; }

    /* Galeri Mobil */
    .gallery-slider { height: 300px; }
    .gallery-thumbnails { gap: 6px; }
    .gallery-thumbnails img { width: 60px; height: 40px; }

    /* Hakkımızda Mobil */
    .about-hero { padding: 40px 0 35px; }
    .about-hero h1 { font-size: clamp(1.3rem, 4vw, 1.8rem); }
    .about-story-grid { grid-template-columns: 1fr; gap: 30px; }
    .about-story-image { order: -1; }
    .mission-vision-grid { grid-template-columns: 1fr; }
    .about-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .stat-number { font-size: 2rem; }
    .about-team-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .about-cert-grid { grid-template-columns: 1fr; }
    .about-cta-box, .blog-cta-box { padding: 25px 20px; }

    /* Blog Detay Mobil */
    .blog-detail-header h1 { font-size: clamp(1.2rem, 4vw, 1.6rem); }
    .blog-meta-info { gap: 12px; font-size: var(--font-xs); }
    .blog-detail-body h2 { font-size: var(--font-lg); }
    .blog-detail-body p, .blog-detail-body li { font-size: var(--font-sm); }
    .related-posts-grid { grid-template-columns: 1fr; gap: 15px; }
    .related-post-card img { height: 160px; }

    /* Footer Mobil */
    .footer-main { padding: 40px 0 30px; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; text-align: center; }
    .footer-about { text-align: center; }
    .footer-social { justify-content: center; }
    .footer-links { text-align: center; }
    .footer-contact { text-align: left; }
    .footer-contact-item { justify-content: flex-start; }
    .footer-areas-list { gap: 5px 8px; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
    .footer-legal { flex-wrap: wrap; justify-content: center; }

    /* Floating Butonlar Mobil */
    .floating-call-button { width: 55px; height: 55px; font-size: 1.4rem; }
    .floating-whatsapp-button { width: 55px; height: 55px; font-size: 1.8rem; bottom: 85px; }
    #scrollTopBtn { width: 42px; height: 42px; font-size: 1.1rem; left: 15px; bottom: 15px; }
}


/* ============================================================
   23. RESPONSİVE 480px (KÜÇÜK MOBİL)
   ============================================================ */
@media (max-width: 480px) {
    .hero { min-height: 65vh; }
    .hero h1 { font-size: clamp(1.6rem, 7vw, 2.2rem); }
    .hero p { font-size: var(--font-sm); }

    .section-header h1, .section-header h2 { font-size: 1.4rem; }

    .features-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }

    .service-card .service-img { height: 180px; }
    .service-card .service-content { padding: 18px; }
    .service-card h3 { font-size: var(--font-base); }
    .service-card p { font-size: var(--font-sm); }

    .blog-card-img { height: 180px; }
    .blog-card-content { padding: 18px; }
    .blog-card-content h2 { font-size: var(--font-base); }
    .blog-card-content > p { font-size: var(--font-sm); }

    .gallery-slider { height: 220px; }
    .gallery-thumbnails img { width: 45px; height: 30px; }

    .about-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .about-team-grid { grid-template-columns: 1fr; }

    .blog-detail-header h1 { font-size: 1.2rem; }
    .blog-comparison-table { font-size: var(--font-xs); }
    .blog-comparison-table th, .blog-comparison-table td { padding: 8px 10px; }
}


/* ============================================================
   24. PRINT & REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
    .animate-on-scroll { opacity: 1; transform: none; }
}

@media print {
    header, footer, .floating-call-button, .floating-whatsapp-button,
    #scrollTopBtn, .hamburger-menu, #menu-overlay,
    .hero-cta-group, .cta-button, .blog-cta-box, .about-cta-box,
    .map-container, .gallery-slider-container, .footer-areas { display: none !important; }

    body { font-size: 12pt; color: #000; background: #fff; }
    .hero { min-height: auto; padding: 30px 0; background: #f0f0f0; }
    .hero::after { display: none; }
    .hero h1 { color: #000; text-shadow: none; font-size: 24pt; }
    .content-section { padding: 20px 0; }
    a { color: #000; text-decoration: underline; }
    a[href]::after { content: " (" attr(href) ")"; font-size: 9pt; color: #666; }
}
