/* ==================== MOBİL ÖNCELİKLİ KURALLAR ==================== */
/* Bu kurallar en üstte olduğu için önceliklidir */

@media (max-width: 768px) {
    /* HEADER SOSYAL MEDYA - MOBİLDE GİZLE */
    .header .top-bar .social-links,
    .top-bar .social-links,
    .social-links {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
    
    /* TOP-BAR TELEFON VE MAİL - SOLDA VE SAĞDA */
    .top-bar .contact-info {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        gap: 20px !important;
        width: 100% !important;
    }
}

@media (max-width: 480px) {
    /* HEADER SOSYAL MEDYA - MOBİLDE GİZLE */
    .header .top-bar .social-links,
    .top-bar .social-links,
    .social-links {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
    
    /* TOP-BAR TELEFON VE MAİL - SOLDA VE SAĞDA */
    .top-bar .contact-info {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        gap: 15px !important;
        width: 100% !important;
    }
}

/* ==================== RESET & BASE STYLES ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #8B4513;
    --secondary-color: #D4AF37;
    --accent-color: #C19A6B;
    --dark-color: #2C1810;
    --light-color: #F5F5DC;
    --white: #FFFFFF;
    --gray: #777777;
    --light-gray: #F8F8F8;
    --border-color: #E5E5E5;
    --danger-color: #e74c3c;
    
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Playfair Display', serif;
    
    --transition: all 0.3s ease;
    --shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark-color);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid transparent;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    line-height: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(139, 69, 19, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-color);
}

.btn-submit {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

/* ==================== TYPOGRAPHY ==================== */
.section-title {
    font-family: var(--font-secondary);
    font-size: 42px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray);
    margin-top: 15px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.title-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 0 auto;
    border-radius: 2px;
}

/* ==================== HEADER ==================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow);
}

.top-bar {
    background: var(--dark-color);
    color: var(--white);
    padding: 12px 0;
    font-size: 14px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.contact-info {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.contact-info a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    opacity: 0.9;
    transition: var(--transition);
    text-decoration: none;
}

.contact-info a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

.contact-info i {
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 10px;
    align-items: center;
}

.social-links a {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 15px;
    color: var(--white);
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-links a:hover {
    transform: translateY(-3px) scale(1.1);
    border-color: transparent;
}

/* Sosyal medya özel renkleri */
.social-links a[aria-label="Facebook"]:hover {
    background: #1877f2;
    box-shadow: 0 5px 15px rgba(24, 119, 242, 0.5);
}

.social-links a[aria-label="Instagram"]:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 5px 15px rgba(225, 48, 108, 0.5);
}

.social-links a[aria-label="Twitter"]:hover {
    background: #1da1f2;
    box-shadow: 0 5px 15px rgba(29, 161, 242, 0.5);
}

.social-links a[aria-label="LinkedIn"]:hover {
    background: #0077b5;
    box-shadow: 0 5px 15px rgba(0, 119, 181, 0.5);
}

.social-links a[aria-label="YouTube"]:hover {
    background: #ff0000;
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.5);
}

.social-links a[aria-label="WhatsApp"]:hover {
    background: #25d366;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.5);
}

/* ==================== NAVBAR ==================== */
.navbar {
    padding: 5px 0;
    background: var(--white);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Container */
.logo {
    padding: 0;
}

/* Site Logo Resmi */
.site-logo {
    height: 120px;
    width: auto;
    object-fit: contain;
    display: block;
}

.logo h1 {
    font-family: var(--font-secondary);
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2px;
}

.logo-subtitle {
    font-size: 12px;
    color: var(--gray);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    gap: 35px;
}

.nav-menu a {
    font-weight: 500;
    color: var(--dark-color);
    position: relative;
    padding: 5px 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a.active {
    color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-close {
    display: none;
}

.mobile-social-divider {
    display: none;
}

.mobile-social-links {
    display: none;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: var(--transition);
}

/* ==================== YENİ BASIT SLIDER ==================== */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    margin-top: 112px;
    overflow: hidden;
}

.hero-slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
}

.slide-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.slide-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.slide-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 2;
    padding: 0 20px;
}

.slide-title {
    color: #fff;
    font-family: var(--font-secondary);
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.slide-text {
    color: #fff;
    font-size: 20px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
    max-width: 800px;
}

.slide-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    color: #fff;
    border: none;
    padding: 16px;
    cursor: pointer;
    font-size: 18px;
    z-index: 10;
    transition: background 0.3s;
    border-radius: 4px;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.5);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s;
    border: none;
}

