﻿    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    html, body {
        height: 100%;
        overflow-x: hidden;
    }

    body {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        line-height: 1.6;
        color: #333;
    }

    .container {
        max-width: 1000px; /* 1200px'den 1000px'e düşürüldü */
        margin: 0 auto;
        padding: 0 15px; /* 20px'den 15px'e düşürüldü */
    }

    /* ==================== COLOR SCHEME ==================== */
    :root {
        --primary-color: #8B1538; /* Bordo */
        --primary-dark: #6B0F2A; /* Koyu bordo */
        --primary-light: #A41E42; /* Açık bordo */
        --secondary-color: #2c3e50; /* Koyu gri/siyah */
        --accent-color: #E8E8E8; /* Açık gri/beyaz */
        --text-dark: #2c3e50;
        --text-light: #7f8c8d;
        --white: #ffffff;
        --light-bg: #f8f9fa;
    }

    /* Header/Navbar */
    .top-header {
        background: black;
        color: white;
        padding: 8px 0; /* 10px'den 8px'e düşürüldü */
        font-size: 13px; /* 14px'den 13px'e düşürüldü */
        position: relative;
        z-index: 1001;
    }

    .top-header-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .contact-info {
        display: flex;
        gap: 25px; /* 30px'den 25px'e düşürüldü */
    }

        .contact-info span {
            display: flex;
            align-items: center;
            gap: 6px; /* 8px'den 6px'e düşürüldü */
        }

    .social-links {
        display: flex;
        gap: 8px; /* 10px'den 8px'e düşürüldü */
    }

        .social-links a {
            color: white;
            width: 28px; /* 30px'den 28px'e düşürüldü */
            height: 28px;
            background: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: background 0.3s;
        }

            .social-links a:hover {
                background: var(--primary-dark);
            }

    .main-header {
        background: black;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        position: sticky;
        top: 0;
        z-index: 1000;
        transition: transform 0.3s ease;
    }

    .main-header-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 0; /* 15px'den 12px'e düşürüldü */
    }

    .logo {
        display: flex;
        align-items: center;
        gap: 12px; /* 15px'den 12px'e düşürüldü */
    }

    .logo-icon {
        width: 45px; /* 50px'den 45px'e düşürüldü */
        height: 45px;
        background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 20px; /* 24px'den 20px'e düşürüldü */
    }

    .logo-text h1 {
        font-size: 24px; /* 28px'den 24px'e düşürüldü */
        color: white;
        font-weight: bold;
    }

    .logo-text p {
        font-size: 11px; /* 12px'den 11px'e düşürüldü */
        color: #cccccc;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .company-logo {
        height: 45px; /* 50px'den 45px'e düşürüldü */
        width: auto;
        max-width: 55px; /* 60px'den 55px'e düşürüldü */
        object-fit: contain;
    }

    .main-nav ul {
        display: flex;
        list-style: none;
        gap: 35px; /* 40px'den 35px'e düşürüldü */
    }

    .main-nav a {
        color: white;
        text-decoration: none;
        font-weight: 500;
        padding: 8px 0; /* 10px'den 8px'e düşürüldü */
        transition: color 0.3s;
        font-size: 14px; /* Font boyutu eklendi */
    }

        .main-nav a:hover,
        .main-nav a.active {
            color: #cccccc;
        }

    .header-cta {
        display: flex;
        align-items: center;
        gap: 12px; /* 15px'den 12px'e düşürüldü */
        background: var(--primary-color);
        color: white;
        padding: 10px 20px; /* 12px 25px'den küçültüldü */
        border-radius: 20px; /* 25px'den 20px'e düşürüldü */
        text-decoration: none;
        font-weight: bold;
        transition: background 0.3s;
        font-size: 13px; /* Font boyutu eklendi */
    }

        .header-cta:hover {
            background: var(--primary-dark);
        }

    /* ==================== MOBİL MENU STYLES ==================== */
    .mobile-menu-toggle {
        display: none;
        background: none;
        border: none;
        color: white;
        font-size: 1.2rem;
        cursor: pointer;
        padding: 8px;
        border-radius: 4px;
        transition: background 0.3s;
    }

        .mobile-menu-toggle:hover {
            background: rgba(255, 255, 255, 0.1);
        }

    .mobile-menu-close {
        display: none;
        position: absolute;
        top: 20px;
        right: 20px;
        background: rgba(255, 255, 255, 0.1);
        border: none;
        color: white;
        font-size: 1.5rem;
        cursor: pointer;
        padding: 10px;
        border-radius: 50%;
        width: 45px;
        height: 45px;
        z-index: 1003;
    }

    /* ==================== HERO SLIDER STYLES ==================== */
    .hero-slider {
        position: relative;
        height: 90vh; /* 100vh'den 90vh'e düşürüldü */
        min-height: 550px; /* 600px'den 550px'e düşürüldü */
        overflow: hidden;
    }

    .hero-slides {
        position: relative;
        width: 100%;
        height: 100%;
    }

    .hero-slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity 1s ease-in-out;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .hero-slide.active {
            opacity: 1;
        }

    .hero-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        filter: brightness(0.7);
        transform: scale(1);
        transition: transform 7s ease-out;
    }

    .hero-slide.active .hero-background {
        transform: scale(1.05);
    }

    .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(139, 21, 56, 0.8) 0%, rgba(44, 62, 80, 0.6) 100%);
    }

    .hero-content {
        position: relative;
        z-index: 2;
        text-align: center;
        color: white;
        max-width: 800px; /* 900px'den 800px'e düşürüldü */
        padding: 0 15px; /* 20px'den 15px'e düşürüldü */
        animation: slideInUp 1s ease-out;
    }

    .hero-slide.active .hero-content {
        animation: slideInUp 1s ease-out;
    }

    .hero-badge {
        background: rgba(255, 255, 255, 0.2);
        color: white;
        padding: 6px 20px; /* 8px 24px'den küçültüldü */
        border-radius: 20px; /* 25px'den 20px'e düşürüldü */
        font-size: 13px; /* 14px'den 13px'e düşürüldü */
        font-weight: 600;
        display: inline-block;
        margin-bottom: 25px; /* 30px'den 25px'e düşürüldü */
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        letter-spacing: 1px;
    }

    .hero-content h1 {
        font-size: 3.2rem; /* 3.8rem'den 3.2rem'e düşürüldü */
        font-weight: 700;
        margin-bottom: 25px; /* 30px'den 25px'e düşürüldü */
        line-height: 1.2;
    }

        .hero-content h1 .highlight {
            color: var(--primary-color);
            text-shadow: 0 0 10px rgba(139, 21, 56, 0.5);
        }

    .hero-content p {
        font-size: 1.2rem; /* 1.4rem'den 1.2rem'e düşürüldü */
        margin-bottom: 35px; /* 40px'den 35px'e düşürüldü */
        opacity: 0.95;
        line-height: 1.6;
        max-width: 600px; /* 700px'den 600px'e düşürüldü */
        margin-left: auto;
        margin-right: auto;
    }

    .hero-btn {
        background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
        color: white;
        padding: 15px 35px; /* 18px 40px'den küçültüldü */
        border-radius: 30px; /* 35px'den 30px'e düşürüldü */
        text-decoration: none;
        font-weight: 600;
        font-size: 1rem; /* 1.1rem'den 1rem'e düşürüldü */
        display: inline-flex;
        align-items: center;
        gap: 10px; /* 12px'den 10px'e düşürüldü */
        transition: all 0.3s ease;
        box-shadow: 0 6px 20px rgba(139, 21, 56, 0.3); /* 8px 25px'den küçültüldü */
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

        .hero-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(139, 21, 56, 0.4); /* 15px 35px'den küçültüldü */
            background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
        }

    /* Navigation */
    .hero-nav {
        position: absolute;
        top: 50%;
        width: 100%;
        display: flex;
        justify-content: space-between;
        padding: 0 25px; /* 30px'den 25px'e düşürüldü */
        z-index: 3;
        transform: translateY(-50%);
    }

    .hero-nav-btn {
        background: rgba(255, 255, 255, 0.2);
        border: 2px solid rgba(255, 255, 255, 0.3);
        color: white;
        width: 55px; /* 60px'den 55px'e düşürüldü */
        height: 55px;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px; /* 20px'den 18px'e düşürüldü */
        transition: all 0.3s ease;
        backdrop-filter: blur(10px);
    }

        .hero-nav-btn:hover {
            background: rgba(139, 21, 56, 0.8);
            border-color: var(--primary-color);
            transform: scale(1.1);
        }

    /* Dots Navigation */
    .hero-dots {
        position: absolute;
        bottom: 25px; /* 30px'den 25px'e düşürüldü */
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 12px; /* 15px'den 12px'e düşürüldü */
        z-index: 3;
    }

    .hero-dot {
        width: 10px; /* 12px'den 10px'e düşürüldü */
        height: 10px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.5);
        cursor: pointer;
        transition: all 0.3s ease;
        border: 2px solid transparent;
    }

        .hero-dot.active {
            background: var(--primary-color);
            transform: scale(1.3);
            border-color: white;
        }

        .hero-dot:hover {
            background: white;
            transform: scale(1.2);
        }

    /* Scroll Indicator */
    .scroll-indicator {
        position: absolute;
        bottom: 70px; /* 80px'den 70px'e düşürüldü */
        left: 50%;
        transform: translateX(-50%);
        color: white;
        opacity: 0.8;
        animation: bounce 2s infinite;
        z-index: 3;
    }

        .scroll-indicator i {
            font-size: 20px; /* 24px'den 20px'e düşürüldü */
        }

    /* Animations */
    @keyframes slideInUp {
        from {
            opacity: 0;
            transform: translateY(50px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes bounce {
        0%, 20%, 50%, 80%, 100% {
            transform: translateX(-50%) translateY(0);
        }

        40% {
            transform: translateX(-50%) translateY(-10px);
        }

        60% {
            transform: translateX(-50%) translateY(-5px);
        }
    }

    /* Features Section */
    .features {
        padding: 80px 0; /* 100px'den 80px'e düşürüldü */
        background: white;
    }

    .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* 350px'den 300px'e düşürüldü */
        gap: 30px; /* 40px'den 30px'e düşürüldü */
    }

    .feature-card {
        text-align: center;
        padding: 40px 25px; /* 50px 30px'den küçültüldü */
        background: white;
        border-radius: 15px; /* 20px'den 15px'e düşürüldü */
        box-shadow: 0 8px 25px rgba(0,0,0,0.1); /* 10px 30px'den küçültüldü */
        transition: transform 0.3s;
    }

        .feature-card:hover {
            transform: translateY(-8px); /* -10px'den -8px'e düşürüldü */
        }

    .feature-icon {
        width: 70px; /* 80px'den 70px'e düşürüldü */
        height: 70px;
        background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
        border-radius: 50%;
        margin: 0 auto 20px; /* 25px'den 20px'e düşürüldü */
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 28px; /* 32px'den 28px'e düşürüldü */
        color: white;
    }

    .feature-card h3 {
        font-size: 1.3rem; /* 1.5rem'den 1.3rem'e düşürüldü */
        color: var(--secondary-color);
        margin-bottom: 12px; /* 15px'den 12px'e düşürüldü */
    }

    .feature-card p {
        color: var(--text-light);
        line-height: 1.6;
        font-size: 14px; /* Font boyutu eklendi */
    }

    /* About Section */
    .about {
        padding: 80px 0; /* 100px'den 80px'e düşürüldü */
        background: var(--light-bg);
    }

    .about-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px; /* 80px'den 60px'e düşürüldü */
        align-items: center;
    }

    .about-image {
        position: relative;
        border-radius: 15px; /* 20px'den 15px'e düşürüldü */
        overflow: hidden;
        box-shadow: 0 15px 35px rgba(0,0,0,0.1); /* 20px 40px'den küçültüldü */
    }

        .about-image img {
            width: 100%;
            height: 450px; /* 500px'den 450px'e düşürüldü */
            object-fit: cover;
        }

    .about-content .section-badge {
        color: var(--primary-color);
        font-weight: bold;
        font-size: 13px; /* 14px'den 13px'e düşürüldü */
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 18px; /* 20px'den 18px'e düşürüldü */
    }

    .about-content h2 {
        font-size: 2.2rem; /* 2.5rem'den 2.2rem'e düşürüldü */
        color: var(--secondary-color);
        margin-bottom: 25px; /* 30px'den 25px'e düşürüldü */
        line-height: 1.3;
    }

    .about-content p {
        color: var(--text-light);
        margin-bottom: 20px; /* 25px'den 20px'e düşürüldü */
        line-height: 1.8;
        text-align: justify;
        font-size: 14px; /* Font boyutu eklendi */
    }

    .about-btn {
        background: var(--primary-color);
        color: white;
        padding: 10px 25px; /* 12px 30px'den küçültüldü */
        border-radius: 20px; /* 25px'den 20px'e düşürüldü */
        text-decoration: none;
        font-weight: bold;
        display: inline-flex;
        align-items: center;
        gap: 8px; /* 10px'den 8px'e düşürüldü */
        transition: background 0.3s;
        font-size: 14px; /* Font boyutu eklendi */
    }

        .about-btn:hover {
            background: var(--primary-dark);
        }

    /* Products Section */
    .products {
        padding: 80px 0; /* 100px'den 80px'e düşürüldü */
        background: white;
    }

    .section-header {
        text-align: center;
        margin-bottom: 60px; /* 80px'den 60px'e düşürüldü */
    }

        .section-header .section-badge {
            color: var(--primary-color);
            font-weight: bold;
            font-size: 13px; /* 14px'den 13px'e düşürüldü */
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 18px; /* 20px'den 18px'e düşürüldü */
        }

        .section-header h2 {
            font-size: 2.2rem; /* 2.5rem'den 2.2rem'e düşürüldü */
            color: var(--secondary-color);
            margin-bottom: 18px; /* 20px'den 18px'e düşürüldü */
        }

        .section-header p {
            color: var(--text-light);
            max-width: 550px; /* 600px'den 550px'e düşürüldü */
            margin: 0 auto;
            font-size: 14px; /* Font boyutu eklendi */
        }

    .products-slider {
        position: relative;
        overflow: hidden;
        border-radius: 15px; /* 20px'den 15px'e düşürüldü */
    }

    .products-track {
        display: flex;
        transition: transform 0.5s ease;
    }

    .product-slide {
        min-width: 100%;
        position: relative;
    }

        .product-slide img {
            width: 100%;
            height: 350px; /* 400px'den 350px'e düşürüldü */
            object-fit: cover;
        }

    .product-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(transparent, rgba(0,0,0,0.8));
        color: white;
        padding: 30px; /* 40px'den 30px'e düşürüldü */
        text-align: center;
    }

        .product-overlay h3 {
            font-size: 1.6rem; /* 1.8rem'den 1.6rem'e düşürüldü */
            margin-bottom: 8px; /* 10px'den 8px'e düşürüldü */
        }

    .slider-dots {
        display: flex;
        justify-content: center;
        gap: 8px; /* 10px'den 8px'e düşürüldü */
        margin-top: 25px; /* 30px'den 25px'e düşürüldü */
    }

    .dot {
        width: 10px; /* 12px'den 10px'e düşürüldü */
        height: 10px;
        border-radius: 50%;
        background: #bdc3c7;
        cursor: pointer;
        transition: background 0.3s;
    }

        .dot.active {
            background: var(--primary-color);
        }

    .products-view-all {
        text-align: center;
        margin-top: 40px; /* 50px'den 40px'e düşürüldü */
    }

    .view-all-btn {
        background: var(--primary-color);
        color: white;
        padding: 12px 35px; /* 15px 40px'den küçültüldü */
        border-radius: 25px; /* 30px'den 25px'e düşürüldü */
        text-decoration: none;
        font-weight: bold;
        display: inline-flex;
        align-items: center;
        gap: 8px; /* 10px'den 8px'e düşürüldü */
        transition: background 0.3s;
        font-size: 14px; /* Font boyutu eklendi */
    }

        .view-all-btn:hover {
            background: var(--primary-dark);
        }

    /* Experience Section */
    .experience {
        position: relative;
        padding: 80px 0; /* 100px'den 80px'e düşürüldü */
        background-image: url('https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        color: white;
        text-align: center;
    }

        .experience::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(44, 62, 80, 0.8);
        }

        .experience .container {
            position: relative;
            z-index: 1;
        }

        .experience h2 {
            font-size: 2.5rem; /* 3rem'den 2.5rem'e düşürüldü */
            margin-bottom: 25px; /* 30px'den 25px'e düşürüldü */
        }

        .experience p {
            font-size: 1.1rem; /* 1.2rem'den 1.1rem'e düşürüldü */
            max-width: 700px; /* 800px'den 700px'e düşürüldü */
            margin: 0 auto 35px; /* 40px'den 35px'e düşürüldü */
            opacity: 0.9;
        }

    .experience-btn {
        background: var(--primary-color);
        color: white;
        padding: 12px 35px; /* 15px 40px'den küçültüldü */
        border-radius: 25px; /* 30px'den 25px'e düşürüldü */
        text-decoration: none;
        font-weight: bold;
        display: inline-flex;
        align-items: center;
        gap: 8px; /* 10px'den 8px'e düşürüldü */
        transition: all 0.3s;
        font-size: 14px; /* Font boyutu eklendi */
    }

        .experience-btn:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
        }

    /* Blog Section */
    .blog {
        padding: 80px 0; /* 100px'den 80px'e düşürüldü */
        background: var(--light-bg);
    }

    .blog-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* 350px'den 300px'e düşürüldü */
        gap: 30px; /* 40px'den 30px'e düşürüldü */
    }

    .blog-card {
        background: white;
        border-radius: 15px; /* 20px'den 15px'e düşürüldü */
        overflow: hidden;
        box-shadow: 0 8px 25px rgba(0,0,0,0.1); /* 10px 30px'den küçültüldü */
        transition: transform 0.3s;
    }

        .blog-card:hover {
            transform: translateY(-8px); /* -10px'den -8px'e düşürüldü */
        }

        .blog-card img {
            width: 100%;
            height: 220px; /* 250px'den 220px'e düşürüldü */
            object-fit: cover;
        }

    .blog-card-content {
        padding: 25px; /* 30px'den 25px'e düşürüldü */
    }

    .blog-card h3 {
        font-size: 1.2rem; /* 1.3rem'den 1.2rem'e düşürüldü */
        color: var(--secondary-color);
        margin-bottom: 12px; /* 15px'den 12px'e düşürüldü */
    }

    .blog-card p {
        color: var(--text-light);
        margin-bottom: 18px; /* 20px'den 18px'e düşürüldü */
        line-height: 1.6;
        font-size: 14px; /* Font boyutu eklendi */
    }

    .blog-card-link {
        color: var(--primary-color);
        text-decoration: none;
        font-weight: bold;
        display: inline-flex;
        align-items: center;
        gap: 4px; /* 5px'den 4px'e düşürüldü */
        transition: color 0.3s;
        font-size: 14px; /* Font boyutu eklendi */
    }

        .blog-card-link:hover {
            color: var(--primary-dark);
        }

    .blog-view-all {
        text-align: center;
        margin-top: 40px; /* 50px'den 40px'e düşürüldü */
    }

    /* ==================== PAGE HEADER STYLES ==================== */
    .page-header {
        background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
        color: white;
        padding: 3rem 0 1.5rem 0; /* 4rem 0 2rem 0'dan küçültüldü */
    }

    .page-header-content h1 {
        font-size: 2.2rem; /* 2.5rem'den 2.2rem'e düşürüldü */
        margin-bottom: 0.4rem; /* 0.5rem'den 0.4rem'e düşürüldü */
    }

    .page-header-content p {
        font-size: 1.1rem; /* 1.2rem'den 1.1rem'e düşürüldü */
        opacity: 0.9;
    }

    .breadcrumb {
        list-style: none;
        padding: 0;
        margin: 0 0 0.8rem 0; /* 1rem'den 0.8rem'e düşürüldü */
        display: flex;
        gap: 0.4rem; /* 0.5rem'den 0.4rem'e düşürüldü */
        font-size: 0.85rem; /* 0.9rem'den 0.85rem'e düşürüldü */
    }

        .breadcrumb li::after {
            content: '/';
            margin-left: 0.4rem; /* 0.5rem'den 0.4rem'e düşürüldü */
            opacity: 0.7;
        }

        .breadcrumb li:last-child::after {
            display: none;
        }

        .breadcrumb a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
        }

            .breadcrumb a:hover {
                color: white;
            }

    /* ==================== PRODUCTS PAGE STYLES ==================== */
    .products-section {
        padding: 3rem 0; /* 4rem'den 3rem'e düşürüldü */
    }

    .products-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem; /* 2rem'den 1.5rem'e düşürüldü */
        margin-top: 2.5rem; /* 3rem'den 2.5rem'e düşürüldü */
        max-width: 1000px; /* 1200px'den 1000px'e düşürüldü */
        margin-left: auto;
        margin-right: auto;
    }

    .product-card {
        background: white;
        border-radius: 12px; /* 15px'den 12px'e düşürüldü */
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* 5px 20px'den küçültüldü */
        transition: all 0.3s ease;
    }

        .product-card:hover {
            transform: translateY(-4px); /* -5px'den -4px'e düşürüldü */
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15); /* 10px 30px'den küçültüldü */
        }

    .product-image {
        position: relative;
        height: 220px; /* 250px'den 220px'e düşürüldü */
        overflow: hidden;
    }

        .product-image img {
            width: 100%;
            height: 240px; /* 280px'den 240px'e düşürüldü */
            object-fit: contain;
            object-position: center;
            transition: transform 0.3s ease;
            background: #f8f9fa;
        }

    .product-card:hover .product-image img {
        transform: scale(1.05);
    }

    .product-badge {
        position: absolute;
        top: 0.8rem; /* 1rem'den 0.8rem'e düşürüldü */
        right: 0.8rem;
        background: #28a745;
        color: white;
        padding: 0.4rem 0.8rem; /* 0.5rem 1rem'den küçültüldü */
        border-radius: 15px; /* 20px'den 15px'e düşürüldü */
        font-size: 0.75rem; /* 0.8rem'den 0.75rem'e düşürüldü */
        font-weight: 600;
    }

    .product-content {
        padding: 1.2rem; /* 1.5rem'den 1.2rem'e düşürüldü */
    }

        .product-content h3 {
            margin: 0 0 0.4rem 0; /* 0.5rem'den 0.4rem'e düşürüldü */
            font-size: 1.2rem; /* 1.3rem'den 1.2rem'e düşürüldü */
            color: #333;
        }

    .product-description {
        color: #666;
        margin-bottom: 0.8rem; /* 1rem'den 0.8rem'e düşürüldü */
        line-height: 1.5;
        font-size: 0.85rem; /* 0.9rem'den 0.85rem'e düşürüldü */
    }

    .product-price {
        font-size: 1rem; /* 1.1rem'den 1rem'e düşürüldü */
        font-weight: 600;
        color: var(--primary-color);
        margin-bottom: 1.2rem; /* 1.5rem'den 1.2rem'e düşürüldü */
    }

    .product-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.4rem; /* 0.5rem'den 0.4rem'e düşürüldü */
        padding: 0.6rem 1.2rem; /* 0.75rem 1.5rem'den küçültüldü */
        background: var(--primary-color);
        color: white;
        text-decoration: none;
        border-radius: 20px; /* 25px'den 20px'e düşürüldü */
        font-weight: 600;
        transition: background 0.3s ease;
        font-size: 0.85rem; /* 0.9rem'den 0.85rem'e düşürüldü */
    }

        .product-btn:hover {
            background: var(--primary-dark);
            color: white;
        }

    .no-content {
        text-align: center;
        padding: 3rem 1.5rem; /* 4rem 2rem'den küçültüldü */
        color: #666;
    }

        .no-content i {
            font-size: 3.5rem; /* 4rem'den 3.5rem'e düşürüldü */
            margin-bottom: 0.8rem; /* 1rem'den 0.8rem'e düşürüldü */
            color: #ddd;
        }

    /* ==================== WORKS PAGE STYLES ==================== */
    .experience-stats {
        padding: 3rem 0; /* 4rem'den 3rem'e düşürüldü */
        background: var(--light-bg);
    }

    .stats-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem; /* 3rem'den 2.5rem'e düşürüldü */
        align-items: center;
    }

    .stats-text h2 {
        font-size: 2rem; /* 2.2rem'den 2rem'e düşürüldü */
        margin-bottom: 0.8rem; /* 1rem'den 0.8rem'e düşürüldü */
        color: #333;
    }

    .stats-text p {
        font-size: 1rem; /* 1.1rem'den 1rem'e düşürüldü */
        line-height: 1.6;
        color: #666;
    }

    .stats-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.2rem; /* 1.5rem'den 1.2rem'e düşürüldü */
    }

    .stat-item {
        text-align: center;
        padding: 1.2rem; /* 1.5rem'den 1.2rem'e düşürüldü */
        background: white;
        border-radius: 8px; /* 10px'den 8px'e düşürüldü */
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* 5px 15px'den küçültüldü */
    }

    .stat-number {
        font-size: 2.2rem; /* 2.5rem'den 2.2rem'e düşürüldü */
        font-weight: bold;
        color: var(--primary-color);
        margin-bottom: 0.4rem; /* 0.5rem'den 0.4rem'e düşürüldü */
    }

    .stat-label {
        color: #666;
        font-weight: 500;
        font-size: 0.9rem; /* Font boyutu eklendi */
    }

    .service-areas {
        padding: 3rem 0; /* 4rem'den 3rem'e düşürüldü */
    }

        .service-areas h2 {
            text-align: center;
            margin-bottom: 2.5rem; /* 3rem'den 2.5rem'e düşürüldü */
            font-size: 2rem; /* 2.2rem'den 2rem'e düşürüldü */
            color: #333;
        }

    .services-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem; /* 2rem'den 1.5rem'e düşürüldü */
    }

    .service-card {
        background: white;
        padding: 1.5rem; /* 2rem'den 1.5rem'e düşürüldü */
        border-radius: 12px; /* 15px'den 12px'e düşürüldü */
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* 5px 20px'den küçültüldü */
        transition: transform 0.3s ease;
    }

        .service-card:hover {
            transform: translateY(-4px); /* -5px'den -4px'e düşürüldü */
        }

    .service-icon {
        width: 60px; /* 70px'den 60px'e düşürüldü */
        height: 60px;
        background: var(--primary-color);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.6rem; /* 1.8rem'den 1.6rem'e düşürüldü */
        color: white;
        margin-bottom: 1.2rem; /* 1.5rem'den 1.2rem'e düşürüldü */
    }

    .service-card h3 {
        margin-bottom: 0.8rem; /* 1rem'den 0.8rem'e düşürüldü */
        font-size: 1.2rem; /* 1.3rem'den 1.2rem'e düşürüldü */
        color: #333;
    }

    .service-card p {
        margin-bottom: 1.2rem; /* 1.5rem'den 1.2rem'e düşürüldü */
        color: #666;
        line-height: 1.6;
        font-size: 0.9rem; /* Font boyutu eklendi */
    }

    .service-card ul {
        list-style: none;
        padding: 0;
    }

    .service-card li {
        padding: 0.25rem 0; /* 0.3rem'den 0.25rem'e düşürüldü */
        color: #555;
        position: relative;
        padding-left: 1.2rem; /* 1.5rem'den 1.2rem'e düşürüldü */
        font-size: 0.85rem; /* Font boyutu eklendi */
    }

        .service-card li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #28a745;
            font-weight: bold;
        }

    /* Footer */
    .footer {
        background: var(--secondary-color);
        color: white;
        padding: 50px 0 25px; /* 60px 0 30px'den küçültüldü */
    }

    .footer-grid {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 40px; /* 50px'den 40px'e düşürüldü */
        margin-bottom: 30px; /* 40px'den 30px'e düşürüldü */
    }

    .footer-brand h3 {
        font-size: 1.6rem; /* 1.8rem'den 1.6rem'e düşürüldü */
        margin-bottom: 15px; /* 20px'den 15px'e düşürüldü */
    }

    .footer-brand p {
        color: #bdc3c7;
        line-height: 1.6;
        margin-bottom: 15px; /* 20px'den 15px'e düşürüldü */
        font-size: 0.9rem; /* Font boyutu eklendi */
    }

    .footer-social {
        display: flex;
        gap: 8px; /* 10px'den 8px'e düşürüldü */
    }

        .footer-social a {
            width: 35px; /* 40px'den 35px'e düşürüldü */
            height: 35px;
            background: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: background 0.3s;
        }

            .footer-social a:hover {
                background: var(--primary-dark);
            }

    .footer-section h4 {
        font-size: 1.1rem; /* 1.2rem'den 1.1rem'e düşürüldü */
        margin-bottom: 15px; /* 20px'den 15px'e düşürüldü */
        color: var(--primary-color);
    }

    .footer-section ul {
        list-style: none;
    }

        .footer-section ul li {
            margin-bottom: 8px; /* 10px'den 8px'e düşürüldü */
        }

            .footer-section ul li a {
                color: #bdc3c7;
                text-decoration: none;
                transition: color 0.3s;
                font-size: 0.9rem; /* Font boyutu eklendi */
            }

                .footer-section ul li a:hover {
                    color: white;
                }

    .footer-bottom {
        border-top: 1px solid #34495e;
        padding-top: 25px; /* 30px'den 25px'e düşürüldü */
        text-align: center;
        color: #bdc3c7;
        font-size: 0.9rem; /* Font boyutu eklendi */
    }

    /* ==================== MOBİL RESPONSIVE DÜZELTMELER ==================== */    
    @media (max-width: 768px) {

        /* ===== MOBİL HEADER SCROLL DAVRANIŞI ===== */
        .main-header {
            position: fixed !important;
            top: 0;
            width: 100%;
            transform: translateY(0);
            transition: transform 0.3s ease, opacity 0.3s ease;
            z-index: 1000;
        }

            /* Header'ı aşağı kaydırırken gizle */
            .main-header.hidden {
                transform: translateY(-100%);
                opacity: 0;
            }

            /* Header'ı yukarı kaydırırken göster */
            .main-header.visible {
                transform: translateY(0);
                opacity: 1;
            }

        /* Body'ye top padding ekle header için yer açmak için */
        body {
            padding-top: 60px; /* Header yüksekliği kadar */
        }

        /* Top header mobilde gizle */
        .top-header {
            display: none;
        }

        /* ===== CONTAINER KÜÇÜLTME ===== */
        .container {
            max-width: 100%;
            padding: 0 10px;
        }

        /* ===== MAIN HEADER KÜÇÜLTME ===== */
        .main-header-content {
            padding: 8px 0;
        }

        /* ===== LOGO KÜÇÜLTME ===== */
        .logo {
            gap: 8px;
        }

        .logo-icon {
            width: 35px !important;
            height: 35px !important;
        }

        .company-logo {
            height: 35px !important;
            max-width: 45px !important;
        }

        .logo-text h1 {
            font-size: 16px !important;
        }

        .logo-text p {
            font-size: 8px !important;
        }

        /* ===== MOBİL MENÜ ===== */
        .mobile-menu-toggle {
            display: block;
        }

        .main-nav {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: rgba(0, 0, 0, 0.95);
            z-index: 1002;
            padding: 80px 20px 20px;
        }

            .main-nav.active {
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
            }

            .main-nav ul {
                flex-direction: column;
                gap: 30px;
                text-align: center;
            }

            .main-nav a {
                font-size: 18px;
                padding: 15px 0;
            }

        .mobile-menu-close {
            display: block;
        }

        /* ===== HEADER CTA KÜÇÜLTME ===== */
        .header-cta {
            font-size: 10px !important;
            padding: 6px 10px !important;
            gap: 6px;
            border-radius: 15px;
        }

            .header-cta div:first-child {
                font-size: 8px !important;
            }

            .header-cta div:last-child {
                font-size: 10px !important;
            }

        /* ===== HERO SECTION AYARLAMALARI ===== */
        .hero-slider {
            height: calc(100vh - 60px);
            min-height: 400px;
        }

        .hero-content {
            padding: 0 10px;
        }

            .hero-content h1 {
                font-size: 1.8rem !important;
                margin-bottom: 20px;
            }

            .hero-content p {
                font-size: 0.9rem !important;
                margin-bottom: 25px;
            }

        .hero-btn {
            padding: 10px 20px !important;
            font-size: 0.8rem !important;
        }

        .hero-badge {
            padding: 6px 16px;
            font-size: 12px;
            margin-bottom: 20px;
        }

        /* ===== NAVIGATION BUTONLARI KÜÇÜLTME ===== */
        .hero-nav {
            padding: 0 8px;
        }

        .hero-nav-btn {
            width: 40px;
            height: 40px;
            font-size: 14px;
        }

        /* ===== DOTS KÜÇÜLTME ===== */
        .hero-dots {
            bottom: 20px;
            gap: 10px;
        }

        .hero-dot {
            width: 8px;
            height: 8px;
        }

        /* ===== SCROLL INDICATOR KÜÇÜLTME ===== */
        .scroll-indicator {
            bottom: 60px;
        }

            .scroll-indicator i {
                font-size: 18px;
            }

        /* ===== SECTION PADDINGS KÜÇÜLTME ===== */
        .features,
        .about,
        .products,
        .experience,
        .blog,
        .products-section,
        .experience-stats,
        .service-areas,
        .featured-projects,
        .capabilities,
        .cta-section,
        .contact-main {
            padding: 40px 0 !important;
        }

        /* ===== GRIDS GAP KÜÇÜLTME ===== */
        .features-grid,
        .blog-grid,
        .products-grid,
        .services-grid,
        .projects-grid {
            grid-template-columns: 1fr !important;
            gap: 20px !important;
        }

        .capabilities-grid {
            grid-template-columns: 1fr !important;
            gap: 20px !important;
        }

        /* ===== CARD PADDINGS KÜÇÜLTME ===== */
        .feature-card {
            padding: 25px 15px;
        }

        .feature-icon {
            width: 50px;
            height: 50px;
            font-size: 20px;
            margin-bottom: 15px;
        }

        .feature-card h3 {
            font-size: 1.1rem;
            margin-bottom: 10px;
        }

        /* ===== ABOUT SECTION KÜÇÜLTME ===== */
        .about-grid {
            grid-template-columns: 1fr;
            gap: 30px;
        }

        .about-content h2 {
            font-size: 1.6rem;
            margin-bottom: 15px;
        }

        .about-content p {
            margin-bottom: 15px;
        }

        /* ===== SECTION HEADERS KÜÇÜLTME ===== */
        .section-header {
            margin-bottom: 40px;
        }

            .section-header h2 {
                font-size: 1.6rem;
                margin-bottom: 12px;
            }

        /* ===== PRODUCT CARD KÜÇÜLTME ===== */
        .product-image {
            height: 180px;
        }

            .product-image img {
                height: 200px;
            }

        .product-content {
            padding: 1rem;
        }

            .product-content h3 {
                font-size: 1rem;
            }

        /* ===== BLOG CARD KÜÇÜLTME ===== */
        .blog-card img {
            height: 160px;
        }

        .blog-card-content {
            padding: 15px;
        }

        .blog-card h3 {
            font-size: 1rem;
            margin-bottom: 8px;
        }

        /* ===== PAGE HEADER KÜÇÜLTME ===== */
        .page-header {
            padding: 2rem 0 1rem 0;
        }

        .page-header-content h1 {
            font-size: 1.6rem;
            margin-bottom: 0.3rem;
        }

        .page-header-content p {
            font-size: 0.9rem;
        }

        /* ===== FOOTER KÜÇÜLTME ===== */
        .footer {
            padding: 30px 0 15px;
        }

        .footer-grid {
            grid-template-columns: 1fr;
            gap: 25px;
            margin-bottom: 20px;
        }

        .footer-brand h3 {
            font-size: 1.3rem;
            margin-bottom: 12px;
        }

        .footer-section h4 {
            font-size: 1rem;
            margin-bottom: 12px;
        }

        .footer-bottom {
            padding-top: 15px;
        }
    }

    /* ==================== ÇOK KÜÇÜK EKRANLAR İÇİN EK KÜÇÜLTME ==================== */
    @media (max-width: 480px) {

        body {
            padding-top: 50px;
        }

        .container {
            padding: 0 8px;
        }

        .logo-icon {
            width: 30px !important;
            height: 30px !important;
        }

        .company-logo {
            height: 30px !important;
            max-width: 40px !important;
        }

        .logo-text h1 {
            font-size: 14px !important;
        }

        .logo-text p {
            font-size: 7px !important;
        }

        .header-cta {
            font-size: 9px !important;
            padding: 4px 8px !important;
        }

        .hero-content h1 {
            font-size: 1.5rem !important;
        }

        .hero-content p {
            font-size: 0.8rem !important;
        }

        .hero-btn {
            padding: 8px 16px !important;
            font-size: 0.75rem !important;
        }

        /* Daha da küçük section paddings */
        .features,
        .about,
        .products,
        .experience,
        .blog,
        .products-section,
        .experience-stats,
        .service-areas,
        .featured-projects,
        .capabilities,
        .cta-section,
        .contact-main {
            padding: 25px 0 !important;
        }
    }

    /* ==================== ADDITIONAL WORK PAGE STYLES ==================== */
    .featured-projects {
        padding: 3rem 0; /* 4rem'den 3rem'e düşürüldü */
        background: var(--light-bg);
    }

        .featured-projects h2 {
            text-align: center;
            margin-bottom: 0.8rem; /* 1rem'den 0.8rem'e düşürüldü */
            font-size: 2rem; /* 2.2rem'den 2rem'e düşürüldü */
            color: #333;
        }

    .section-description {
        text-align: center;
        margin-bottom: 2.5rem; /* 3rem'den 2.5rem'e düşürüldü */
        color: #666;
        font-size: 1rem; /* 1.1rem'den 1rem'e düşürüldü */
    }

    .projects-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem; /* 2rem'den 1.5rem'e düşürüldü */
    }

    .project-card {
        background: white;
        border-radius: 12px; /* 15px'den 12px'e düşürüldü */
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* 5px 20px'den küçültüldü */
        transition: transform 0.3s ease;
    }

        .project-card:hover {
            transform: translateY(-4px); /* -5px'den -4px'e düşürüldü */
        }

    .project-image {
        position: relative;
        height: 180px; /* 200px'den 180px'e düşürüldü */
        overflow: hidden;
    }

        .project-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

    .project-card:hover .project-image img {
        transform: scale(1.05);
    }

    .project-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(139, 21, 56, 0.9);
        opacity: 0;
        transition: opacity 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: white;
    }

    .project-card:hover .project-overlay {
        opacity: 1;
    }

    .project-info h3 {
        margin-bottom: 0.4rem; /* 0.5rem'den 0.4rem'e düşürüldü */
        font-size: 1.1rem; /* 1.2rem'den 1.1rem'e düşürüldü */
    }

    .project-info p {
        margin-bottom: 0.8rem; /* 1rem'den 0.8rem'e düşürüldü */
        font-size: 0.85rem; /* 0.9rem'den 0.85rem'e düşürüldü */
    }

    .project-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.4rem; /* 0.5rem'den 0.4rem'e düşürüldü */
        padding: 0.5rem 1rem; /* 0.6rem 1.2rem'den küçültüldü */
        background: white;
        color: var(--primary-color);
        text-decoration: none;
        border-radius: 15px; /* 20px'den 15px'e düşürüldü */
        font-weight: 600;
        font-size: 0.85rem; /* 0.9rem'den 0.85rem'e düşürüldü */
        transition: all 0.3s ease;
    }

        .project-btn:hover {
            background: var(--accent-color);
            color: var(--primary-dark);
        }

    .project-content {
        padding: 1.2rem; /* 1.5rem'den 1.2rem'e düşürüldü */
    }

        .project-content h3 {
            margin-bottom: 0.4rem;
            font-size: 1.1rem;
            color: #333;
        }

        .project-content p {
            color: #666;
            margin-bottom: 0.8rem;
            line-height: 1.5;
            font-size: 0.85rem;
        }

    .project-meta {
        display: flex;
        gap: 0.8rem;
        font-size: 0.75rem;
        color: #888;
    }

        .project-meta span {
            display: flex;
            align-items: center;
            gap: 0.25rem;
        }

    .capabilities {
        padding: 3rem 0;
    }

        .capabilities h2 {
            text-align: center;
            margin-bottom: 2.5rem;
            font-size: 2rem;
            color: #333;
        }

    .capabilities-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }

    .capability-card {
        background: white;
        padding: 1.5rem;
        border-radius: 12px;
        text-align: center;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
    }

        .capability-card:hover {
            transform: translateY(-4px);
        }

    .capability-icon {
        width: 70px;
        height: 70px;
        background: var(--primary-color);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.2rem auto;
        font-size: 1.8rem;
        color: white;
    }

    .capability-card h3 {
        margin-bottom: 0.8rem;
        color: #333;
        font-size: 1.2rem;
    }

    .capability-card p {
        margin-bottom: 1.2rem;
        color: #666;
        line-height: 1.6;
        font-size: 0.9rem;
    }

    .capability-specs {
        display: flex;
        flex-direction: column;
        gap: 0.4rem;
    }

        .capability-specs span {
            padding: 0.4rem 0.8rem;
            background: var(--light-bg);
            border-radius: 15px;
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--primary-color);
        }

    .cta-section {
        padding: 3rem 0;
        background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
        color: white;
        text-align: center;
    }

    .cta-content h2 {
        margin-bottom: 0.8rem;
        font-size: 2rem;
    }

    .cta-content p {
        margin-bottom: 1.5rem;
        font-size: 1.1rem;
        opacity: 0.9;
    }

    .cta-buttons {
        display: flex;
        gap: 0.8rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    .cta-btn {
        padding: 0.8rem 1.5rem;
        border-radius: 20px;
        text-decoration: none;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 0.4rem;
        transition: all 0.3s ease;
        font-size: 0.9rem;
    }

        .cta-btn.primary {
            background: white;
            color: var(--primary-color);
        }

            .cta-btn.primary:hover {
                background: var(--accent-color);
                transform: translateY(-2px);
            }

        .cta-btn.secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

            .cta-btn.secondary:hover {
                background: white;
                color: var(--primary-color);
            }

    /* Contact Page Styles */
    .contact-main {
        padding: 3rem 0;
        background: var(--light-bg);
    }

    .contact-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .contact-info h3 {
        font-size: 1.8rem;
        color: var(--secondary-color);
        margin-bottom: 1.5rem;
    }

    .contact-item {
        margin-bottom: 1.5rem;
        padding: 1.2rem;
        background: white;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }

    .contact-item-header {
        display: flex;
        align-items: center;
        gap: 0.8rem;
        margin-bottom: 0.8rem;
    }

    .contact-icon {
        width: 45px;
        height: 45px;
        background: var(--primary-color);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.1rem;
    }

    .contact-item h4 {
        color: var(--secondary-color);
        font-size: 1.1rem;
        margin: 0;
    }

    .phone-list, .contact-details {
        margin-left: 3rem;
    }

    .phone-item {
        margin-bottom: 0.6rem;
    }

        .phone-item a, .primary-contact {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
        }

        .phone-item:not(:first-child) a {
            color: var(--text-light);
            font-weight: normal;
        }

    .address-text {
        color: var(--text-light);
        line-height: 1.6;
        margin: 0;
        font-size: 0.9rem;
    }

    .social-media-links {
        margin-left: 3rem;
        display: flex;
        gap: 0.8rem;
    }

    .social-btn {
        width: 35px;
        height: 35px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        text-decoration: none;
        transition: transform 0.3s;
    }

        .social-btn.facebook {
            background: #3b5998;
        }

        .social-btn.instagram {
            background: #E4405F;
        }

    .contact-form h3 {
        font-size: 1.8rem;
        color: var(--secondary-color);
        margin-bottom: 0.8rem;
    }

    .form-description {
        color: var(--text-light);
        margin-bottom: 1.5rem;
        font-size: 0.9rem;
    }

    .contact-form-container {
        background: white;
        padding: 1.5rem;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.2rem;
    }

    .form-group {
        margin-bottom: 1.2rem;
    }

        .form-group.full-width {
            grid-column: 1 / -1;
        }

        .form-group.checkbox-group {
            grid-column: 1 / -1;
        }

        .form-group label {
            display: block;
            color: var(--secondary-color);
            font-weight: 600;
            margin-bottom: 0.4rem;
            font-size: 0.9rem;
        }

    .required {
        color: red;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 0.8rem;
        border: 2px solid #e0e0e0;
        border-radius: 8px;
        font-size: 0.9rem;
        transition: border-color 0.3s;
        box-sizing: border-box;
    }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(139, 21, 56, 0.1);
        }

    .form-group textarea {
        resize: vertical;
        font-family: inherit;
    }

    .character-count {
        text-align: right;
        color: var(--text-light);
        font-size: 0.8rem;
        margin-top: 0.4rem;
    }

    .error-message {
        color: red;
        font-size: 0.8rem;
        margin-top: 0.4rem;
        display: none;
    }

    .form-group.error input,
    .form-group.error textarea {
        border-color: red;
        background-color: #fff5f5;
    }

    .form-group.error .error-message {
        display: block;
    }

    .checkbox-label {
        display: flex;
        align-items: flex-start;
        gap: 0.4rem;
        color: var(--text-light);
        line-height: 1.6;
        cursor: pointer;
    }

        .checkbox-label input[type="checkbox"] {
            margin-top: 0.15rem;
            width: 16px;
            height: 16px;
            flex-shrink: 0;
        }

    .checkbox-text {
        font-size: 0.85rem;
    }

    .submit-btn {
        width: 100%;
        background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
        color: white;
        padding: 0.8rem 1.5rem;
        border: none;
        border-radius: 8px;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.4rem;
        grid-column: 1 / -1;
    }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(139, 21, 56, 0.3);
        }

    .loading-spinner {
        display: none;
    }

    .honeypot {
        display: none;
    }

    .form-messages {
        margin-bottom: 0.8rem;
        padding: 0.8rem;
        border-radius: 8px;
        display: none;
    }

    /* Mobile Contact Form Adjustments */
    @media (max-width: 768px) {
        .contact-grid {
            grid-template-columns: 1fr !important;
            gap: 1.5rem !important;
            display: flex !important;
            flex-direction: column !important;
        }

        .contact-info {
            order: 1 !important;
        }

        .contact-form {
            order: 2 !important;
        }

        .contact-form-container {
            grid-template-columns: 1fr;
            padding: 1.2rem;
            gap: 1rem;
        }

        .contact-info h3,
        .contact-form h3 {
            font-size: 1.4rem;
            margin-bottom: 1rem;
        }

        .contact-item {
            padding: 1rem;
            margin-bottom: 1.2rem;
        }

        .phone-list, .contact-details {
            margin-left: 2.5rem;
        }

        .social-media-links {
            margin-left: 2.5rem;
        }

        .contact-icon {
            width: 40px;
            height: 40px;
            font-size: 1rem;
        }
    }

    /* ==================== UTILITY CLASSES ==================== */
    .sr-only {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }

    .text-center {
        text-align: center;
    }

    .text-left {
        text-align: left;
    }

    .text-right {
        text-align: right;
    }

    .mb-0 {
        margin-bottom: 0;
    }

    .mb-1 {
        margin-bottom: 0.4rem;
    }

    .mb-2 {
        margin-bottom: 0.8rem;
    }

    .mb-3 {
        margin-bottom: 1.2rem;
    }

    .mb-4 {
        margin-bottom: 1.6rem;
    }

    .mb-5 {
        margin-bottom: 2.4rem;
    }

    .mt-0 {
        margin-top: 0;
    }

    .mt-1 {
        margin-top: 0.4rem;
    }

    .mt-2 {
        margin-top: 0.8rem;
    }

    .mt-3 {
        margin-top: 1.2rem;
    }

    .mt-4 {
        margin-top: 1.6rem;
    }

    .mt-5 {
        margin-top: 2.4rem;
    }

    .p-0 {
        padding: 0;
    }

    .p-1 {
        padding: 0.4rem;
    }

    .p-2 {
        padding: 0.8rem;
    }

    .p-3 {
        padding: 1.2rem;
    }

    .p-4 {
        padding: 1.6rem;
    }

    .p-5 {
        padding: 2.4rem;
    }

    /* ==================== ANIMATIONS ==================== */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes fadeInLeft {
        from {
            opacity: 0;
            transform: translateX(-30px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    @keyframes fadeInRight {
        from {
            opacity: 0;
            transform: translateX(30px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .animate-fade-up {
        animation: fadeInUp 0.8s ease-out;
    }

    .animate-fade-left {
        animation: fadeInLeft 0.8s ease-out;
    }

    .animate-fade-right {
        animation: fadeInRight 0.8s ease-out;
    }

    /* ==================== LOADING ANIMATIONS ==================== */
    @keyframes spin {
        0% {
            transform: rotate(0deg);
        }

        100% {
            transform: rotate(360deg);
        }
    }

    @keyframes pulse {
        0%, 100% {
            opacity: 1;
        }

        50% {
            opacity: 0.5;
        }
    }

    .loading-spinner {
        border: 4px solid rgba(139, 21, 56, 0.1);
        border-left: 4px solid var(--primary-color);
        border-radius: 50%;
        width: 35px;
        height: 35px;
        animation: spin 1s linear infinite;
    }

    .pulse {
        animation: pulse 2s infinite;
    }

    /* ==================== SCROLL ANIMATIONS ==================== */
    .scroll-reveal {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.8s ease-out;
    }

        .scroll-reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

    .scroll-reveal-left {
        opacity: 0;
        transform: translateX(-30px);
        transition: all 0.8s ease-out;
    }

        .scroll-reveal-left.active {
            opacity: 1;
            transform: translateX(0);
        }

    .scroll-reveal-right {
        opacity: 0;
        transform: translateX(30px);
        transition: all 0.8s ease-out;
    }

        .scroll-reveal-right.active {
            opacity: 1;
            transform: translateX(0);
        }

    /* ==================== BUTTON HOVER EFFECTS ==================== */
    .btn-hover-lift {
        transition: all 0.3s ease;
    }

        .btn-hover-lift:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }

    .btn-hover-scale {
        transition: transform 0.3s ease;
    }

        .btn-hover-scale:hover {
            transform: scale(1.05);
        }

    /* ==================== CARD HOVER EFFECTS ==================== */
    .card-hover-lift {
        transition: all 0.3s ease;
    }

        .card-hover-lift:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
        }

    .card-hover-zoom {
        overflow: hidden;
    }

        .card-hover-zoom img {
            transition: transform 0.3s ease;
        }

        .card-hover-zoom:hover img {
            transform: scale(1.1);
        }

    /* ==================== GRADIENT BACKGROUNDS ==================== */
    .gradient-primary {
        background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    }

    .gradient-secondary {
        background: linear-gradient(135deg, var(--secondary-color), #34495e);
    }

    .gradient-overlay {
        background: linear-gradient(135deg, rgba(139, 21, 56, 0.8), rgba(44, 62, 80, 0.6));
    }

    /* ==================== TEXT EFFECTS ==================== */
    .text-gradient {
        background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .text-shadow {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }

    .text-glow {
        text-shadow: 0 0 10px rgba(139, 21, 56, 0.5);
    }

    /* ==================== BORDERS AND DIVIDERS ==================== */
    .border-primary {
        border-color: var(--primary-color) !important;
    }

    .border-gradient {
        border: 2px solid;
        border-image: linear-gradient(135deg, var(--primary-color), var(--primary-dark)) 1;
    }

    .divider {
        height: 2px;
        background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
        margin: 1.5rem 0;
    }

    /* ==================== OVERLAY EFFECTS ==================== */
    .overlay-dark {
        position: relative;
    }

        .overlay-dark::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1;
        }

    .overlay-primary {
        position: relative;
    }

        .overlay-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(139, 21, 56, 0.8);
            z-index: 1;
        }

    /* ==================== GLASS MORPHISM ==================== */
    .glass {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 12px;
    }

    .glass-dark {
        background: rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px;
    }

    /* ==================== CUSTOM SCROLLBAR ==================== */
    html {
        scrollbar-width: thin;
        scrollbar-color: white #f1f1f1;
    }

    ::-webkit-scrollbar {
        width: 6px;
    }

    ::-webkit-scrollbar-track {
        background: #f1f1f1;
    }

    ::-webkit-scrollbar-thumb {
        background: white;
        border-radius: 3px;
        border: 1px solid #ddd;
    }

        ::-webkit-scrollbar-thumb:hover {
            background: #f0f0f0;
            border-color: #ccc;
        }

    /* ==================== PRINT STYLES ==================== */
    @media print {
        .no-print {
            display: none !important;
        }

        .hero-slider,
        .hero-nav,
        .hero-dots {
            display: none !important;
        }

        body {
            font-size: 12pt;
            line-height: 1.4;
            color: #000;
        }

        .container {
            max-width: none;
            width: 100%;
            padding: 0;
        }

        .page-header {
            background: none !important;
            color: #000 !important;
            padding: 1rem 0;
        }
    }

    /* ==================== ACCESSIBILITY IMPROVEMENTS ==================== */
    .skip-to-content {
        position: absolute;
        top: -40px;
        left: 6px;
        background: var(--primary-color);
        color: white;
        padding: 8px;
        text-decoration: none;
        border-radius: 4px;
        z-index: 1000;
    }

        .skip-to-content:focus {
            top: 6px;
        }

    /* High contrast mode support */
    @media (prefers-contrast: high) {
        .hero-overlay {
            background: rgba(0, 0, 0, 0.8);
        }

        .btn, .hero-btn, .product-btn {
            border: 2px solid currentColor;
        }
    }

    /* Reduced motion support */
    @media (prefers-reduced-motion: reduce) {
        *, *::before, *::after {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
        }

        .scroll-reveal,
        .scroll-reveal-left,
        .scroll-reveal-right {
            opacity: 1;
            transform: none;
        }
    }

    /* ==================== DARK MODE SUPPORT (Optional) ==================== */
    @media (prefers-color-scheme: dark) {
        .auto-dark {
            background-color: #1a1a1a;
            color: #e0e0e0;
        }

            .auto-dark .card,
            .auto-dark .feature-card,
            .auto-dark .product-card {
                background-color: #2a2a2a;
                color: #e0e0e0;
            }
    }

    /* ==================== PERFORMANCE OPTIMIZATIONS ==================== */
    .will-change-transform {
        will-change: transform;
    }

    .will-change-opacity {
        will-change: opacity;
    }

    .gpu-accelerated {
        transform: translateZ(0);
        backface-visibility: hidden;
        perspective: 1000px;
    }
    /* ==================== MOBİL TAM EKRAN DÜZELTMELERİ ==================== */
    @media (max-width: 768px) {

        /* ===== CONTAINER GENİŞLİK DÜZELTMESİ ===== */
        .container {
            max-width: 100% !important;
            padding: 0 5px !important;
            margin: 0 !important;
        }

        /* ===== CONTACT GRID TAM GENİŞLİK ===== */
        .contact-grid {
            padding: 0 !important;
            margin: 0 !important;
            width: 100% !important;
        }

        .contact-info,
        .contact-form {
            margin: 0 !important;
            width: 100% !important;
            box-sizing: border-box !important;
        }

        /* ===== ANA SAYFA TAM GENİŞLİK ===== */
        .hero-content {
            padding: 0 5px !important;
            max-width: 100% !important;
        }

        /* ===== İSTATİSTİK KARTLARI TAM GENİŞLİK ===== */
        .stats-grid {
            padding: 0 !important;
            margin: 0 !important;
            width: 100% !important;
        }

        /* ===== GENEL SAYFA PADDİNG'LERİ KALDIR ===== */
        .page-header .container,
        .contact-main .container,
        .features .container,
        .about .container,
        .products .container,
        .experience .container,
        .blog .container {
            padding: 0 5px !important;
            max-width: 100% !important;
        }

        /* ===== BODY OVERFLOW DÜZELTMESİ ===== */
        body {
            overflow-x: hidden !important;
            width: 100% !important;
        }

        /* ===== MAIN WRAPPER ===== */
        .main-wrapper {
            width: 100% !important;
            overflow-x: hidden !important;
        }
        /* ==================== MOBİL RESPONSIVE EK DÜZELTMELERİ ==================== */
        /* Bu kodu mevcut CSS dosyasının sonuna ekle */

        @media (max-width: 768px) {

            /* ✅ 1. Stats Grid Düzeltmesi - 2x2 Düzen */
            .stats-grid {
                display: grid !important;
                grid-template-columns: 1fr 1fr !important;
                gap: 10px !important;
                width: 100% !important;
            }

            .stat-item {
                padding: 15px 8px !important;
                text-align: center !important;
                background: white !important;
                border-radius: 8px !important;
                box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
            }

            .stat-number {
                font-size: 2rem !important;
                margin-bottom: 5px !important;
                color: var(--primary-color) !important;
            }

            .stat-label {
                font-size: 0.8rem !important;
                line-height: 1.2 !important;
                color: #666 !important;
            }

            /* ✅ 2. About Grid Düzeltmesi - Tek Sütun */
            .about-grid {
                display: grid !important;
                grid-template-columns: 1fr !important;
                gap: 20px !important;
                align-items: stretch !important;
            }

            .about-image {
                width: 100% !important;
                max-width: 100% !important;
                margin: 0 auto !important;
                padding: 0 !important;
                order: 1 !important;
            }

            .about-content {
                width: 100% !important;
                padding: 0 !important;
                order: 2 !important;
            }

            .about-image img {
                width: 100% !important;
                height: 250px !important;
                object-fit: cover !important;
                border-radius: 10px !important;
                display: block !important;
            }

            /* ✅ 3. Services Grid Düzeltmesi - Tek Sütun */
            .services-grid {
                grid-template-columns: 1fr !important;
                gap: 15px !important;
            }

            .service-area {
                padding: 15px !important;
                margin: 0 !important;
            }

                .service-area h3 {
                    font-size: 1.1rem !important;
                    margin-bottom: 10px !important;
                }

                .service-area p {
                    font-size: 14px !important;
                    line-height: 1.5 !important;
                }

            /* ✅ 4. Projects Showcase Düzeltmesi - Tek Sütun */
            .projects-showcase {
                grid-template-columns: 1fr !important;
                gap: 15px !important;
            }

            .project-item {
                padding: 15px !important;
            }

                .project-item h3 {
                    font-size: 1.2rem !important;
                    margin-bottom: 8px !important;
                }

                .project-item p {
                    font-size: 13px !important;
                    line-height: 1.4 !important;
                }

            /* ✅ 5. Advantages Grid Düzeltmesi - Tek Sütun */
            .advantages-grid {
                grid-template-columns: 1fr !important;
                gap: 15px !important;
            }

            .advantage-item {
                padding: 15px !important;
            }

                .advantage-item h3 {
                    font-size: 1.2rem !important;
                    margin-bottom: 10px !important;
                }

                .advantage-item p {
                    font-size: 13px !important;
                    line-height: 1.4 !important;
                }

            /* ✅ 6. Emergency Contact Düzeltmesi */
            .emergency-content {
                grid-template-columns: 1fr !important;
                text-align: center !important;
                gap: 15px !important;
            }

            .emergency-btn {
                width: auto !important;
                padding: 12px 20px !important;
                font-size: 14px !important;
                justify-content: center !important;
                display: inline-flex !important;
            }

            /* ✅ 7. CTA Buttons Düzeltmesi */
            .cta-buttons {
                flex-direction: column !important;
                align-items: center !important;
                gap: 10px !important;
            }

            .cta-btn {
                width: auto !important;
                padding: 12px 20px !important;
                font-size: 14px !important;
                justify-content: center !important;
                display: inline-flex !important;
            }

            /* ✅ 8. Container ve Overflow Düzeltmeleri */
            .container {
                max-width: 100% !important;
                padding: 0 10px !important;
                margin: 0 !important;
                width: 100% !important;
            }

            body {
                overflow-x: hidden !important;
                width: 100% !important;
            }

            /* ✅ 9. Section Header Düzeltmeleri */
            .section-header {
                margin-bottom: 25px !important;
                text-align: center !important;
                padding: 0 10px !important;
            }

                .section-header h2 {
                    font-size: 1.5rem !important;
                    line-height: 1.3 !important;
                    margin-bottom: 10px !important;
                }

                .section-header p {
                    font-size: 14px !important;
                    line-height: 1.5 !important;
                }

            /* ✅ 10. About Content Düzeltmeleri */
            .about-content h2 {
                font-size: 1.5rem !important;
                line-height: 1.3 !important;
                margin-bottom: 15px !important;
            }

            .about-content p {
                font-size: 14px !important;
                line-height: 1.6 !important;
                margin-bottom: 15px !important;
                text-align: left !important;
            }

            /* ✅ 11. Button Düzeltmeleri */
            .hero-btn,
            .about-btn,
            .view-all-btn,
            .experience-btn {
                padding: 12px 20px !important;
                font-size: 14px !important;
                white-space: nowrap !important;
                display: inline-flex !important;
                align-items: center !important;
                justify-content: center !important;
            }
        }

        /* ✅ Çok Küçük Ekranlar (480px altı) */
        @media (max-width: 480px) {

            .container {
                padding: 0 8px !important;
            }

            /* Stats Grid - Çok küçük ekranlarda 1x4 */
            .stats-grid {
                grid-template-columns: 1fr !important;
                gap: 8px !important;
            }

            .stat-item {
                padding: 10px !important;
            }

            .stat-number {
                font-size: 1.8rem !important;
            }

            .stat-label {
                font-size: 0.75rem !important;
            }

            /* Hero Content - Çok küçük ekranlar */
            .hero-content h1 {
                font-size: 1.5rem !important;
            }

            .hero-content p {
                font-size: 13px !important;
            }

            /* Section Paddings - Daha küçük */
            .features,
            .about,
            .products,
            .experience,
            .blog,
            .stats-section,
            .services-overview,
            .why-choose-us,
            .contact-cta,
            .emergency-contact {
                padding: 20px 0 !important;
            }

            /* Section Headers - Çok küçük ekranlar */
            .section-header h2 {
                font-size: 1.3rem !important;
            }

            .section-header p {
                font-size: 13px !important;
            }

            .about-content h2 {
                font-size: 1.3rem !important;
            }

            .about-content p {
                font-size: 13px !important;
            }
        }

        /* ✅ Landscape Tablet Düzeltmesi (769px - 1024px) */
        @media (min-width: 769px) and (max-width: 1024px) {

            /* Stats Grid - Tablet'te 2x2 */
            .stats-grid {
                grid-template-columns: repeat(2, 1fr) !important;
                gap: 20px !important;
            }

            /* Services Grid - Tablet'te 2 sütun */
            .services-grid {
                grid-template-columns: repeat(2, 1fr) !important;
                gap: 20px !important;
            }

            /* About Grid - Tablet'te orijinal düzen */
            .about-grid {
                grid-template-columns: 1fr 1fr !important;
                gap: 30px !important;
            }

            /* Projects Showcase - Tablet'te 2 sütun */
            .projects-showcase {
                grid-template-columns: repeat(2, 1fr) !important;
                gap: 20px !important;
            }

            /* Advantages Grid - Tablet'te 2 sütun */
            .advantages-grid {
                grid-template-columns: repeat(2, 1fr) !important;
                gap: 20px !important;
            }
        }
    }

    /* ===== ÇOK KÜÇÜK EKRANLAR İÇİN ===== */
    @media (max-width: 480px) {
        .container {
            padding: 0 3px !important;
        }

        .page-header .container,
        .contact-main .container,
        .features .container,
        .about .container,
        .products .container,
        .experience .container,
        .blog .container {
            padding: 0 3px !important;
        }
    }

/* ==================== MOBİL RESPONSIVE DÜZELTMELERİ ==================== */

/* ✅ 1. About Section Mobil Düzeltmesi */
@media (max-width: 768px) {

    .about {
        padding: 40px 0;
        background: var(--light-bg);
    }

    .about-grid {
        display: block;
        gap: 0;
    }

    /* About Image - Sadeleştirilmiş */
    .about-image {
        width: 100%;
        margin: 0 0 25px 0;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        position: relative;
    }

        .about-image img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            border-radius: 15px;
            display: block;
        }

        .about-image::after {
            display: none !important;
        }

    /* About Content */
    .about-content {
        width: 100%;
        padding: 25px 15px;
        background: white;
        border-radius: 15px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.08);
        position: relative;
    }

        .about-content::before {
            content: '';
            position: absolute;
            top: -3px;
            left: 15px;
            right: 15px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
            border-radius: 2px;
        }

        .about-content .section-badge {
            color: var(--primary-color);
            font-weight: bold;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 12px;
            display: inline-block;
            padding: 4px 12px;
            background: rgba(139, 21, 56, 0.1);
            border-radius: 15px;
        }

        .about-content h2 {
            font-size: 1.4rem;
            line-height: 1.3;
            margin-bottom: 15px;
            color: var(--secondary-color);
            font-weight: 700;
        }

        .about-content p {
            font-size: 13px;
            line-height: 1.6;
            margin-bottom: 15px;
            text-align: left;
            color: var(--text-light);
        }

    .about-btn {
        background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
        color: white;
        padding: 12px 24px;
        border-radius: 20px;
        text-decoration: none;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: all 0.3s ease;
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        box-shadow: 0 8px 20px rgba(139, 21, 56, 0.25);
    }

        .about-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 25px rgba(139, 21, 56, 0.35);
        }
}

/* ✅ 2. Stats Grid Temiz Düzeltmesi */
@media (max-width: 768px) {

    .stats-content {
        display: block;
        gap: 0;
    }

    .stats-text {
        margin-bottom: 25px;
        text-align: center;
    }

        .stats-text h2 {
            font-size: 1.6rem;
            margin-bottom: 12px;
            color: #333;
        }

        .stats-text p {
            font-size: 14px;
            line-height: 1.6;
            color: #666;
            max-width: 400px;
            margin: 0 auto;
        }

    /* Stats Grid - 2x2 Düzen */
    .stats-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        max-width: 350px;
        margin: 0 auto;
    }

    .stat-item {
        text-align: center;
        padding: 15px 10px;
        background: white;
        border-radius: 10px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease;
    }

        .stat-item:hover {
            transform: translateY(-3px);
        }

    .stat-number {
        font-size: 1.8rem;
        font-weight: bold;
        color: var(--primary-color);
        margin-bottom: 4px;
        line-height: 1;
    }

    .stat-label {
        color: #666;
        font-weight: 500;
        font-size: 11px;
        line-height: 1.2;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
}

/* ✅ 3. Services Grid Düzeltmesi */
@media (max-width: 768px) {

    .services-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .service-card {
        background: white;
        padding: 20px 15px;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease;
        text-align: left;
    }

        .service-card:hover {
            transform: translateY(-3px);
        }

    .service-icon {
        width: 50px;
        height: 50px;
        background: var(--primary-color);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.4rem;
        color: white;
        margin-bottom: 15px;
    }

    .service-card h3 {
        margin-bottom: 10px;
        font-size: 1.1rem;
        color: #333;
        font-weight: 600;
    }

    .service-card p {
        margin-bottom: 12px;
        color: #666;
        line-height: 1.5;
        font-size: 13px;
    }

    .service-card ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .service-card li {
        padding: 3px 0;
        color: #555;
        position: relative;
        padding-left: 15px;
        font-size: 12px;
        line-height: 1.4;
    }

        .service-card li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #28a745;
            font-weight: bold;
            font-size: 12px;
        }
}

