/* assets/css/style.css */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #0056b3;
    --primary-gradient: linear-gradient(135deg, #0056b3 0%, #00aaff 100%);
    --secondary-color: #e3f2fd;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --accent-color: #3498db;
    --whatsapp-green: #25D366;
    --call-blue: #3498db;
    --mail-red: #ff3333;
    --bg-light: #f8fbff;
    --card-bg: #ffffff;
    --header-bg: rgba(255, 255, 255, 0.95);
    --border-color: #eeeeee;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --sidebar-width: 260px;
    --admin-bg: #f4f7f6;
}

[data-theme="dark"] {
    --primary-color: #4da6ff;
    --primary-gradient: linear-gradient(135deg, #0e74e6 0%, #4da6ff 100%);
    --secondary-color: #1a2a40;
    --text-dark: #ebf0f5;
    --text-light: #8397a8;
    --bg-light: #0d131a;
    --card-bg: #16202c;
    --header-bg: rgba(13, 19, 26, 0.95);
    --border-color: rgba(255, 255, 255, 0.05);
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    word-wrap: break-word; /* Global taşma koruması */
}

h1, h2, h3, h4, h5, h6 {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

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

ul {
    list-style: none;
}

/* Header & Nav - Stabilized Custom Layout */
.davutoglu-header {
    background: #0B2B46;
    color: white;
    font-family: 'Poppins', sans-serif;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

[data-theme="dark"] .davutoglu-header {
    background: #061826;
}

.davutoglu-header .header-inner {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
}

.davutoglu-header .header-row-1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 10px 0;
}

.top-item-left {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9);
}

.top-item-center {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.top-item-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}

.top-contact-info {
    font-weight: 600;
    font-size: 0.95rem;
    color: white;
}

.top-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.text-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.6rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    letter-spacing: -0.5px;
    white-space: nowrap;
}

.text-logo span {
    font-weight: 300;
    color: var(--accent-color);
    letter-spacing: 0.5px;
}

.davutoglu-header .header-row-2 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.nav-links-new {
    display: flex;
    gap: 15px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links-new li {
    display: flex;
    align-items: center;
}

.nav-links-new li:not(:last-child)::after {
    content: "■";
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.6rem;
    margin-left: 15px;
}

.nav-links-new a {
    color: white;
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.nav-links-new a:hover {
    color: #e0e0e0;
    opacity: 0.8;
}

.btn-new-wa {
    background: #2ecc71;
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.btn-new-wa:hover {
    background: #27ae60;
    transform: translateY(-2px);
    color: white;
}

.social-circles {
    display: flex;
    gap: 8px;
}

.social-circles a {
    width: 32px;
    height: 32px;
    background: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #0B2B46;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.social-circles a:hover {
    transform: scale(1.1);
    background: #e0e0e0;
}

.mobile-menu-btn {
    display: none;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.theme-btn {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.theme-btn:hover {
    background: var(--secondary-color);
}

/* Floating Actions */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: var(--transition-smooth);
    animation: bounce 2s infinite;
}

.float-btn:hover {
    transform: scale(1.1);
}

.float-btn.whatsapp { background-color: var(--whatsapp-green); }
.float-btn.call { background-color: var(--call-blue); animation-delay: 0.5s; }
.float-btn.mail { background-color: var(--mail-red); animation-delay: 1s; }

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-10px);}
    60% {transform: translateY(-5px);}
}

/* Footer */
footer {
    background: #1a252f;
    color: var(--text-light);
    padding: 5rem 2rem 2rem;
    margin-top: 5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.slide-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 2rem;
}

.slide-content h2 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

/* Amerikan Sistem Top Banner */
.info-top-banner {
    display: block;
    max-width: 1200px;
    margin: -110px auto 1rem;
    padding: 1.5rem 2rem;
    background: var(--primary-gradient);
    border-radius: 12px;
    color: white;
    text-align: center;
    text-decoration: none;
    position: relative;
    z-index: 25;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: var(--transition-smooth);
    border: 1px solid rgba(255,255,255,0.1);
}

.info-top-banner:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
    filter: brightness(1.1);
}

.info-top-banner h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    letter-spacing: 0.5px;
}

.info-top-banner i {
    font-size: 1.8rem;
    opacity: 0.9;
}

.info-top-banner .badge-new {
    background: #e74c3c;
    color: white;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 800;
    margin-left: 10px;
    vertical-align: middle;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Info Boxes */
.info-boxes-wrapper {
    display: flex;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
    position: relative;
    z-index: 20;
    padding: 0 2rem;
}

.info-box {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--card-shadow);
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    transition: var(--transition-smooth);
}

.info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.info-box i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.info-text h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
}

.info-text p {
    font-size: 0.85rem;
    color: #666;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
}

.section-title span {
    display: block;
    width: 50px;
    height: 3px;
    background: var(--primary-gradient);
    margin: 1rem auto;
}