.dot.active {
    background: #fff;
}

@media (max-width: 768px) {
    .hero-section {
        margin-top: 112px;
    }
    
    .slide-title {
        font-size: 32px;
    }
    
    .slide-text {
        font-size: 16px;
    }
    
    .slider-btn {
        padding: 12px;
        font-size: 14px;
    }
}

.mouse {
    width: 28px;
    height: 48px;
    border: 2px solid var(--white);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 10px;
    background: var(--white);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0%, 100% {
        top: 8px;
        opacity: 1;
    }
    50% {
        top: 24px;
        opacity: 0.5;
    }
}

/* ==================== FEATURES SECTION ==================== */
.features {
    padding: 80px 0;
    background: var(--light-gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 32px;
    margin: 0 auto 25px;
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--dark-color);
}

.feature-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* ==================== ABOUT SECTION ==================== */
.about {
    padding: 100px 0;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--primary-color);
    color: var(--white);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
}

.experience-number {
    display: block;
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
}

.experience-text {
    display: block;
    font-size: 14px;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-text {
    padding: 20px 0;
}

.about-text .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.about-text .title-divider {
    margin-left: 0;
}

.lead-text {
    font-size: 20px;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.6;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--gray);
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 30px 0;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark-color);
    font-weight: 500;
}

.about-features i {
    color: var(--secondary-color);
    font-size: 18px;
}

/* ==================== PRODUCTS SECTION ==================== */
.products {
    padding: 100px 0;
    background: var(--light-gray);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.product-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-info {
    padding: 25px;
}

.product-info h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
}

.product-info h3 a {
    color: var(--dark-color);
    text-decoration: none;
}

.product-info h3 a:hover {
    color: var(--primary-color);
}

.product-info p {
    color: var(--gray);
    line-height: 1.6;
    font-size: 15px;
    margin-bottom: 20px;
}

/* ==================== GALLERY SECTION ==================== */
.gallery {
    padding: 100px 0;
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(139, 69, 19, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 48px;
    color: var(--white);
}

/* ==================== TESTIMONIALS SECTION ==================== */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
    color: var(--white);
}

.testimonials .section-title,
.testimonials .title-divider {
    color: var(--white);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-content {
    text-align: center;
}

.quote-icon {
    font-size: 42px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.testimonial-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.testimonial-author span {
    font-size: 14px;
    opacity: 0.9;
    display: block;
    margin-bottom: 10px;
}

.rating {
    display: flex;
    gap: 5px;
    justify-content: center;
    margin-top: 15px;
}

.rating i {
    color: var(--secondary-color);
    font-size: 16px;
}

/* ==================== BLOG SECTION ==================== */
.blog {
    padding: 100px 0;
    background: var(--white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.blog-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.blog-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    display: block;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.blog-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--gray);
}

.blog-meta i {
    color: var(--primary-color);
    font-size: 14px;
}

.blog-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-content h3 a {
    color: var(--dark-color);
    transition: var(--transition);
}

.blog-content h3 a:hover {
    color: var(--primary-color);
}

.blog-content p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
}

.blog-read-more:hover {
    gap: 12px;
    color: var(--secondary-color);
}

.blog-read-more i {
    font-size: 14px;
    transition: var(--transition);
}

/* ==================== BLOG PAGE ==================== */
.page-header-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
    padding: 140px 0 80px;
    margin-top: 112px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.page-header-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: bottom;
    opacity: 0.3;
}

.page-header-title {
    font-family: var(--font-secondary);
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 15px;
    position: relative;
    z-index: 1;
}

.breadcrumb a {
    color: var(--white);
    opacity: 0.9;
    transition: var(--transition);
}

.breadcrumb a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

.blog-page {
    padding: 80px 0;
    background: var(--light-gray);
}

.blog-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 50px;
}

.blog-main .blog-grid {
    grid-template-columns: 1fr;
    gap: 40px;
}

.blog-sidebar {
    position: sticky;
    top: 140px;
    align-self: start;
}

.sidebar-widget {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.widget-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
    color: var(--dark-color);
}

.category-list {
    list-style: none;
}

.category-list li {
    margin-bottom: 12px;
}

.category-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    border-radius: 8px;
    color: var(--dark-color);
    transition: var(--transition);
}

.category-list a:hover,
.category-list a.active {
    background: var(--primary-color);
    color: var(--white);
}

.category-list i {
    font-size: 14px;
}

