/* Genel Stil */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(90deg, #0057B8, #FF8800);
    text-align: center;
    overflow-x: hidden;
}

/* Hamburger Menü */
.hamburger-menu {
    position: fixed;
    top: 20px;
    left: 20px;
    cursor: pointer;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.hamburger-menu .bar {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    transition: 0.4s;
}

/* Sidebar (Açılır Menü) */
.sidebar {
    position: fixed;
    top: 0;
    left: -300px;
    width: 250px;
    height: 100%;
    background-color: #646262;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    transition: 0.4s;
    z-index: 1000;
    overflow-y: auto;
}

.sidebar.active {
    left: 0;
}

.sidebar-content {
    padding: 20px;
}

.sidebar h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #000000;
}

.sidebar ul {
    list-style-type: none;
    padding: 0;
}

.sidebar ul li {
    margin: 10px 0;
    font-size: 1.1rem;
    color: #ffffff;
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(101, 101, 101, 0.5);
    z-index: 999;
    display: none;
}

.overlay.active {
    display: block;
}

/* Logo */
.logo-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
}

.logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

/* Başlık Alanı */
header {
    background: linear-gradient(90deg, #FF8800, #0057B8);
    color: rgb(0, 0, 0);
    padding: 20px;
    position: relative;
}

.header-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    display: block;
    border: 8px solid black;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

h1 {
    margin: 10px 0;
    font-size: 2.5rem;
}

p {
    font-size: 18px;
}

/* Sosyal Medya Butonları */
.social-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.social-buttons a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 50px;
    text-decoration: none;
    color: white;
    transition: background-color 0.3s ease;
}

.social-buttons a i {
    font-size: 20px;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 10px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
}

.social-buttons .instagram-button {
    background-color: #dd2a7b;
}

.social-buttons .telegram-button {
    background-color: #0088CC;
}

.social-buttons a:hover {
    opacity: 0.9;
}

/* Header Butonları */
#header-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

#header-buttons a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 50px;
    text-decoration: none;
    color: white;
}

#header-buttons .whatsapp-button {
    background-color: #25D366;
}

#header-buttons .call-button {
    background-color: #007BFF;
}

/* Ürün Kategorileri */
.urunler {
    padding: 20px;
    background-color: white;
}

.urun-kategori {
    margin: 20px auto;
    padding: 20px;
    border-radius: 10px;
    background: linear-gradient(90deg, #0057B8, #FF8800);
    color: white;
    max-width: 80%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.urun-kategori h3 {
    color: #f0f0ef;
    font-size: 2rem;
    margin-bottom: 15px;
}

.urun-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 15px;
    padding: 10px;
}

.urun-slider img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    scroll-snap-align: center;
    flex: 0 0 auto;
}

@media (min-width: 768px) {
    .urun-slider img {
        max-width: 400px;
    }
}

/* Hizmet Bölgeleri */
.bolgeler-section {
    padding: 60px 20px;
    background: linear-gradient(rgba(0, 87, 184, 0.9), rgba(0, 87, 184, 0.9));
    color: white;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #FF8800;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.bolge-kutusu {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.lokasyon {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.lokasyon:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.lokasyon-icon {
    width: 60px;
    height: 60px;
    background: #FF8800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
    color: white;
}

.lokasyon h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: white;
}

.lokasyon p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* SSS Bölgesi */
.sss-section {
    padding: 60px 20px;
    background-color: #f8f9fa;
}

.sss-kutusu {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.sss-item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.sss-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.sss-soru {
    padding: 20px;
    background: linear-gradient(90deg, #0057B8, #004494);
    color: white;
    cursor: pointer;
    position: relative;
}

.sss-soru h3 {
    font-size: 1.2rem;
    margin: 0;
    padding-right: 30px;
}

.sss-soru::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.sss-item.active .sss-soru::after {
    content: '-';
    transform: translateY(-50%) rotate(0deg);
}

.sss-cevap {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.sss-item.active .sss-cevap {
    padding: 20px;
    max-height: 200px;
}

.sss-cevap p {
    margin: 0;
    color: #333;
    line-height: 1.6;
}

/* Sabit WhatsApp ve Arama Butonları */
.fixed-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.fixed-buttons a {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #25D366;
    color: white;
    padding: 15px 20px;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    border-radius: 50px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s;
    width: 200px;
}

.fixed-buttons a:hover {
    transform: scale(1.1);
}

.fixed-buttons .call-button {
    background-color: #007BFF;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 20px;
    margin-top: 20px;
}

footer a {
    color: white;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }

    .urun-kategori h3 {
        font-size: 1.5rem;
    }

    .urun-slider img {
        width: 200px;
        height: 200px;
    }

    .fixed-buttons a {
        width: 150px;
        padding: 10px 15px;
        font-size: 16px;
    }

    .social-buttons {
        flex-direction: column;
        align-items: center;
    }

    .social-buttons a {
        width: 50%;
        text-align: center;
    }

    .bolge-kutusu,
    .sss-kutusu {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 1.5rem;
    }

    .urun-kategori h3 {
        font-size: 1.2rem;
    }

    .urun-slider img {
        width: 150px;
        height: 150px;
    }

    .fixed-buttons {
        bottom: 10px;
        right: 10px;
    }

    .fixed-buttons a {
        width: 120px;
        padding: 8px 12px;
        font-size: 14px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}