/* ✅ 4. Container ve Overflow Düzeltmeleri */
@media (max-width: 768px) {

    /* Ana Container */
    .container {
        max-width: 100%;
        padding: 0 12px;
        margin: 0 auto;
        width: 100%;
        box-sizing: border-box;
    }

    /* Body Overflow Kontrolü */
    body {
        overflow-x: hidden;
        width: 100%;
        margin: 0;
        padding-top: 55px; /* Header için */
    }

    /* Section Paddings */
    .features,
    .about,
    .products,
    .experience,
    .blog,
    .products-section,
    .experience-stats,
    .service-areas {
        padding: 35px 0;
    }

    /* Section Headers */
    .section-header {
        margin-bottom: 30px;
        text-align: center;
        padding: 0;
    }

        .section-header h2 {
            font-size: 1.5rem;
            line-height: 1.3;
            margin-bottom: 12px;
            color: var(--secondary-color);
        }

        .section-header p {
            font-size: 14px;
            line-height: 1.5;
            color: var(--text-light);
            max-width: 350px;
            margin: 0 auto;
        }
}

/* ✅ 5. Çok Küçük Ekranlar (480px altı) */
@media (max-width: 480px) {

    .container {
        padding: 0 8px;
    }

    /* About Section */
    .about-image {
        margin-bottom: 20px;
        border-radius: 12px;
    }

        .about-image img {
            height: 180px;
            border-radius: 12px;
        }

        .about-image::after {
            bottom: 10px;
            right: 10px;
            padding: 6px 10px;
            font-size: 10px;
            border-radius: 8px;
        }

    .about-content {
        padding: 20px 12px;
        border-radius: 12px;
    }

        .about-content h2 {
            font-size: 1.3rem;
        }

        .about-content p {
            font-size: 12px;
            margin-bottom: 12px;
        }

    .about-btn {
        padding: 10px 20px;
        font-size: 12px;
        border-radius: 18px;
    }

    /* Stats Grid - Tek Sütun */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        max-width: 280px;
    }

    .stat-item {
        padding: 12px 8px;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .stat-label {
        font-size: 10px;
    }

    /* Section Paddings - Daha Küçük */
    .features,
    .about,
    .products,
    .experience,
    .blog,
    .products-section,
    .experience-stats,
    .service-areas {
        padding: 25px 0;
    }

    /* Section Headers */
    .section-header h2 {
        font-size: 1.3rem;
    }

    .section-header p {
        font-size: 13px;
    }
}