.popular-posts {
    list-style: none;
}

.popular-posts li {
    margin-bottom: 20px;
}

.popular-post {
    display: flex;
    gap: 15px;
    transition: var(--transition);
}

.popular-post:hover {
    transform: translateX(5px);
}

.popular-post img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
}

.popular-post-content h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark-color);
    line-height: 1.4;
}

.popular-post-content span {
    font-size: 13px;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 5px;
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.pagination-btn,
.pagination-number {
    padding: 10px 18px;
    border-radius: 8px;
    color: var(--dark-color);
    background: var(--white);
    border: 2px solid var(--border-color);
    transition: var(--transition);
    font-weight: 500;
}

.pagination-btn:hover,
.pagination-number:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.pagination-number.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.no-posts {
    text-align: center;
    padding: 80px 20px;
    background: var(--white);
    border-radius: 15px;
}

.no-posts i {
    font-size: 80px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.no-posts h3 {
    font-size: 28px;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.no-posts p {
    color: var(--gray);
    font-size: 16px;
}

/* ==================== CONTACT SECTION ==================== */
.contact {
    padding: 100px 0;
    background: var(--light-gray);
}

.contact-content {
    margin-bottom: 60px;
}

.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.contact-info-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 28px;
    margin: 0 auto 20px;
}

.contact-info-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--dark-color);
}

.contact-info-card p {
    color: var(--gray);
    line-height: 1.7;
}

/* Contact Form */
.contact-form-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.form-group input,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-family: var(--font-primary);
    font-size: 15px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* ==================== FOOTER ==================== */
.footer {
    position: relative;
    background: var(--dark-color);
    color: var(--white);
    padding: 0;
    overflow: hidden;
}

.footer-wave {
    position: relative;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.footer-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 120px;
}

.footer .container {
    padding: 60px 20px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-col h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-col h3 i {
    font-size: 18px;
}

.footer-col-about {
    padding-right: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo i {
    font-size: 32px;
    color: var(--secondary-color);
}

.footer-logo h3 {
    font-family: var(--font-secondary);
    font-size: 28px;
    margin: 0;
    color: var(--white);
}

.footer-col p {
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.85);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 14px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.85);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 0;
}

.footer-col ul li a i.fa-chevron-right {
    font-size: 10px;
    color: var(--secondary-color);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--secondary-color);
    padding-left: 8px;
}

.footer-col ul li a:hover i.fa-chevron-right {
    transform: translateX(5px);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-contact li {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0 !important;
}

.footer-contact li i {
    color: var(--secondary-color);
    margin-top: 3px;
    font-size: 16px;
    min-width: 20px;
}

.footer-contact li div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-contact li strong {
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
}

.footer-contact li span {
    font-size: 14px;
    opacity: 0.9;
}

.footer-social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-social a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
    font-size: 18px;
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.footer-social a::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--secondary-color);
    opacity: 0;
    transition: var(--transition);
    transform: scale(0);
}

.footer-social a i {
    position: relative;
    z-index: 1;
}

.footer-social a:hover::before {
    opacity: 1;
    transform: scale(1);
}

.footer-social a:hover {
    transform: translateY(-5px) rotate(5deg);
    border-color: transparent;
}

/* Footer sosyal medya özel renkleri */
.footer-social a[aria-label="Facebook"]:hover::before {
    background: #1877f2;
}
.footer-social a[aria-label="Facebook"]:hover {
    box-shadow: 0 8px 20px rgba(24, 119, 242, 0.5);
}

.footer-social a[aria-label="Instagram"]:hover::before {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
.footer-social a[aria-label="Instagram"]:hover {
    box-shadow: 0 8px 20px rgba(225, 48, 108, 0.5);
}

.footer-social a[aria-label="Twitter"]:hover::before {
    background: #1da1f2;
}
.footer-social a[aria-label="Twitter"]:hover {
    box-shadow: 0 8px 20px rgba(29, 161, 242, 0.5);
}

.footer-social a[aria-label="LinkedIn"]:hover::before {
    background: #0077b5;
}
.footer-social a[aria-label="LinkedIn"]:hover {
    box-shadow: 0 8px 20px rgba(0, 119, 181, 0.5);
}

.footer-social a[aria-label="YouTube"]:hover::before {
    background: #ff0000;
}
.footer-social a[aria-label="YouTube"]:hover {
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.5);
}

.footer-social a[aria-label="WhatsApp"]:hover::before {
    background: #25d366;
}
.footer-social a[aria-label="WhatsApp"]:hover {
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.5);
}

