:root {
    --primary: #00218A; /* Lacivert */
    --accent: #FFD700;  /* Sarı */
    --white: #ffffff;
    --gray: #f4f4f4;
    --text: #333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--white);
    color: var(--text);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

header {
    background: var(--white);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 2000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    height: var(--header-height);
    display: flex;
    align-items: center;
}

header .container {
    display: flex;
    justify-content: space-between; /* Logoyu sola, Menüyü sağa iter */
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


/* Masaüstünde Hamburger Menü Butonunu Gizle */
.mobile-menu-btn {
    display: none !important;
}

/* PC Menü Listesi */
nav ul {
    display: flex !important;
    align-items: center !important;
    list-style: none !important; /* Noktaları siler */
    gap: 30px !important; /* Linkler arası boşluk */
}

nav ul li a {
    text-decoration: none !important;
    color: var(--primary) !important; /* Lacivert renk */
    font-weight: 700 !important;
    font-size: 0.95rem !important;
    transition: 0.3s ease !important;
}

nav ul li a:hover {
    color: var(--accent);
}

/* Sarı Telefon Butonu (PC Versiyonu) */
.phone-btn {
    background-color: var(--accent) !important;
    color: var(--primary) !important;
    padding: 10px 20px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.phone-btn:hover {
    transform: scale(1.05);
}
/* Hero Section */
.hero {
    height: 80vh;
    /* Tırnak işaretlerini tek katmana indirdik */
    background: linear-gradient(rgba(0, 33, 138, 0.2), rgba(0, 33, 138, 0.7)), 
                url('../assets/img/pexels-ofir-eliav-2397652-7940478.jpg') no-repeat center center/cover;
    background-size: cover;
    background-position: center 160%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding-top: 80px;
	background-attachment: fixed !important;
}
.btn {
    display: inline-block;
    background: var(--accent);
    color: var(--primary);
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 20px;
    transition: transform 0.3s, background 0.3s;
}

.btn:hover {
    transform: translateY(-3px);
    background: var(--white);
}

/* Section Common */
section {
    padding: 100px 0;
}


/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--white);
    border: 1px solid #ddd;
    padding: 20px;
    text-align: center;
    transition: 0.3s ease;
    border-radius: 10px;
}

.product-card:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transform: translateY(-10px);
}

.product-img {
    background: var(--gray);
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 3rem;
    color: var(--primary);
    border-radius: 8px;
}

/* Contact */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.contact-info i {
    color: var(--primary);
    margin-right: 10px;
}
/* İletişim alanındaki tüm linkleri (telefon, e-posta, adres) hedefler */
/* HTML'deki info-link sınıfını doğrudan hedefliyoruz */
.info-link {
    text-decoration: none !important; /* Alt çizgiyi siler */
    color: inherit !important;        /* Rengi ebeveyninden almasını sağlar */
    display: block;                   /* Bloğu tamamen kapsar */
}

/* Link içindeki başlık (h4) ve yazıların (p) renklerini sabitleyelim */
.info-link h4, 
.info-link p {
    color: #00218A !important;        /* Kurumsal lacivert rengin */
    text-decoration: none !important;
    margin-bottom: 5px;
}

/* Üzerine gelindiğinde hafif bir etkileşim olsun (Sarı renk) */
.info-link:hover h4, 
.info-link:hover p {
    color: #FFD700 !important;        /* Eysan sarısı */
}





.social-links a {
    font-size: 1.5rem;
    color: var(--primary);
    margin-right: 15px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--accent);
}


/* Responsive */



















/* Hakkımızda Bölümü */
.about {
    background-color: var(--white);
    padding: 120px 0; /* Boşlukları biraz artırdık */
}

/* Ürünler Bölümü (Sandviç Katmanı) */
.products {
    background-color: #f9f9f9; /* Çok hafif bir gri */
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 120px 0;
}

/* İletişim Bölümü */
.contact {
    background-color: var(--white);
    padding: 120px 0;
	padding-bottom: 60px !important;
    position: relative !important;
    z-index: 1 !important;
}
/* Her section altına ince bir geçişli çizgi ekler */
section {
    position: relative;
}

section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%; /* Çizgi sayfanın %60'ını kaplasın */
    height: 1px;
    /* Ortası sarı, kenarları şeffaf bir geçiş */
    background: linear-gradient(to right, transparent, var(--accent), transparent);
}