/* Service Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--card-bg);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: var(--card-shadow);
    text-align: center;
    transition: var(--transition-smooth);
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    transition: var(--transition-smooth);
}

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

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

/* Responsive */
@media (max-width: 992px) {
    .davutoglu-header .header-row-1 {
        display: flex;
        padding: 10px 20px;
        background: #0B2B46;
        justify-content: space-between;
        align-items: center;
        height: 70px;
        position: relative;
        z-index: 1002;
    }

    .top-item-left, .top-item-right, .top-contact-info {
        display: none !important;
    }
    
    .top-actions {
        display: none;
    }
    
    .top-item-center {
        display: flex !important;
        justify-content: flex-start;
        flex: 1;
        padding: 0;
        background: transparent;
    }
    
    .text-logo {
        background: transparent !important;
        box-shadow: none !important;
        padding: 0 !important;
        margin: 0 !important;
        scale: 0.95;
        transform-origin: left;
        font-size: 1.2rem !important;
    }

    .mobile-menu-btn {
        display: flex !important;
        color: white;
        font-size: 2rem;
        cursor: pointer;
        padding: 5px;
        z-index: 1003;
    }

    .davutoglu-header .header-row-2 {
        display: block;
        height: 0;
        padding: 0;
        border: none;
        overflow: visible;
    }

    .nav-links-new {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #0B2B46; /* Kurumsal lacivert arkaplan */
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        z-index: 1001;
        transform: translateX(-100%);
        transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
        padding-top: 70px;
    }

    .nav-links-new.active {
        transform: translateX(0);
    }

    .nav-links-new li {
        width: 100%;
        text-align: center;
    }

    .nav-links-new a {
        color: white !important;
        font-size: 1.5rem !important;
        font-weight: 600;
        display: block;
        width: 100%;
        padding: 10px 0;
    }

    .nav-links-new li:not(:last-child)::after {
        display: none;
    }

    h1 { font-size: 2rem !important; line-height: 1.2; }
    h2 { font-size: 1.7rem !important; line-height: 1.2; }
    
    .slide-content h2 { font-size: 1.8rem !important; }
    .hero-slider { height: 400px !important; }
    
    .info-top-banner {
        margin: 15px auto !important;
        width: 92% !important;
        padding: 1.2rem 1rem !important;
        position: relative;
        z-index: 20;
        display: block;
    }

    .info-top-banner h3 {
        font-size: 1rem !important;
        gap: 8px !important;
    }

    .info-top-banner i {
        font-size: 1.3rem !important;
    }

    .info-boxes-wrapper {
        flex-direction: column;
        margin-top: 5px !important;
        gap: 12px;
        padding: 0 15px;
    }

    .container { padding: 3rem 1.2rem !important; }
    .section-title h2 { font-size: 1.6rem !important; }
    .section-title { margin-bottom: 2rem; }
}

/* ==========================================================================
   MODERN CORPORATE VISUALS (Glassmorphism & Shadows)
   ========================================================================== */

.card, .service-card, .testimonial-card {
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07) !important;
}