.footer-bottom {
    background: transparent;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    margin: 0;
    opacity: 0.85;
    font-size: 14px;
}

.footer-bottom strong {
    color: var(--secondary-color);
    font-weight: 600;
}

.footer-credits {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-credits i {
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    10%, 30% {
        transform: scale(1.1);
    }
    20%, 40% {
        transform: scale(1);
    }
}

/* ==================== SCROLL TO TOP BUTTON ==================== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    z-index: 999;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.scroll-to-top.active {
    display: flex;
}

/* ==================== WHATSAPP FLOATING BUTTON ==================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 9998;
    transition: all 0.3s ease;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    background: #128C7E;
}

@keyframes whatsappPulse {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.8);
    }
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 968px) {
    .section-title {
        font-size: 36px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-text .section-title {
        text-align: center;
    }
    
    .about-text .title-divider {
        margin-left: auto;
        margin-right: auto;
    }
    
    .products-grid,
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .contact-form-wrapper {
        padding: 35px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-col-about {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .top-bar {
        padding: 8px 0;
    }
    
    .top-bar-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
    }
    
    .contact-info {
        display: flex;
        flex-direction: row;
        gap: 15px;
        font-size: 12px;
        align-items: center;
    }
    
    .contact-info a {
        font-size: 12px;
        gap: 6px;
    }
    
    .contact-info i {
        font-size: 12px;
    }
    
    /* Mobilde sosyal medya gizle - burger menüde göster */
    .top-bar .social-links {
        display: none !important;
    }
    
    /* Mobil menü kapatma butonu */
    .mobile-menu-close {
        display: block;
        position: absolute;
        top: 15px;
        right: 15px;
        background: var(--danger-color);
        color: var(--white);
        border: none;
        width: 35px;
        height: 35px;
        border-radius: 50%;
        font-size: 16px;
        cursor: pointer;
        transition: var(--transition);
        z-index: 1001;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .mobile-menu-close:hover {
        background: #c0392b;
        transform: rotate(90deg) scale(1.1);
    }
    
    /* Mobil menü sosyal medya */
    .mobile-social-divider {
        border-top: 1px solid var(--border-color);
        margin: 20px 0;
        padding: 0;
        list-style: none;
    }
    
    .mobile-social-links {
        display: flex;
        flex-direction: row !important;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
        padding: 15px 0;
        list-style: none;
        margin: 0;
    }
    
    .mobile-social-links a {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
        color: var(--white);
        border-radius: 50%;
        font-size: 18px;
        transition: var(--transition);
        flex-shrink: 0;
    }
    
    .mobile-social-links a:hover {
        transform: translateY(-3px) scale(1.1);
        box-shadow: 0 5px 15px rgba(139, 69, 19, 0.3);
    }
    
    .nav-menu {
        position: fixed;
        top: 112px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 112px);
        background: var(--white);
        flex-direction: column;
        padding: 60px 30px 30px;
        gap: 20px;
        box-shadow: var(--shadow);
        transition: left 0.3s ease;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero {
        margin-top: 112px;
        min-height: 600px;
    }
    
    .hero-title {
        font-size: 38px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    /* Hide slider controls on mobile, show indicators only */
    .slider-control {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .slider-control.prev {
        left: 15px;
    }
    
    .slider-control.next {
        right: 15px;
    }
    
    .slider-indicators {
        bottom: 60px;
    }
    
    .indicator {
        width: 40px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
    
    .blog-layout {
        grid-template-columns: 1fr;
    }
    
    .blog-sidebar {
        position: relative;
        top: 0;
    }
    
    .page-header-title {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    /* Top bar çok daha kompakt */
    .top-bar {
        padding: 8px 0;
    }
    
    .top-bar-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
    }
    
    .contact-info {
        display: flex;
        flex-direction: row;
        gap: 12px;
        font-size: 11px;
        align-items: center;
    }
    
    .contact-info a {
        font-size: 11px;
        gap: 5px;
    }
    
    .contact-info i {
        font-size: 11px;
        flex-shrink: 0;
    }
    
    /* Mobilde sosyal medya gizle */
    .top-bar .social-links {
        display: none !important;
    }
    
    /* Mobil menü kapatma butonu */
    .mobile-menu-close {
        display: flex;
        top: 12px;
        right: 12px;
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    /* Mobil sosyal medya stilleri */
    .mobile-social-divider {
        display: block;
    }
    
    .mobile-social-links {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    .mobile-social-links a {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .logo h1 {
        font-size: 26px;
    }
    
    .site-logo {
        height: 50px !important;
        width: auto !important;
    }
    
    .navbar {
        padding: 15px 0 !important;
    }
    
    .logo {
        padding: 5px 0 !important;
    }
    
    .contact-form-wrapper {
        padding: 25px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .footer-col-about {
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    /* Mobile slider adjustments */
    .slider-control {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .slider-control.prev {
        left: 10px;
    }
    
    .slider-control.next {
        right: 10px;
    }
    
    .slider-indicators {
        bottom: 40px;
        gap: 8px;
    }
    
    .indicator {
        width: 30px;
        height: 3px;
    }
    
    /* WhatsApp and scroll buttons mobile adjustments */
    .whatsapp-float {
        bottom: 100px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 30px;
    }
    
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

/* Slider animation improvements */
.hero-slide .hero-content {
    opacity: 1;
    transform: translateY(0);
}

.hero-slide.active .hero-content {
    opacity: 1;
    transform: translateY(0);
}

/* ==================== KEYFRAME ANIMATIONS ==================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


/* ==================== BLOG DETAIL PAGE ==================== */
.blog-detail-page {
    margin-top: 112px;
    background: var(--white);
}

.blog-detail-header {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.blog-detail-featured-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-detail-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.5));
}

.blog-detail-container {
    max-width: 900px;
    margin: -80px auto 0;
    padding: 0 20px 80px;
    position: relative;
    z-index: 2;
}

.blog-detail-content {
    background: var(--white);
    padding: 50px 60px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.breadcrumb-detail {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.breadcrumb-detail a {
    color: var(--gray);
    transition: var(--transition);
}

.breadcrumb-detail a:hover {
    color: var(--primary-color);
}

.breadcrumb-detail span {
    color: var(--border-color);
}

.blog-detail-category {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    transition: var(--transition);
}

.blog-detail-category:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.blog-detail-title {
    font-family: var(--font-secondary);
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark-color);
    margin-bottom: 25px;
}

.blog-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 2px solid var(--light-gray);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray);
    font-size: 15px;
}

.meta-item i {
    color: var(--primary-color);
    font-size: 16px;
}

.blog-detail-body {
    font-size: 17px;
    line-height: 1.9;
    color: #333;
}

.blog-detail-body p {
    margin-bottom: 20px;
}

.blog-detail-body h2 {
    font-family: var(--font-secondary);
    font-size: 32px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.blog-detail-body h3 {
    font-size: 26px;
    font-weight: 600;
    margin-top: 35px;
    margin-bottom: 18px;
    color: var(--dark-color);
}

.blog-detail-body ul,
.blog-detail-body ol {
    margin: 20px 0;
    padding-left: 30px;
}

.blog-detail-body li {
    margin-bottom: 10px;
    line-height: 1.8;
}

.blog-detail-body strong {
    color: var(--dark-color);
    font-weight: 600;
}

.blog-detail-body em {
    font-style: italic;
    color: var(--primary-color);
}

.blog-detail-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding: 25px 0;
    margin-top: 40px;
    border-top: 2px solid var(--light-gray);
}

.blog-detail-tags strong {
    color: var(--dark-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.tag {
    background: var(--light-gray);
    color: var(--dark-color);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    transition: var(--transition);
}

.tag:hover {
    background: var(--primary-color);
    color: var(--white);
}

.blog-detail-share {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    padding: 25px 0;
    border-top: 2px solid var(--light-gray);
    margin-top: 30px;
}

.blog-detail-share strong {
    color: var(--dark-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    font-size: 18px;
    transition: var(--transition);
}

.share-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.share-btn.facebook { background: #1877f2; }
.share-btn.twitter { background: #1da1f2; }
.share-btn.linkedin { background: #0077b5; }
.share-btn.whatsapp { background: #25d366; }

.blog-detail-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px solid var(--light-gray);
}

.nav-post {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--light-gray);
    border-radius: 12px;
    transition: var(--transition);
}

.nav-post:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateX(-5px);
}

.next-post:hover {
    transform: translateX(5px);
}

.nav-post i {
    font-size: 24px;
    color: var(--primary-color);
}

.nav-post:hover i {
    color: var(--white);
}

.nav-post div span {
    display: block;
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 5px;
}

.nav-post:hover div span {
    color: rgba(255, 255, 255, 0.8);
}

.nav-post div strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark-color);
}

.nav-post:hover div strong {
    color: var(--white);
}

.next-post {
    justify-content: flex-end;
    text-align: right;
}

.related-posts {
    margin-top: 60px;
    padding-top: 50px;
    border-top: 3px solid var(--primary-color);
}

.related-title {
    font-family: var(--font-secondary);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--dark-color);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.related-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.related-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.related-image {
    display: block;
    height: 180px;
    overflow: hidden;
}

.related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.related-card:hover .related-image img {
    transform: scale(1.1);
}

.related-content {
    padding: 20px;
}

.related-date {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 10px;
}

.related-content h3 {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
}

.related-content h3 a {
    color: var(--dark-color);
    transition: var(--transition);
}

.related-content h3 a:hover {
    color: var(--primary-color);
}

/* Blog Detail Responsive */
@media (max-width: 968px) {
    .blog-detail-header {
        height: 350px;
    }
    
    .blog-detail-content {
        padding: 40px 30px;
    }
    
    .blog-detail-title {
        font-size: 32px;
    }
    
    .blog-detail-navigation {
        grid-template-columns: 1fr;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .blog-detail-header {
        height: 250px;
    }
    
    .blog-detail-content {
        padding: 30px 20px;
    }
    
    .blog-detail-title {
        font-size: 26px;
    }
    
    .blog-detail-body {
        font-size: 16px;
    }
    
    .blog-detail-meta {
        gap: 15px;
    }
}


/* ==================== PRODUCT DETAIL PAGE ==================== */
.product-detail-page {
    margin-top: 112px;
    background: var(--white);
}

.product-detail-header {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.product-detail-featured-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-detail-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.6));
}

.product-detail-container {
    max-width: 1000px;
    margin: -80px auto 0;
    padding: 0 20px 80px;
    position: relative;
    z-index: 2;
}

.product-detail-content {
    background: var(--white);
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.product-detail-category {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.product-detail-title {
    font-family: var(--font-secondary);
    font-size: 44px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.product-detail-excerpt {
    font-size: 20px;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--light-gray);
}

.product-detail-cta {
    display: flex;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.btn-lg {
    padding: 16px 35px;
    font-size: 16px;
}

.product-detail-body {
    font-size: 17px;
    line-height: 1.9;
    color: #333;
    margin-bottom: 50px;
}

.product-detail-body p {
    margin-bottom: 20px;
}

.product-detail-body h2 {
    font-family: var(--font-secondary);
    font-size: 32px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.product-detail-body h3 {
    font-size: 26px;
    font-weight: 600;
    margin-top: 35px;
    margin-bottom: 18px;
    color: var(--dark-color);
}

.product-features-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 50px 0;
}

.features-box,
.benefits-box {
    background: var(--light-gray);
    padding: 35px;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
}

.features-box h3,
.benefits-box h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.features-box h3 i {
    color: var(--primary-color);
    font-size: 24px;
}

.benefits-box {
    border-left-color: var(--secondary-color);
}

.benefits-box h3 i {
    color: var(--secondary-color);
    font-size: 24px;
}

.features-box ul,
.benefits-box ul {
    list-style: none;
    padding: 0;
}

.features-box li,
.benefits-box li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    line-height: 1.7;
}

.features-box li i,
.benefits-box li i {
    color: var(--primary-color);
    margin-top: 5px;
    font-size: 12px;
}

.product-contact-form {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
    color: var(--white);
    padding: 50px;
    border-radius: 20px;
    margin: 60px 0;
}

.product-contact-form h2 {
    font-size: 32px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.product-contact-form p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.product-contact-form .form-group label {
    color: var(--white);
}

.product-contact-form .btn {
    width: auto;
}

.related-products {
    margin-top: 60px;
    padding-top: 50px;
    border-top: 3px solid var(--primary-color);
}

.related-products .related-title {
    font-family: var(--font-secondary);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--dark-color);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.related-product-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.related-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.related-product-image {
    display: block;
    height: 200px;
    overflow: hidden;
}

.related-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.related-product-card:hover .related-product-image img {
    transform: scale(1.1);
}

.related-product-content {
    padding: 25px;
}

.related-product-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
}

.related-product-content h3 a {
    color: var(--dark-color);
    transition: var(--transition);
}

.related-product-content h3 a:hover {
    color: var(--primary-color);
}

.related-product-content p {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.btn-link:hover {
    gap: 12px;
    color: var(--secondary-color);
}

/* Product Detail Responsive */
@media (max-width: 968px) {
    .product-detail-header {
        height: 350px;
    }
    
    .product-detail-content {
        padding: 40px 30px;
    }
    
    .product-detail-title {
        font-size: 34px;
    }
    
    .product-features-benefits {
        grid-template-columns: 1fr;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .product-detail-cta {
        flex-direction: column;
    }
    
    .product-contact-form {
        padding: 35px 25px;
        margin: 30px 15px;
    }
    
    .product-contact-form .form-row {
        display: flex !important;
        flex-direction: column !important;
        gap: 15px;
    }
    
    .product-contact-form .form-group {
        width: 100%;
    }
    
    .product-contact-form input,
    .product-contact-form textarea {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .product-detail-header {
        height: 250px;
    }
    
    .product-detail-content {
        padding: 30px 20px;
    }
    
    .product-detail-title {
        font-size: 28px;
    }
    
    .product-detail-excerpt {
        font-size: 16px;
    }
    
    .features-box,
    .benefits-box {
        padding: 25px 20px;
    }
    
    .product-contact-form {
        padding: 25px 15px;
        margin: 30px 10px;
    }
    
    .product-contact-form h2 {
        font-size: 24px;
    }
    
    .product-contact-form p {
        font-size: 14px;
    }
    
    .product-contact-form .form-row {
        display: flex !important;
        flex-direction: column !important;
        gap: 15px;
    }
    
    .product-contact-form .form-group {
        width: 100%;
    }
    
    .product-contact-form input,
    .product-contact-form textarea {
        font-size: 14px;
        padding: 12px 14px;
        width: 100%;
    }
    
    .product-contact-form .btn {
        width: 100%;
        padding: 14px;
        font-size: 15px;
    }
}


/* ==================== RESPONSIVE DESIGN ==================== */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .blog-layout {
        grid-template-columns: 1fr;
    }
    
    .blog-sidebar {
        position: static;
    }
}

/* Mobile Landscape & Small Tablets (max-width: 768px) */
@media (max-width: 768px) {
    /* Typography */
    .section-title {
        font-size: 32px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    /* Header */
    .top-bar {
        padding: 10px 0;
    }
    
    .top-bar-content {
        flex-direction: column;
        gap: 10px;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }
    
    .social-links {
        justify-content: center;
    }
    
    /* Navbar */
    .navbar {
        padding: 15px 0;
    }
    
    .logo h1 {
        font-size: 26px;
    }
    
    .logo-subtitle {
        font-size: 10px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 112px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 112px);
        background: var(--white);
        flex-direction: column;
        padding: 30px;
        gap: 0;
        box-shadow: var(--shadow);
        transition: left 0.3s ease;
        overflow-y: auto;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav-menu a {
        display: block;
        padding: 15px 0;
        font-size: 18px;
    }
    
    /* Hero */
    .hero-section {
        height: 70vh;
        min-height: 500px;
    }
    
    .slide-title {
        font-size: 28px;
    }
    
    .slide-text {
        font-size: 14px;
    }
    
    .slide-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .slide-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .slider-btn {
        padding: 10px;
        font-size: 12px;
    }
    
    .prev-btn {
        left: 10px;
    }
    
    .next-btn {
        right: 10px;
    }
    
    /* Features */
    .features {
        padding: 60px 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* About */
    .about {
        padding: 60px 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .experience-badge {
        bottom: 20px;
        right: 20px;
        padding: 20px;
    }
    
    .experience-number {
        font-size: 32px;
    }
    
    /* Products */
    .products {
        padding: 60px 0;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .product-image {
        height: 250px;
    }
    
    /* Gallery */
    .gallery {
        padding: 60px 0;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .gallery-item {
        height: 250px;
    }
    
    /* Testimonials */
    .testimonials {
        padding: 60px 0;
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    /* Blog */
    .blog {
        padding: 60px 0;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .blog-image {
        height: 220px;
    }
    
    /* Contact */
    .contact {
        padding: 60px 0;
    }
    
    .contact-info-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .footer-col-about {
        padding-right: 0;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

/* Mobile Portrait (max-width: 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .section-subtitle {
        font-size: 14px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .slide-title {
        font-size: 24px;
    }
    
    .slide-text {
        font-size: 13px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .blog-meta {
        flex-direction: column;
        gap: 8px;
    }
    
    .contact-form-wrapper {
        padding: 25px 15px;
    }
    
    .contact-form .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .contact-form input,
    .contact-form textarea {
        font-size: 14px;
        padding: 12px 14px;
    }
    
    .contact-info-cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-info-card {
        padding: 20px 15px;
    }
    
    .contact-info-card h3 {
        font-size: 16px;
    }
    
    .contact-info-card p {
        font-size: 13px;
        word-break: break-word;
        overflow-wrap: break-word;
    }
    
    .footer-contact li {
        font-size: 13px;
    }
    
    .footer-contact li strong,
    .footer-contact li span {
        font-size: 13px;
        word-break: break-word;
        overflow-wrap: break-word;
    }
    
    .footer-col {
        padding: 20px 15px;
    }
    
    .footer-col ul li a {
        font-size: 13px;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }
    
    .scroll-to-top {
        width: 45px;
        height: 45px;
        font-size: 18px;
        bottom: 20px;
        right: 20px;
    }
}

/* Admin Panel Responsive */
@media (max-width: 768px) {
    .admin-sidebar {
        width: 250px;
        transform: translateX(-100%);
    }
    
    .admin-sidebar.active {
        transform: translateX(0);
    }
    
    .admin-main {
        margin-left: 0;
        width: 100%;
    }
    
    .admin-header {
        left: 0;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .table-wrapper {
        overflow-x: auto;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}


/* ==================== MOBİL OVERRIDE - EN SON KURALLAR ==================== */
/* Bu kurallar dosyanın en sonunda olduğu için tüm diğer kuralları ezer */

@media screen and (max-width: 768px) {
    /* Top-bar sosyal medya - MUTLAKA GİZLE */
    header .top-bar .social-links,
    .header .top-bar .social-links,
    .top-bar .social-links,
    div.top-bar div.social-links {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        height: 0 !important;
        width: 0 !important;
        overflow: hidden !important;
    }
    
    /* Top-bar telefon ve mail YAN YANA, SOLDA-SAĞDA */
    .top-bar .contact-info {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        gap: 20px !important;
        width: 100% !important;
    }
    
    /* Mobile social links - YAN YANA DİZ */
    .nav-menu .mobile-social-links,
    ul.nav-menu li.mobile-social-links,
    .mobile-social-links {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 12px !important;
    }
    
    /* Sosyal medya ikonları - YUVARLAK İÇİNE OTUR */
    .mobile-social-links a {
        width: 42px !important;
        height: 42px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 50% !important;
        font-size: 18px !important;
        padding: 0 !important;
        line-height: 1 !important;
    }
    
    /* Mobile menu close - KÜÇÜK YAP */
    .nav-menu .mobile-menu-close,
    .mobile-menu-close {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 35px !important;
        height: 35px !important;
        font-size: 16px !important;
        top: 15px !important;
        right: 15px !important;
        padding: 0 !important;
        line-height: 1 !important;
    }
    
    /* Nav menu - YUKARIDAN AÇ */
    .nav-menu {
        top: 108px !important;
        padding-top: 50px !important;
    }
}

@media screen and (max-width: 480px) {
    /* Top-bar sosyal medya - MUTLAKA GİZLE */
    header .top-bar .social-links,
    .header .top-bar .social-links,
    .top-bar .social-links,
    div.top-bar div.social-links {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        height: 0 !important;
        width: 0 !important;
        overflow: hidden !important;
    }
    
    /* Top-bar telefon ve mail YAN YANA, SOLDA-SAĞDA */
    .top-bar .contact-info {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        gap: 15px !important;
        width: 100% !important;
    }
    
    /* Mobile social links - YAN YANA DİZ */
    .nav-menu .mobile-social-links,
    ul.nav-menu li.mobile-social-links,
    .mobile-social-links {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 10px !important;
    }
    
    /* Sosyal medya ikonları - YUVARLAK İÇİNE OTUR */
    .mobile-social-links a {
        width: 38px !important;
        height: 38px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 50% !important;
        font-size: 16px !important;
        padding: 0 !important;
        line-height: 1 !important;
    }
    
    /* Mobile menu close - DAHA DA KÜÇÜK */
    .nav-menu .mobile-menu-close,
    .mobile-menu-close {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 32px !important;
        height: 32px !important;
        font-size: 14px !important;
        top: 12px !important;
        right: 12px !important;
        padding: 0 !important;
        line-height: 1 !important;
    }
    
    /* Nav menu - YUKARIDAN AÇ */
    .nav-menu {
        top: 108px !important;
        padding-top: 45px !important;
    }
}

/* ==================== SON ==================== */