/* Son bölümde (İletişim) çizgiye gerek yok */
.contact::after {
    display: none;
}
h2 {
    text-align: center;
    color: var(--primary);
    font-size: 2.8rem;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

h2::after {
    content: '';
    width: 60px;
    height: 4px;
    background: var(--accent);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

/* İletişim Bölümü Yeni Tasarım */
.contact-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden; /* Harita köşelerinin yuvarlağa uyması için */
    border: 1px solid #eee;
}

.contact-content {
    display: flex;
    flex-wrap: wrap; /* Mobil uyum için */
    min-height: 450px; /* Yüksekliği sabitledik */
}

/* Sol Taraf: Bilgiler */
.info-side {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Dikeyde ortalar */
    background-color: var(--white);
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.icon-box {
    width: 50px;
    height: 50px;
    background-color: #f0f2f8;
    color: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 20px;
    transition: 0.3s;
}

.info-item:hover .icon-box {
    background-color: var(--primary);
    color: var(--accent);
}

.info-text h4 {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 3px;
    text-transform: uppercase;
}

.info-text p {
    color: var(--primary);
    font-weight: bold;
    margin: 0;
}

/* Sosyal Medya */
.social-wrapper {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border: 1px solid #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: 0.3s;
    text-decoration: none;
}

.social-icon:hover {
    background-color: var(--primary);
    color: var(--accent);
    border-color: var(--primary);
}

/* Sağ Taraf: Harita */


/* Responsive Düzenleme */
@media (max-width: 850px) {
    .contact-content {
        flex-direction: column;
    }
    
}
footer {
    position: relative !important;
    z-index: 9999 !important;
    background-color: #f9f9f9 !important;
    color: #888;
    padding: 25px 0 !important;
    display: block !important;
    border-top: 1px solid #ddd !important;
    margin-top: 0 !important;
    text-align: center;
}
.footer-content {
    display: flex;
    justify-content: space-between; /* Birini en sola, diğerini en sağa iter */
    align-items: center; /* Dikeyde kusursuz hizalar */
}

footer p {
    margin: 0; /* Paragrafın varsayılan boşluklarını sıfırladık */
    color: #888;
    font-size: 0.85rem;
}

footer strong {
    color: var(--primary); /* Firma ismi hafif belirgin */
}

/* AH Software - İmza Kısmı */
.signature {
    margin-top: 10px;
    font-size: 0.85rem !important;
}

.signature a {
    text-decoration: none;
    color: #bbb;
    font-weight: 700;
    transition: all 0.5s ease;
	position: relative !important;
    z-index: 10000 !important;
    pointer-events: auto !important; /* Tıklamayı zorla aktif eder */
    display: inline-block !important;
    cursor: pointer !important;
}

.signature a:hover {
    color: var(--primary);
    text-shadow: 0 0 10px rgba(0, 33, 138, 0.4);
    transform: scale(1.05);
}

/* Opsiyonel: Altına ince bir çizgi efekti */
.signature a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: var(--accent);
    transition: width 0.4s ease;
}

.signature a:hover::after {
    width: 100%; /* Üzerine gelince sarı bir çizgi uzanır */
}


@media (max-width: 600px) {
    .footer-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}



/* Partners Section - Dokunulmaz Versiyon */
.partners {
    padding: 60px 0;
    background-color: var(--white);
    overflow: hidden;
    /* Şeridi tamamen etkileşime kapatır: Tıklanamaz, tutulamaz */
    pointer-events: none; 
}

.logo-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.logo-track {
    display: flex;
    /* Logoların toplam genişliği (Logo sayısı * 250px) */
    width: calc(250px * 10); 
    animation: scroll 30s linear infinite;
}

.slide {
    width: 250px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
	
}

.slide img {
    width: 100%;
    /* Gri filtreyi ve şeffaflığı tamamen kaldırdık */
    filter: none !important; 
    opacity: 1 !important; 
    transition: transform 0.4s ease; /* Sadece büyüme efekti kalsın */
}

/* Üzerine gelince sadece hafif büyüme efekti devam etsin */
.slide img:hover {
    transform: scale(1.1);
    filter: none !important;
}

/* Sonsuz Döngü Animasyonu (Kesintisiz) */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        /* İlk 5 logonun genişliği kadar sola kayınca başa döner */
        transform: translateX(calc(-250px * 5)); 
    }
}


/* --- RESPONSIVE AYARLARI --- */
html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

