
        /* Temel Stil Ayarları */
        :root {
            --primary-color: #e30613; /* Kırmızı */
            --secondary-color: #000000; /* Siyah */
            --accent-color: #ffffff; /* Beyaz */
            --text-color: #333333;
            --light-gray: #f5f5f5;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Roboto', sans-serif;
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--secondary-color);
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        section {
            padding: 80px 0;
        }
        
        .btn {
            display: inline-block;
            background-color: var(--primary-color);
            color: var(--accent-color);
            padding: 12px 30px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }
        
        .btn:hover {
            background-color: var(--secondary-color);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }



        .section-title {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--primary-color);
        }
        
        /* Header & Navigation */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background-color: rgba(255, 255, 255, 0.95);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        
        header.scrolled {
            padding: 10px 0;
        }
        
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }
        
        .logo {
            font-size: 24px;
            font-weight: 700;
            color: var(--primary-color);
            text-decoration: none;
        }
        
        .logo span {
            color: var(--secondary-color);
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin-left: 30px;
        }
        
        .nav-links a {
            text-decoration: none;
            color: var(--secondary-color);
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .nav-links a:hover {
            color: var(--primary-color);
        }
        
        .hamburger {
            display: none;
            cursor: pointer;
        }
        
        /* Hero Section - Slider ile güncellendi */
        .hero {
            height: 100vh;
            position: relative;
            overflow: hidden;
        }
        
        .hero-slider {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
        
        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease;
            background-size: cover;
            background-position: center;
        }
        
        .slide.active {
            opacity: 1;
        }
        
        .slide::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--accent-color);
            height: 100%;
        }
        
        .hero-content h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: var(--accent-color);
            margin-top: 7rem;
        }
        
        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        /* Slider kontrol düğmeleri */
        .slider-controls {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
            display: flex;
            gap: 10px;
        }
        
        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        
        .slider-dot.active {
            background-color: var(--primary-color);
        }
        
        /* About Section - GÜNCELLENDİ */
        .about {
            background-color: var(--accent-color);
            position: relative;
            overflow: hidden;
        }
        
        .about::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 300px;
            height: 300px;
            background-color: rgba(227, 6, 21, 0.37);
            border-radius: 50%;
            z-index: 0;
        }
        
        .about::after {
            content: '';
            position: absolute;
            bottom: -150px;
            left: -150px;
            width: 400px;
            height: 400px;
            background-color: rgba(227, 6, 21, 0.37);
            border-radius: 50%;
            z-index: 0;
        }
        
        .about-content {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 50px;
            position: relative;
            z-index: 1;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-text p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            line-height: 1.8;
        }
        
        .stats-container {
            display: flex;
            justify-content: space-between;
            margin: 40px 0;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .stat-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            flex: 1;
            min-width: 150px;
            padding: 20px;
            border-radius: 10px;
            background-color: var(--light-gray);
            box-shadow: 0 5px 15px rgba(227, 6, 21, 0.226);
            transition: transform 0.3s ease;
        }
        
        .stat-item:hover {
            transform: translateY(-5px);
        }
        
        .stat-icon {
            width: 60px;
            height: 60px;
            margin-bottom: 15px;
            color: var(--primary-color);
        }
        
        .stat-number {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 5px;
        }
        
        .stat-text {
            font-size: 1rem;
            color: var(--text-color);
            font-weight: 500;
        }
        
