/* ==========================================================================
   ADLER FLIESEN - Premium CSS Tasarım Sistemi
   ========================================================================== */

/* 1. Tasarım Değişkenleri & Reset */
:root {
    --primary-color: #11151c;       /* Koyu Kömür */
    --secondary-color: #212d40;     /* Slate / Derin Mavi */
    --accent-color: #c5a880;        /* Şık Bronz / Mermer Altını */
    --accent-hover: #b3946b;
    --text-color: #333333;
    --text-muted: #666666;
    --light-bg: #f8f9fa;            /* Açık Gri / Beyaz */
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.4);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
    --transition-fast: all 0.3s ease;
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --whatsapp-color: #25d366;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html, body {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: #ffffff;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-weight: 700;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* 2. Ortak Düzen & Tipografi */
.section {
    padding: 100px 0;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* 3. Header & Navigasyon */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.header-container {
    width: 90%;
    max-width: 1200px;
    height: 100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: 1.5px;
}

.logo-image-link {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 5px 0;
}

.logo-img {
    max-width: 280px;
    height: auto;
    max-height: 90px;
    display: block;
    object-fit: contain;
    transition: var(--transition-fast);
}

.logo-accent {
    color: var(--accent-color);
}

.logo-sub {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text-muted);
    display: block;
    margin-top: -6px;
    letter-spacing: 4px;
}

.desktop-nav {
    display: flex;
    gap: 35px;
}

.desktop-nav a {
    font-weight: 500;
    font-size: 1rem;
    color: var(--primary-color);
    position: relative;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition-fast);
}

.desktop-nav a:hover {
    color: var(--accent-color);
}

.desktop-nav a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Dil Seçimi Butonları */
.lang-buttons-container {
    display: flex;
    gap: 8px;
}

.lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: transparent;
    border: 1px solid #ddd;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-color);
    cursor: pointer;
    transition: var(--transition-fast);
}

.lang-btn img {
    width: 18px;
    height: 12px;
    border-radius: 2px;
    object-fit: cover;
    display: block;
}

.lang-btn:hover, .lang-btn.active {
    border-color: var(--accent-color);
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.header-phone-btn {
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid transparent;
}

.header-phone-btn:hover {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Mobil Menü Butonu */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition-fast);
}

/* Mobil Menü Paneli */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100vh;
    background-color: var(--primary-color);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-slow);
}

.mobile-nav-overlay.open {
    left: 0;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    width: 80%;
    text-align: center;
}

.mobile-nav a {
    font-size: 1.8rem;
    color: #ffffff;
    font-weight: 600;
    font-family: var(--font-heading);
}

.mobile-nav a:hover {
    color: var(--accent-color);
}

.mobile-lang-list {
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    width: 100%;
}

.mobile-lang-list p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.mobile-lang-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.mobile-lang-buttons .lang-btn {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    font-size: 0.95rem;
}

.mobile-lang-buttons .lang-btn.active {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--primary-color);
}

.mobile-contact-call {
    margin-top: 20px;
    font-size: 1.2rem !important;
    color: var(--accent-color) !important;
}

/* 4. Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 650px;
    background: linear-gradient(rgba(17, 21, 28, 0.75), rgba(17, 21, 28, 0.85)), 
                url('../images/hero-bg.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    color: #ffffff;
    padding-top: 100px;
}

.hero-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    max-width: 650px;
}

.hero-content h1 {
    font-size: 4rem;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 800;
}

.hero-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--primary-color);
    border: 1px solid var(--accent-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.btn-outline {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

/* 5. Hakkımızda Section */
.about-section {
    background-color: #ffffff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-img-box {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* Premium dekoratif arkaplan */
.about-img-box::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 3px solid var(--accent-color);
    border-radius: 12px;
    z-index: -1;
}