/* ✅ 6. Tablet Landscape (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {

    /* Stats Grid - Tablet'te 2x2 */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 500px;
        margin: 0 auto;
    }

    /* Services Grid - Tablet'te 2 sütun */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* About Grid - Tablet'te orijinal düzen korunur */
    .about-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: center;
    }
}

/* ✅ 7. Accessibility ve Performance */
@media (max-width: 768px) {

    /* Focus States */
    .about-btn:focus,
    .stat-item:focus,
    .service-card:focus {
        outline: 3px solid var(--primary-color);
        outline-offset: 2px;
    }

    /* Reduced Motion Support */
    @media (prefers-reduced-motion: reduce) {
        .about-image,
        .about-content,
        .stat-item,
        .service-card {
            transition: none;
        }

            .about-btn:hover,
            .stat-item:hover,
            .service-card:hover {
                transform: none;
            }
    }

    /* High Contrast Mode */
    @media (prefers-contrast: high) {
        .about-btn,
        .stat-item,
        .service-card {
            border: 2px solid currentColor;
        }
    }
}
/* ==================== HAKKIMIZDA SAYFASI MOBİL DÜZELTMELERİ ==================== */

/* ✅ 1. About Image'deki "17 Yıllık Tecrübe" yazısını gizle */
.experience-badge {
    display: none !important;
}