.about-image {
    flex: 1;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(227, 6, 21, 0.37);
    position: relative;
    z-index: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
    transition: transform 0.5s ease;
    overflow: hidden; /* sadece img'de dursun */
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Arkadaki çerçeve */
.about-image::after {
    content: '';
    position: absolute;
    bottom: -20px;   /* tamamen resmin dışında */
    right: -25px;    /* tamamen resmin dışında */
    width: 100%;
    height: 100%;
    border-radius: 10px;
    border: 3px solid rgba(227, 6, 21, 0.37);
    z-index: -1;     /* resmin arkasında kalır */
    transition: all 0.3s ease;
}

.about-image:hover::after {
    bottom: -20px;
    right: -20px;
}

        
        /* Services Section */
        .services {
            background-color: var(--light-gray);
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .service-card {
            background-color: var(--accent-color);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .service-icon {
            background-color: var(--primary-color);
            color: var(--accent-color);
            font-size: 2rem;
            padding: 30px;
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .service-card:hover .service-icon {
            background-color: var(--secondary-color);
        }
        
        .service-content {
            padding: 25px;
            transition: all 0.3s ease;
        }
        
        .service-card:hover .service-content {
            background-color: var(--primary-color);
            color: var(--accent-color);
        }
        
        .service-card:hover .service-content h3,
        .service-card:hover .service-content p {
            color: var(--accent-color);
        }
        
        .service-content h3 {
            margin-bottom: 15px;
            color: var(--secondary-color);
            transition: color 0.3s ease;
        }
        
        .service-content p {
            color: var(--text-color);
            transition: color 0.3s ease;
        }
        
        /* Gallery Section - Slider ile güncellendi */
        .gallery {
            padding: 80px 0;
        }
        
        .swiper {
            width: 100%;
            padding: 30px 0 50px;
        }
        
        .swiper-slide {
            background-position: center;
            background-size: cover;
            width: 300px;
            height: 350px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .swiper-slide img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(227, 6, 19, 0.8);
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .swiper-slide:hover .gallery-overlay {
            opacity: 1;
        }
        
        .gallery-overlay h3 {
            color: var(--accent-color);
            text-align: center;
            font-size: 1.5rem;
        }
        
        .swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            background-color: var(--primary-color);
            opacity: 0.5;
        }
        
        .swiper-pagination-bullet-active {
            opacity: 1;
        }
        
        /* Contact Section */
        .contact {
            background-color: var(--light-gray);
        }
        
        .contact-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }
        
        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .contact-icon {
            background-color: var(--primary-color);
            color: var(--accent-color);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.2rem;
        }
        
        .contact-form {
            background-color: var(--accent-color);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
        }
        
        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-family: 'Roboto', sans-serif;
            transition: border-color 0.3s ease;
        }
        
        .form-control:focus {
            border-color: var(--primary-color);
            outline: none;
        }
        
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        
        /* Footer */
        footer {
            background-color: var(--secondary-color);
            color: var(--accent-color);
            padding: 60px 0 30px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-logo {
            font-size: 28px;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
        .footer-logo span {
            color: var(--accent-color);
        }
        
        .footer-social {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-icon {
            display: inline-flex;
            justify-content: center;
            align-items: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: var(--accent-color);
            transition: all 0.3s ease;
        }
        
        .social-icon:hover {
            background-color: var(--primary-color);
            transform: translateY(-3px);
        }
        
        .footer-links h3, .footer-hours h3 {
            color: var(--accent-color);
            margin-bottom: 20px;
            position: relative;
        }
        
        .footer-links h3:after, .footer-hours h3:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: var(--primary-color);
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: var(--accent-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--primary-color);
        }
        
        .hours-item {
            display: flex;
            gap: 2rem;
            margin-bottom: 10px;
            padding: 5px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .hours-item:last-child {
            border-bottom: none;
        }
        
        .hours-item span:last-child {
            color: var(--primary-color);
            font-weight: 500;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        /* Responsive Tasarım */
        @media (max-width: 992px) {
            .about-content {
                flex-direction: column;
            }
            
            .stats-container {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .stat-item {
                flex: 0 0 calc(50% - 20px);
            }
            
            .hero-content h1 {
                font-size: 2.8rem;
            }
        }
        
        @media (max-width: 768px) {
            .navbar {
                padding: 15px 0;
            }
            
            .hamburger {
                display: block;
                font-size: 1.5rem;
            }
            
            .nav-links {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background-color: var(--accent-color);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: all 0.5s ease;
            }
            
            .nav-links.active {
                left: 0;
            }
            
            .nav-links li {
                margin: 20px 0;
            }
            
            .hero-content h1 {
                font-size: 2.2rem;
            }
            
            .hero-content p {
                font-size: 1rem;
            }
            
            section {
                padding: 60px 0;
            }
            
            .about::before,
            .about::after {
                display: none;
            }
            
            .stat-item {
                flex: 0 0 100%;
            }
        }
        
        @media (max-width: 576px) {
            .hero-content h1 {
                font-size: 1.8rem;
            }
            
            .btn {
                padding: 10px 20px;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .slider-controls {
                bottom: 20px;
            }
            
            .about-image::after {
                display: none;
            }
            
            .stat-number {
                font-size: 1.8rem;
            }
            
            .stat-icon {
                width: 50px;
                height: 50px;
            }
            
            .swiper-slide {
                width: 250px;
                height: 300px;
            }
        }




        /* Floating Butonlar - Düzeltilmiş Mobil Uyumlu */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.floating-btn {
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 20px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.floating-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.whatsapp-btn {
    background-color: #25D366;
    animation: pulse-whatsapp 2s infinite;
}

.phone-btn {
    background-color: var(--primary-color);
    animation: pulse-phone 2s infinite;
}

/* Butonlar için tooltip */
.tooltip {
    position: absolute;
    top: 50%;
    right: calc(100% + 12px);
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.85);
    color: white;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent rgba(0, 0, 0, 0.85);
}

.floating-btn:hover .tooltip {
    opacity: 1;
    visibility: visible;
    right: calc(100% + 8px);
}

/* Butonlar için pulse animasyonu */
@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@keyframes pulse-phone {
    0% {
        box-shadow: 0 0 0 0 rgba(227, 6, 19, 0.6);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(227, 6, 19, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(227, 6, 19, 0);
    }
}

/* Responsive tasarım - Düzeltilmiş */
@media (max-width: 992px) {
    .floating-buttons {
        bottom: 15px;
        right: 15px;
    }

    html, body {
    max-width: 100%;
    overflow-x: hidden;
    }
    
    .floating-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .tooltip {
        font-size: 11px;
        padding: 5px 8px;
    }
}

@media (max-width: 768px) {
    .floating-buttons {
        bottom: 12px;
        right: 12px;
    }
    
    .floating-btn {
        width: 42px;
        height: 42px;
        font-size: 17px;
    }
    
    .tooltip {
        display: none;
    }
}

@media (max-width: 480px) {
    .floating-buttons {
        bottom: 10px;
        right: 10px;
        gap: 10px;
    }
    
    .floating-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    /* Animasyonları mobilde daha küçük yapalım */
    @keyframes pulse-whatsapp {
        0% {
            box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
        }
        70% {
            box-shadow: 0 0 0 6px rgba(37, 211, 102, 0);
        }
        100% {
            box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
        }
    }
    
    @keyframes pulse-phone {
        0% {
            box-shadow: 0 0 0 0 rgba(227, 6, 19, 0.5);
        }
        70% {
            box-shadow: 0 0 0 6px rgba(227, 6, 19, 0);
        }
        100% {
            box-shadow: 0 0 0 0 rgba(227, 6, 19, 0);
        }
    }
}

/* Çok küçük ekranlar için ek önlem */
@media (max-width: 360px) {
    .floating-buttons {
        bottom: 8px;
        right: 8px;
    }
    
    .floating-btn {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
}