[data-theme="dark"] .card, [data-theme="dark"] .service-card, [data-theme="dark"] .testimonial-card {
    background: rgba(22, 32, 44, 0.8) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.btn-new-wa, .nav-btn-call, .btn-save {
    box-shadow: 0 4px 15px rgba(0, 86, 179, 0.2);
}

.btn-new-wa:hover, .nav-btn-call:hover {
    box-shadow: 0 6px 20px rgba(0, 86, 179, 0.3);
}

/* ==========================================================================
   ADMIN PANEL ENHANCEMENTS (Global)
   ========================================================================== */

.admin-body { display: flex; background: var(--admin-bg); min-height: 100vh; }

.sidebar { 
    width: var(--sidebar-width); 
    height: 100vh; 
    background: #2c3e50; 
    color: white; 
    position: fixed; 
    left: 0;
    top: 0;
    padding: 2rem 0; 
    transition: var(--transition-smooth);
    z-index: 1000;
}

.sidebar-brand { padding: 0 2rem 2rem; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid rgba(255,255,255,0.1); }
.sidebar-brand h3 { margin: 0; font-size: 1.2rem; white-space: nowrap; }
.sidebar-close { display: none; background: none; border: none; color: white; font-size: 1.2rem; cursor: pointer; }

.sidebar-menu { margin-top: 2rem; overflow-y: auto; height: calc(100vh - 120px); }
.sidebar-menu a { 
    display: flex; 
    align-items: center; 
    padding: 1rem 2rem; 
    color: rgba(255,255,255,0.7); 
    text-decoration: none;
    border-left: 4px solid transparent; 
    transition: var(--transition-smooth);
    position: relative;
}

.sidebar-menu a i { width: 25px; font-size: 1.1rem; }
.sidebar-menu a:hover, .sidebar-menu a.active { background: rgba(255,255,255,0.1); color: white; border-left-color: var(--primary-color); }

.sidebar-menu .badge { 
    background: #e74c3c; 
    color: white; 
    padding: 2px 7px; 
    border-radius: 20px; 
    font-size: 0.75rem; 
    font-weight: bold; 
    margin-left: auto;
}

.main-content { 
    margin-left: var(--sidebar-width); 
    width: calc(100% - var(--sidebar-width)); 
    padding: 2rem; 
    transition: var(--transition-smooth);
}

.sidebar-toggle {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 1001;
    cursor: pointer;
    font-size: 1.2rem;
}

/* Responsive Admin Panel Overrides */
@media (max-width: 992px) {
    .sidebar { left: calc(-1 * var(--sidebar-width)); }
    .sidebar.active { left: 0; }
    .sidebar-close { display: block; }
    .main-content { margin-left: 0; width: 100%; padding: 1rem; }
    .sidebar-toggle { display: flex; align-items: center; justify-content: center; }
}

.card { background: white; padding: 2rem; border-radius: 12px; box-shadow: var(--card-shadow); margin-bottom: 2rem; }
.btn-save { background: var(--primary-gradient); color: white; border: none; padding: 0.8rem 1.5rem; border-radius: 8px; font-weight: 600; cursor: pointer; transition: var(--transition-smooth); }
.btn-save:hover { opacity: 0.9; transform: translateY(-1px); }

.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; margin-bottom: 0.5rem; font-weight: 600; color: #34495e; }
.form-group input, .form-group textarea, .form-group select { 
    width: 100%; padding: 0.8rem; border: 1px solid #ddd; border-radius: 8px; font-family: inherit; font-size: 1rem; 
}
.form-group input:focus { border-color: var(--primary-color); outline: none; }

.seo-preview { background: #fff; border: 1px solid #dfe1e5; padding: 15px; border-radius: 8px; font-family: arial, sans-serif; }
.seo-preview .url { color: #202124; font-size: 14px; }
.seo-preview .title { color: #1a0dab; font-size: 20px; text-decoration: none; display: block; margin: 4px 0; }
.seo-preview .desc { color: #4d5156; font-size: 14px; line-height: 1.4; }

/* District Badges Grid */
.seo-matrix-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.district-badge-link {
    background: var(--bg-light);
    color: var(--text-dark);
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    border: 1px solid var(--border-color);
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.district-badge-link i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.district-badge-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
    border-color: var(--primary-color);
}

.district-badge-link:hover i {
    color: white;
}

/* ==========================================================================
   PREMIUM BLOG STYLING
   ========================================================================== */

.blog-grid-hero {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 4rem;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.blog-card-new {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition-smooth);
    border: 1px solid var(--border-color);
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.blog-card-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,86,179,0.1);
    border-color: var(--primary-color);
}

.blog-card-image {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.blog-card-new:hover .blog-card-image img {
    transform: scale(1.1);
}

.blog-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-color);
    color: white;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.blog-card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.blog-meta-info {
    display: flex;
    gap: 20px;
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.blog-read-more {
    margin-top: auto;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
}

.blog-card-new:hover .blog-read-more {
    gap: 15px;
}

/* Blog Detail Specifics */
.blog-content-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 4rem;
    margin-top: 3rem;
}

.blog-article {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-color);
}

.blog-article h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1.5rem;
    color: var(--text-dark);
    border-left: 5px solid var(--primary-color);
    padding-left: 20px;
}

.blog-article h3 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    color: var(--text-dark);
}

.blog-article p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.blog-sidebar-box {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-color);
    position: sticky;
    top: 120px;
}

.recent-post-item {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 1.5rem;
}

.recent-post-item img {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    object-fit: cover;
}

.recent-post-item h4 {
    font-size: 0.95rem;
    line-height: 1.4;
    color: var(--text-dark);
}

@media (max-width: 992px) {
    .blog-content-layout {
        grid-template-columns: 1fr;
    }
    .blog-sidebar-box {
        position: static;
    }
}

/* Reference Logo Standardization */
.ref-logo-card {
    background: white !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.ref-logo-card img {
    max-width: 100% !important;
    max-height: 100% !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition-smooth);
    display: block;
}

.ref-logo-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* Branded Blog Covers (Replaces Images) */
.blog-branded-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0b2b46 0%, #0056b3 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.blog-branded-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    animation: placeholderRotate 20s linear infinite;
}

@keyframes placeholderRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.blog-branded-placeholder span {
    color: white;
    font-size: 1.4rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.4;
    text-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 2;
    font-family: 'Poppins', sans-serif;
}

.blog-hero-branded-bg {
    background: linear-gradient(135deg, #0b2b46 0%, #1a3a5a 100%) !important;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.blog-hero-branded-bg::after {
    content: 'ANKARA YERİNDE HALI YIKAMA';
    position: absolute;
    bottom: 40px;
    font-size: 1.2rem;
    font-weight: 900;
    color: rgba(255,255,1).15);
    letter-spacing: 5px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 15px;
}