/* ✅ 2. About Main Section Mobil Düzeltmesi */
@media (max-width: 768px) {

    .about-main .about-content {
        display: block !important;
        grid-template-columns: none !important;
        gap: 2rem !important;
    }

    .about-main .about-image {
        width: 100% !important;
        margin-bottom: 2rem !important;
        position: relative !important;
    }

        .about-main .about-image img {
            width: 100% !important;
            height: 300px !important;
            object-fit: cover !important;
            border-radius: 15px !important;
        }

    .about-main .about-text {
        width: 100% !important;
        padding: 0 !important;
    }

        .about-main .about-text h2 {
            font-size: 1.8rem !important;
            margin-bottom: 20px !important;
            line-height: 1.3 !important;
        }

        .about-main .about-text p {
            font-size: 14px !important;
            line-height: 1.7 !important;
            margin-bottom: 20px !important;
            text-align: left !important;
        }
}

/* ✅ 3. Stats Section Mobil Düzeltmesi */
@media (max-width: 768px) {

    .stats-section .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
    }

    .stats-section .stat-item {
        padding: 1.5rem 1rem !important;
    }

    .stats-section .stat-number {
        font-size: 2.2rem !important;
        margin-bottom: 0.3rem !important;
    }

    .stats-section .stat-label {
        font-size: 12px !important;
        line-height: 1.2 !important;
    }
}