/* Görsel yokken yedek şık mermer görünümü */
.about-placeholder {
    width: 100%;
    height: 450px;
    background: linear-gradient(135deg, #212d40, #11151c);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--accent-color);
    text-align: center;
    padding: 40px;
}

.about-placeholder i {
    font-size: 4rem;
    margin-bottom: 20px;
}

.about-placeholder h3 {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.about-content h3 {
    font-size: 1.3rem;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-weight: 600;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    line-height: 1.3;
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.feat-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feat-item i {
    color: var(--accent-color);
    font-size: 1.3rem;
}

.feat-item span {
    font-weight: 600;
    color: var(--primary-color);
}

/* 6. Kategoriler & Galeri Section */
.collections-section {
    background-color: var(--light-bg);
}

.filter-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.filter-btn {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    color: var(--primary-color);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    font-family: var(--font-body);
    transition: var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.filter-btn:hover, .filter-btn.active {
    background-color: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
}

/* Galeri Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.gallery-item {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-slow);
    position: relative;
    border: 1px solid #eee;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.gallery-img-container {
    position: relative;
    height: 280px;
    overflow: hidden;
    background-color: #eaeaea;
}

.gallery-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-item:hover .gallery-img-container img {
    transform: scale(1.1);
}

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    opacity: 0;
    transition: var(--transition-fast);
    display: flex;
    align-items: flex-end;
    padding: 25px;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-info {
    color: #ffffff;
}

.gallery-item-info h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.gallery-item-info span {
    font-size: 0.85rem;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Galeri Boş Durumu */
.gallery-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    color: var(--text-muted);
}

.gallery-empty i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

/* 7. İletişim Section */
.contact-section {
    background-color: #ffffff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
}

.contact-form-box {
    background-color: var(--light-bg);
    padding: 50px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary-color);
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 1px solid #dddddd;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    background-color: #ffffff;
    transition: var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(197, 168, 128, 0.15);
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.contact-btn {
    background-color: var(--whatsapp-color);
    color: #ffffff;
    border: 1px solid var(--whatsapp-color);
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.contact-btn:hover {
    background-color: transparent;
    color: var(--whatsapp-color);
}

/* İletişim Bilgileri Kutusu */
.contact-info-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.info-header h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.info-header p {
    color: var(--text-muted);
    margin-bottom: 40px;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.info-card .icon-box {
    width: 50px;
    height: 50px;
    background-color: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 1.3rem;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.info-card h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.info-card p, .info-card a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.info-card a:hover {
    color: var(--accent-color);
}

/* 8. Footer */
.site-footer {
    background-color: var(--primary-color);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 30px 0;
    border-top: 3px solid var(--accent-color);
}

.footer-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    display: block;
    margin-bottom: 20px;
}

.footer-logo-image-link {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo-img {
    max-width: 320px;
    height: auto;
    max-height: 110px;
    display: block;
    object-fit: contain;
    filter: invert(1) brightness(2);
    transition: var(--transition-fast);
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.1rem;
}

.footer-socials a:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.footer-col h3 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 45px;
    height: 2px;
    background-color: var(--accent-color);
}

.links-col ul li {
    margin-bottom: 12px;
}

.links-col ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.contact-details-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-details-list li i {
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-top: 4px;
}

.contact-details-list li a:hover {
    color: var(--accent-color);
}

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

/* 9. Sabit WhatsApp Butonu (Ön Yüz) */
.whatsapp-sticky-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--whatsapp-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 999999;
    transition: var(--transition-fast);
}

.whatsapp-sticky-btn:hover {
    transform: scale(1.1);
    background-color: #20ba5a;
}

/* Pulsing Animasyon */
.whatsapp-sticky-btn .pulse-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid var(--whatsapp-color);
    border-radius: 50%;
    animation: whatsapp-pulse 2s infinite ease-out;
    z-index: -1;
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* 10. Admin Giriş Sayfası Stilleri */
.admin-login-body {
    background-color: var(--light-bg);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login-card {
    background-color: #ffffff;
    max-width: 450px;
    width: 100%;
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    border-top: 4px solid var(--accent-color);
}

.login-logo {
    text-align: center;
    margin-bottom: 30px;
}

.login-logo a {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.alert {
    padding: 12px 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.alert-danger {
    background-color: #fce8e6;
    color: #c5221f;
    border: 1px solid #fad2cf;
}

.alert-success {
    background-color: #e6f4ea;
    color: #137333;
    border: 1px solid #ceead6;
}

/* 11. Admin Arayüzü Stilleri */
.admin-header {
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-header h1 {
    color: #ffffff;
    font-size: 1.4rem;
}

.admin-header h1 span {
    color: var(--accent-color);
}

.admin-logout-btn {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
}

.admin-logout-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--accent-color);
}

.admin-container {
    width: 95%;
    max-width: 1300px;
    margin: 40px auto;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
}

.admin-sidebar {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid #eee;
    height: fit-content;
}

.admin-menu-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 15px;
    font-weight: 700;
}

.admin-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    border-radius: 6px;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 8px;
    cursor: pointer;
    background-color: transparent;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 0.95rem;
}

.admin-menu-item:hover, .admin-menu-item.active {
    background-color: var(--light-bg);
    color: var(--accent-color);
}

.admin-content-box {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid #eee;
}

.admin-section-title {
    font-size: 1.8rem;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Resim Yönetimi */
.admin-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.admin-gallery-card {
    background-color: #ffffff;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-sm);
}

.admin-gallery-img {
    height: 150px;
    overflow: hidden;
    background-color: #f0f0f0;
}

.admin-gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.admin-gallery-meta {
    padding: 10px;
}

.admin-gallery-meta span {
    font-size: 0.75rem;
    background-color: var(--light-bg);
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 600;
    color: var(--accent-color);
    text-transform: uppercase;
}

.admin-delete-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(197, 34, 31, 0.9);
    color: #ffffff;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.admin-delete-btn:hover {
    background-color: #c5221f;
    transform: scale(1.1);
}

/* Canlı WhatsApp Widget Admin */
.admin-whatsapp-widget {
    background-color: #e6f4ea;
    border: 1px solid #ceead6;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
}

.admin-whatsapp-widget-text {
    display: flex;
    align-items: center;
    gap: 15px;
}

.admin-whatsapp-widget-text i {
    font-size: 2rem;
    color: var(--whatsapp-color);
}

.admin-whatsapp-widget-text h4 {
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.admin-whatsapp-widget-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.admin-whatsapp-widget-btn {
    background-color: var(--whatsapp-color);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
}

.admin-whatsapp-widget-btn:hover {
    background-color: #20ba5a;
}

/* 12. Medya Sorguları / Mobil Uyum */
@media (max-width: 992px) {
    .about-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-img-box {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .admin-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .desktop-nav, .header-phone-btn {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .header-container {
        height: 80px;
    }
    .logo-img {
        max-width: 200px;
        height: auto;
        max-height: 70px;
    }
    
    .footer-logo-img {
        max-width: 240px;
        height: auto;
        max-height: 90px;
    }
    
    .hero-section {
        height: auto;
        min-height: calc(100vh - 80px);
        display: flex;
        align-items: center;
        padding: 100px 0 60px 0;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .contact-form-box {
        padding: 30px 20px;
    }
    
    .whatsapp-sticky-btn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 26px;
    }
    
    .mobile-nav a {
        font-size: 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .about-content h2 {
        font-size: 1.8rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   13. DİNAMİK BLOG MODÜLÜ VE CMS EK CSS KURALLARI
   ========================================================================== */

/* Blog Bölümü Stilleri */
.blog-section {
    background-color: var(--light-bg);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.blog-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-slow);
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.blog-card-img {
    height: 220px;
    overflow: hidden;
    background-color: #eaeaea;
    position: relative;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.08);
}

.blog-card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-card-meta i {
    color: var(--accent-color);
}

.blog-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
    color: var(--primary-color);
}

.blog-card-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-grow: 1;
}

.blog-card-link {
    font-weight: 600;
    color: var(--accent-color);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    font-size: 0.95rem;
}

.blog-card-link:hover {
    color: var(--primary-color);
}

/* Blog Detay Sayfası Stilleri */
.blog-detail-section {
    padding: 180px 0 100px 0;
    background-color: #ffffff;
}

.blog-detail-container {
    max-width: 850px;
    margin: 0 auto;
    width: 90%;
}

.blog-detail-back {
    margin-bottom: 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-weight: 500;
}

.blog-detail-back:hover {
    color: var(--accent-color);
}

.blog-detail-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.blog-detail-meta {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-detail-meta i {
    color: var(--accent-color);
}

.blog-detail-img-box {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 40px;
    max-height: 480px;
}

.blog-detail-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-detail-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444444;
}

.blog-detail-body p {
    margin-bottom: 25px;
}

/* CMS Çok Dilli Form Stilleri */
.admin-lang-group {
    background: #fcfcfc;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 25px;
    border-left: 4px solid var(--accent-color);
}

.admin-lang-group-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.admin-lang-group-title img {
    width: 20px;
    border-radius: 2px;
}

/* Tablo / Listeleme Stilleri (Admin Blog listesi) */
.admin-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.admin-table th, .admin-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.admin-table th {
    background-color: var(--light-bg);
    font-weight: 600;
    color: var(--primary-color);
}

.admin-table tr:hover {
    background-color: #fbfbfb;
}

.admin-action-btn {
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: none;
}

.admin-action-btn-danger {
    background-color: #fce8e6;
    color: #c5221f;
    border: 1px solid #fad2cf;
}

.admin-action-btn-danger:hover {
    background-color: #c5221f;
    color: #ffffff;
}

/* Blog listesinde görsel önizleme */
.admin-blog-thumb {
    width: 60px;
    height: 40px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid #ddd;
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .blog-detail-header h1 {
        font-size: 2.2rem;
    }
}

/* Custom CSS overrides for Logo, Footer Contrast, and WhatsApp */
.logo img, .logo-img, .footer-logo-img {
    max-width: 300px !important;
    height: auto !important;
}
.footer-logo, .footer-logo-img {
    filter: brightness(0) invert(1) !important;
}
.whatsapp-sticky-btn {
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    z-index: 999999 !important;
}

/* Mobile responsiveness & Image view fixes */
img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
}
@media (max-width: 768px) {
    body {
        overflow-x: hidden !important;
    }
    .grid, .container {
        grid-template-columns: 1fr !important;
        display: block !important;
    }
    .about-img-box {
        width: 100% !important;
        max-width: 500px !important;
        margin: 0 auto !important;
    }
    .about-placeholder {
        width: 100% !important;
        height: 350px !important; /* height adjusted for mobile screen */
    }
}