.partners {
    width: 100%;
    overflow: hidden;
}

/* 2. Tablet ve Mobil (1024px ve altı) */
@media (max-width: 1024px) {
    .container { padding: 0 30px; }
    
    .hero h1 { font-size: 2.2rem; }
    
    .contact-content { flex-direction: column; }
    
}

/* 3. Telefon (768px ve altı) - KRİTİK NOKTA */
	
	
	body.menu-active::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4); /* Hafif karartma (İstemezsen 0 yapabilirsin) */
        z-index: 2000; /* Menünün (2500) altında, içeriğin üstünde */
        pointer-events: auto; /* Tıklamaları bu katman yakalar, arkaya geçirmez */
    }
	
    body.menu-open::after {
        display: none !important;
    }

    /* Header Alanı */
    header {
        height: 80px !important;
        z-index: 3000 !important; /* En üstte kalsın */
        background: #fff !important;
    }

    


    /* Menü Butonu (Üç Çizgi / X) */
    .mobile-menu-btn {
        display: block !important;
        z-index: 3100 !important;
        font-size: 2rem !important;
        color: var(--primary) !important;
        cursor: pointer;
    }

    /* Menü Paneli - Sola Yaslı ve Beyaz */
    nav {
        position: fixed !important;
        top: 0 !important;
        left: -100% !important; /* Başlangıçta gizli */
        width: 80% !important; /* Ekranın %80'i */
        height: 100vh !important;
        background: #ffffff !important;
        z-index: 2500 !important;
        transition: 0.4s ease-in-out !important;
        padding: 100px 30px !important; /* Üstten ve soldan boşluk */
        box-shadow: 10px 0 30px rgba(0,0,0,0.1) !important;
    }

    nav.active {
        left: 0 !important; /* Açık hal */
    }

    /* Liste Yapısı */
    nav ul {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important; /* SOLA HİZALAMA */
        justify-content: flex-start !important;
        list-style: none !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    nav ul li {
        margin-bottom: 25px !important;
        width: 100% !important;
        text-align: left !important;
    }

    /* Link Yazıları - Ufaltıldı */
    nav ul li a {
        font-size: 1.1rem !important;
        color: var(--primary) !important;
        font-weight: 600 !important;
        text-decoration: none !important;
    }

    /* --- TELEFON BUTONU (TAM OLARAK İSTEDİĞİN GİBİ) --- */
    nav ul li .phone-btn {
        background-color: var(--accent) !important; /* SARI ALAN */
        color: var(--primary) !important; /* LACİVERT YAZI */
        padding: 12px 20px !important;
        border-radius: 50px !important;
        display: inline-flex !important; /* Sadece içeriği kadar kaplasın */
        align-items: center !important;
        gap: 10px !important;
        font-size: 0.95rem !important;
        margin-top: 10px !important;
        font-weight: bold !important;
        box-shadow: 0 4px 10px rgba(0,0,0,0.05) !important;
    }
    
    /* Telefon ikonu için */
    nav ul li .phone-btn i {
        font-size: 1rem !important;
    }
	
	.mobile-menu-btn {
        z-index: 3000 !important;
    }
	
/* 4. Çok Küçük Ekranlar (480px ve altı) */
@media (max-width: 480px) {
    .info-side { padding: 30px 20px; }
    .icon-box { width: 40px; height: 40px; margin-right: 15px; }
    .info-text p { font-size: 0.9rem; }
}









/* ==========================================
   1. MASAÜSTÜ (PC) - 769px ve Üzeri
   ========================================== */
@media screen and (min-width: 769px) {
    /* Masaüstünde ÜÇ ÇİZGİYİ ZORLA GİZLE */
    .mobile-menu-btn {
        display: none !important;
    }
	
	header {
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 2000;
        background: #fff;
        display: flex;
        align-items: center;
        /* Yüksekliği BURADAN ayarla (Başlangıç boyutu) */
        height: 110px; 
        transition: all 0.4s ease; /* Boyut değişimini yumuşatır */
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    header .logo img {
        height: 220px; /* Başlangıç logo boyutu */
        transition: all 0.4s ease;
    }
	header.small {
        height: 80px; /* Kaydırınca düşeceği yükseklik */
        background-color: rgba(255, 255, 255, 0.98);
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }

    header.small .logo img {
        height: 150px; /* Kaydırınca logonun küçüleceği boyut */
    }
   
	

    .logo img:hover {
        transform: scale(1.08) rotate(-1deg); /* Hafif büyüme ve çok küçük bir eğim */
        filter: brightness(1.1); /* Hafif bir parlama efekti */
    }

    /* Masaüstünde LİNKLERİ ZORLA GÖSTER */
    nav {
        display: block !important;
        visibility: visible !important;
        position: relative !important;
        left: auto !important;
        width: auto !important;
        height: auto !important;
        padding: 0 !important;
		background: transparent !important; /* Arka planı şeffaf yapar */
        box-shadow: none !important;       /* Gölgeleri tamamen kaldırır */
        margin: 0 !important;
    }

    nav ul {
		position: relative;
        top: 9px;
        display: flex !important;
        flex-direction: row !important; /* Yan yana diz */
        
        gap: 35px !important;
        list-style: none !important;
		background: transparent !important; /* Liste arka planını şeffaf yapar */
        box-shadow: none !important; 
		align-items: center !important;/* Varsa buradaki gölgeyi de siler */
        
    }

    /* Link Renkleri ve Hover (Sarı) Efekti */
    nav ul li a {
		line-height: normal !important;
        text-decoration: none !important;
        color: #00218A !important;
        font-weight: 700 !important; /* 700'den 500'e çektik (Daha zarif) */
        font-size: 1rem !important; /* Bir tık küçülttük */
        padding: 5px 0 !important;
        transition: color 0.3s ease !important;
        position: relative;
        display: inline-block;
    }

    /* 2. Çizgiyi başlangıçta görünmez ve 0 genişlikte oluşturuyoruz */
    nav ul li a::after {
        content: '';
        position: absolute;
        width: 0;           /* Başlangıçta genişlik sıfır */
        height: 3px;        /* Çizginin kalınlığı */
        bottom: -2px;       /* Yazının ne kadar altında duracağı */
        left: 0;
        background-color: #FFD700; /* Sarı renk */
        transition: width 0.3s ease; /* Çizginin uzama hızı */
        border-radius: 2px;
    }

    /* 3. Üzerine gelince (Hover) çizgiyi %100 genişliğe çıkarıyoruz */
    nav ul li a:hover::after {
        width: 100%; /* Sadece o yazının genişliği kadar uzar */
    }

    /* 4. Üzerine gelince yazının da rengi değişsin istersen */
    nav ul li a:hover {
        color: #FFD700 !important;
    }

    /* 5. Sabit duran o uzun çizgiyi kaldırmak için (Eğer Header'da ise) */
    header::after, .container::after {
        display: none !important;
    }
    /* Telefon Butonu Ayarı */
.phone-group {
        display: flex !important;
        align-items: center !important;
        background-color: #FFD700 !important;
        padding: 10px 28px !important; /* Yatayda biraz daha genişlettik */
        border-radius: 50px !important;
        gap: 15px !important; /* Numaralar arasındaki mesafeyi açtık */
        white-space: nowrap !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
        cursor: pointer;
    }

    .phone-link {
        color: #00218A !important;
        text-decoration: none !important;
        font-weight: 700 !important;
        font-size: 0.85rem !important;
        letter-spacing: 0.5px; /* Numaraları daha okunur yapar */
        transition: transform 0.2s ease;
    }

    /* Aradaki çizgi için özel stil */
    .divider {
        color: #00218A !important;
        opacity: 0.2; /* Çok göze batmasın, hafif şeffaf olsun */
        font-weight: 300;
        font-size: 1.1rem;
    }

    /* Üzerine gelince renklerin asilce yer değiştirmesi */
    .phone-group:hover {
        background-color: #00218A !important;
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0, 33, 138, 0.25) !important;
    }

    .phone-group:hover .phone-link,
    .phone-group:hover .divider {
        color: #FFD700 !important;
        opacity: 1; /* Hover anında çizgi de parlasın */
		
	}
	
	



}

/* ==========================================
   2. MOBİL - 768px ve Altı
   ========================================== */
@media screen and (max-width: 768px) {
    /* 1. Header Boyutu */
    header {
        height: 70px !important; /* Mobilde header yüksekliğini sabitler */
        min-height: 70px !important;
        background: #fff !important;
        display: flex !important;
        align-items: center !important;
        padding: 0 15px !important;
    }
	

    header .container {
        display: flex !important;
        justify-content: space-between !important; /* Logo sola, Menü sağa */
        align-items: center !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    /* 2. Logo Boyutu (Mobildeki o devasa görüntüyü çözer) */
    .logo img {
        height: 150px !important; /* Mobildeki ideal logo yüksekliği */
        width: auto !important;
        max-height: 150px !important; /* Taşmayı kesin olarak engeller */
        position: static !important; /* Eğer kayma varsa resetler */
        margin: 0 !important;
    }

    /* 3. Menü Butonu (Üç Çizgi) */
    .mobile-menu-btn {
        display: block !important;
        font-size: 1.8rem !important;
        color: #00218A !important; /* Lacivert */
        cursor: pointer;
    }

    /* 4. Masaüstü Linklerini Mobilde Gizle */
    /* (Eğer hamburger menü kullanıyorsan linkler yan panelde olmalı) */
    nav ul {
        display: none; /* Mobilde linkler doğrudan görünmesin */
    }
	
	
	
	.mobile-nav { 
        padding: 40px 25px !important;
        background-color: #ffffff !important;
    }

    /* 2. Menü Linkleri Listesi */
    .mobile-nav ul {
        list-style: none !important;
        padding: 0 !important;
        margin: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 25px !important; /* Linkler arası boşluk */
    }

    .mobile-nav ul li a {
        text-decoration: none !important;
        color: #00218A !important;
        font-weight: 700 !important;
        font-size: 1.1rem !important;
        display: block !important;
        transition: color 0.3s ease;
    }

    /* 3. Telefon Numaraları Alanı (Görseldeki Sorunlu Kısım) */
    .mobile-nav .phone-group {
        margin-top: 40px !important; /* Menüden ayırır */
        display: flex !important;
        flex-direction: column !important; /* Numaraları ALT ALTA diziyoruz */
        gap: 15px !important;
        background: transparent !important; /* Mobilde sarı kutu yerine temiz görünüm */
        padding: 0 !important;
        width: 100% !important;
    }

    .mobile-nav .phone-link {
        color: #00218A !important;
        text-decoration: none !important;
        font-weight: 700 !important;
        font-size: 1rem !important;
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
        padding: 12px 15px !important;
        background-color: #FFD700 !important; /* Her numaraya ayrı sarı buton efekti */
        border-radius: 8px !important;
        justify-content: center !important;
    }

    /* 4. İkonun Kare Görünmesini Engelleyelim */
    .mobile-nav .phone-link i {
        font-family: "Font Awesome 5 Free" !important; /* İkon kütüphaneni buraya yaz */
        font-weight: 900 !important;
        font-style: normal !important;
    }

    /* 5. Aradaki O Dikey Çizgiyi Mobilde Gizliyoruz */
    .mobile-nav .divider {
        display: none !important;
    }
	.phone-group {
        display: flex !important;
        flex-direction: column !important; /* Yan yana yerine alt alta */
        gap: 12px !important;
        background: transparent !important; /* Arka planı temizle */
        padding: 0 !important;
        margin-top: 20px !important;
        width: 100% !important;
        align-items: flex-start !important; /* Sola hizala */
    }

    /* Mobilde aradaki "|" çizgisini gizliyoruz */
    .phone-group .divider {
        display: none !important;
    }

    /* Her bir telefon linkini buton gibi yapıyoruz */
    .phone-link {
        display: flex !important;
        align-items: center !important;
        background-color: #FFD700 !important; /* Sarı buton */
        color: #00218A !important;
        padding: 12px 20px !important;
        border-radius: 8px !important;
        width: 100% !important; /* Menü genişliğine yayılması için */
        font-weight: 700 !important;
        text-decoration: none !important;
        font-size: 0.95rem !important;
    }

    /* İkon ile numara arasındaki boşluğu netleştiriyoruz */
    .phone-link i {
        margin-right: 10px !important;
        font-size: 1.1rem !important;
    }
	
	
	
	
	

	
	
	
	
	/* Sosyal Medya Kapsayıcısı */
.social-wrapper {
    display: flex !important;
    gap: 15px !important;
    margin-top: 20px !important;
    justify-content: flex-start !important; /* Sola hizalar */
}

/* Daire Şeklindeki Linkler */
.social-icon {
    width: 45px !important;
    height: 45px !important;
    display: flex !important;
    align-items: center !important;    /* Dikeyde tam merkez */
    justify-content: center !important; /* Yatayda tam merkez */
    border: 1px solid #eee !important;
    border-radius: 50% !important;
    background-color: #fff !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    padding: 0 !important; /* Kaymayı önlemek için padding'i sıfırladık */
}

/* Dairenin İçindeki Simgeler (i etiketleri) */
.social-icon i {
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1 !important; /* En önemli kısım burası, satır yüksekliğini sıfırlar */
    font-size: 1.2rem !important;
    color: var(--primary) !important;
}

/* Üzerine gelince (Hover) efekti */
.social-icon:hover {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    transform: translateY(-3px);
}

.social-icon:hover i {
    color: var(--accent) !important; /* Üzerine gelince simge sarı olur */
}
	
	
	
	
	
	
	
	
	
	.info-side a {
    text-decoration: none !important; /* Alt çizgiyi siler */
    color: inherit !important;          /* Rengi ebeveyninden (lacivert) alır */
    display: block;
}

/* Hover (üzerine gelme) durumunda stilin bozulmamasını sağlar */
.info-side a:hover {
    text-decoration: none !important;
    color: inherit !important;
}

/* Eğer sadece yazıların rengi değişsin, alt çizgi hiç gelmesin istiyorsan: */
.info-text p {
    color: var(--primary) !important;
    margin: 0;
    transition: color 0.3s ease;
}

/* Üzerine gelince sadece metin sarı olsun (çizgisiz) */
.info-side a:hover .info-text p {
    color: var(--accent) !important; /* Sarı renk */
	}}




.product-img {
    height: 200px; /* Kutunun yüksekliğini sabitle */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f4f4f4; /* Resim yüklenmezse boş durmasın */
	background-color: #fff !important;
	}

.product-img img {
    width: 130%;
    height: 130%;
    object-fit: contain; /* Resmi bozmadan kutuya sığdırır. Metal parçalar için idealdir. */
    transition: transform 0.3s ease;
	mix-blend-mode: multiply;
}

.product-card:hover .product-img img {
    transform: scale(1.1); /* Üzerine gelince resmi hafifçe büyütür */
}


/* Başlangıçta gizli olacak ürünler */
.hidden-product {
    display: none;
}

/* Butonu ortalamak için */
.load-more-container {
    text-align: center;
    margin-top: 40px;
    width: 100%;
}

/* Buton Tasarımı (Sitenin renklerine göre) */
#loadMoreBtn {
    background-color: #00218A; /* Lacivert */
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
}

#loadMoreBtn:hover {
    background-color: #FFD700; /* Sarı */
    color: #00218A;
}