/* ✅ 4. Mission Vision Section Mobil Düzeltmesi */
@media (max-width: 768px) {

    .mission-vision-section .mission-vision-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .mission-vision-section .mission-card,
    .mission-vision-section .vision-card {
        padding: 2rem 1.5rem !important;
        border-radius: 15px !important;
    }

    .mission-vision-section h3 {
        font-size: 1.3rem !important;
        margin-bottom: 1.5rem !important;
        text-align: center !important;
    }

    .mission-vision-section p {
        font-size: 14px !important;
        line-height: 1.7 !important;
        text-align: left !important;
    }
}

/* ✅ 5. CTA Info Section Mobil Düzeltmesi */
@media (max-width: 768px) {

    .cta-info-section .cta-content {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        text-align: center !important;
    }

    .cta-info-section h3 {
        font-size: 2rem !important;
        margin-bottom: 0.8rem !important;
    }

    .cta-info-section p {
        font-size: 1.2rem !important;
        margin-bottom: 1.5rem !important;
    }

    .cta-info-section .cta-phone {
        font-size: 1.5rem !important;
        justify-content: center !important;
    }
}

/* ✅ 6. Work Areas Section Mobil Düzeltmesi */
@media (max-width: 768px) {

    .work-areas-section .work-area-card {
        flex-direction: column !important;
        text-align: center !important;
        gap: 1rem !important;
        padding: 1.5rem !important;
    }

    .work-areas-section .work-area-icon {
        margin: 0 auto !important;
        flex-shrink: 0 !important;
    }

    .work-areas-section h3 {
        font-size: 1.2rem !important;
        margin-bottom: 0.8rem !important;
    }

    .work-areas-section p {
        font-size: 14px !important;
        line-height: 1.6 !important;
        text-align: left !important;
    }

    .work-areas-conclusion p {
        font-size: 14px !important;
        line-height: 1.6 !important;
    }
}