/* Başlangıçta gizli olanlar (Değiştirmiyoruz) */
.hidden-product {
    display: none;
}

/* Javascript ile ekleyeceğimiz animasyon sınıfı */
.fade-in {
    animation: fadeInAnimation 0.5s ease forwards;
}

/* Yukarıdan aşağıya süzülme animasyonu */
@keyframes fadeInAnimation {
    from {
        opacity: 0;
        transform: translateY(-20px); /* Hafif yukarıdan başlar */
    }
    to {
        opacity: 1;
        transform: translateY(0); /* Normal yerine oturur */
    }
}

/* Buton Konteynırı ve Buton */
.load-more-container {
    text-align: center;
    margin-top: 40px;
    width: 100%;
}

#toggleBtn {
    background-color: #00218A;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

#toggleBtn:hover {
    background-color: #FFD700;
    color: #00218A;
    transform: scale(1.05); /* Üzerine gelince çok hafif büyür */
}







/* PC'de her şey aynı kalır, sadece mobilde çalışır */
@media screen and (max-width: 768px) {
    /* Seçiciyi çok güçlü yaparak (id ve class bir arada) ezilmesini engelliyoruz */
    body section#home.hero {
        background-size: 200% auto !important; /* Resmi genişliğe sığdırır, zoom'u kaldırır */
        background-position: center top !important; /* Resmi yukarı yaslar */
        background-repeat: no-repeat !important;
        
        /* ÖNEMLİ: Resim küçüldüğü için altta boşluk kalmaması adına 
           yüksekliği de küçültmemiz gerekir. Buradaki değeri (örneğin 250px) 
           kendi fotoğrafının oranına göre deneme yanılma ile değiştirebilirsin. */
        height: 500px !important; 
        min-height: 250px !important;
    }

    /* Yazıların (Hero Content) küçülen resmin üzerine düzgün binmesi için */
    .hero-content {
        padding-top: 20px !important;
    }
}