/* ✅ 7. Sensitivities Section Mobil Düzeltmesi */
@media (max-width: 768px) {

    .sensitivities-section .sensitivities-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    .sensitivities-section .sensitivity-card {
        padding: 1.5rem !important;
    }

    .sensitivities-section .sensitivity-icon {
        width: 60px !important;
        height: 60px !important;
        font-size: 1.5rem !important;
        margin-bottom: 1rem !important;
    }

    .sensitivities-section h3 {
        font-size: 1.2rem !important;
        margin-bottom: 0.8rem !important;
    }

    .sensitivities-section p {
        font-size: 14px !important;
        line-height: 1.6 !important;
    }
}

/* ✅ 8. Final CTA Section Mobil Düzeltmesi */
@media (max-width: 768px) {

    .final-cta h2 {
        font-size: 1.8rem !important;
        margin-bottom: 0.8rem !important;
        line-height: 1.3 !important;
    }

    .final-cta p {
        font-size: 1rem !important;
        margin-bottom: 1.5rem !important;
    }

    .final-cta .cta-btn {
        padding: 0.8rem 1.5rem !important;
        font-size: 14px !important;
        border-radius: 20px !important;
        width: 100% !important;
        max-width: 280px !important;
        justify-content: center !important;
        margin: 0 auto !important;
    }

    .final-cta > div {
        flex-direction: column !important;
        align-items: center !important;
        gap: 1rem !important;
    }
}

/* ✅ 9. Çok Küçük Ekranlar (480px altı) */
@media (max-width: 480px) {

    /* Stats Section - Tek sütun */
    .stats-section .stats-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        max-width: 300px !important;
        margin: 0 auto !important;
    }

    .stats-section .stat-item {
        padding: 1.2rem 0.8rem !important;
    }

    .stats-section .stat-number {
        font-size: 2rem !important;
    }

    .stats-section .stat-label {
        font-size: 11px !important;
    }

    /* About Main Section */
    .about-main .about-image img {
        height: 250px !important;
    }

    .about-main .about-text h2 {
        font-size: 1.5rem !important;
    }

    .about-main .about-text p {
        font-size: 13px !important;
    }

    /* Mission Vision */
    .mission-vision-section .mission-card,
    .mission-vision-section .vision-card {
        padding: 1.5rem 1rem !important;
    }

    .mission-vision-section h3 {
        font-size: 1.2rem !important;
    }

    .mission-vision-section p {
        font-size: 13px !important;
    }

    /* CTA Info */
    .cta-info-section h3 {
        font-size: 1.5rem !important;
    }

    .cta-info-section .cta-phone {
        font-size: 1.3rem !important;
    }

    /* Work Areas */
    .work-areas-section .work-area-card {
        padding: 1.2rem !important;
    }

    .work-areas-section h3 {
        font-size: 1.1rem !important;
    }

    .work-areas-section p {
        font-size: 13px !important;
    }

    /* Final CTA */
    .final-cta h2 {
        font-size: 1.5rem !important;
    }

    .final-cta p {
        font-size: 0.9rem !important;
    }

    .final-cta .cta-btn {
        font-size: 13px !important;
        padding: 0.7rem 1.2rem !important;
    }
}

/* ✅ 10. Section Paddings Genel Düzeltme */
@media (max-width: 768px) {

    .about-main,
    .stats-section,
    .mission-vision-section,
    .cta-info-section,
    .work-areas-section,
    .sensitivities-section,
    .final-cta {
        padding: 3rem 0 !important;
    }

        .about-main .container,
        .stats-section .container,
        .mission-vision-section .container,
        .cta-info-section .container,
        .work-areas-section .container,
        .sensitivities-section .container,
        .final-cta .container {
            padding: 0 15px !important;
        }
}

@media (max-width: 480px) {

    .about-main,
    .stats-section,
    .mission-vision-section,
    .cta-info-section,
    .work-areas-section,
    .sensitivities-section,
    .final-cta {
        padding: 2rem 0 !important;
    }

        .about-main .container,
        .stats-section .container,
        .mission-vision-section .container,
        .cta-info-section .container,
        .work-areas-section .container,
        .sensitivities-section .container,
        .final-cta .container {
            padding: 0 10px !important;
        }
}

/* ==================== WHATSAPP BUTTON ==================== */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 28px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-button:hover {
    background: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    color: white;
}

.whatsapp-button:active {
    transform: scale(0.95);
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.8);
    }
    100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
}

/* Mobil cihazlar için WhatsApp butonu */
@media (max-width: 768px) {
    .whatsapp-button {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .whatsapp-button {
        bottom: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
}