/* --- IGM GIDA KURUMSAL STİL DOSYASI --- */

/* 1. Değişkenler ve Sıfırlama */
:root {
    --primary-blue: #1c75bc; /* IGM Kurumsal Mavi */
    --primary-red: #f05a28;  /* IGM Kurumsal Turuncu/Kırmızı */
    --dark-text: #222222;
    --light-text: #555555;
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --border-color: #e0e0e0;
    --font-family: 'Inter', sans-serif;
}

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

body {
    font-family: var(--font-family);
    color: var(--light-text);
    line-height: 1.6;
    background-color: var(--bg-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 { 
    color: var(--dark-text); 
    font-weight: 700; 
}

a { 
    text-decoration: none; 
    color: var(--primary-blue); 
    transition: all 0.3s ease; 
}

ul { 
    list-style: none; 
}

.container { 
    width: 90%; 
    max-width: 1200px; 
    margin: auto; 
}

/* 2. Üst Bar (Arama & Çeviri) */
.top-bar {
    background-color: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
    padding: 8px 0;
    font-size: 13px;
}

.top-bar .container { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}

.search-box { 
    display: flex; 
    background: #fff; 
    border: 1px solid var(--border-color); 
    border-radius: 4px; 
    overflow: hidden; 
}

.search-box input { 
    border: none; 
    padding: 6px 12px; 
    outline: none; 
    width: 200px; 
    font-family: var(--font-family);
}

.search-box button { 
    background: var(--bg-light); 
    color: var(--dark-text); 
    border: none; 
    padding: 6px 12px; 
    cursor: pointer; 
}

/* 3. Menü (Header) */
header {
    background: var(--bg-white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.nav-container { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}

.logo img { 
    height: 70px; 
    object-fit: contain; 
}

.nav-links { 
    display: flex; 
    gap: 35px; 
}

.nav-links li a {
    color: var(--dark-text);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 5px;
}

.nav-links li a:hover, .nav-links li a.active { 
    color: var(--primary-red); 
}

.nav-links li a::after {
    content: ''; 
    position: absolute; 
    width: 0; 
    height: 2px;
    bottom: 0; 
    left: 0; 
    background-color: var(--primary-red);
    transition: width 0.3s;
}

.nav-links li a:hover::after, .nav-links li a.active::after { 
    width: 100%; 
}

.mobile-menu-icon { 
    display: none; 
    font-size: 24px; 
    cursor: pointer; 
    color: var(--dark-text); 
}

/* 4. Genel Butonlar */
.btn-primary {
    display: inline-block; 
    background: var(--primary-blue); 
    color: #fff;
    padding: 14px 35px; 
    border-radius: 4px; 
    font-weight: 600; 
    border: none;
    cursor: pointer; 
    transition: background 0.3s; 
    text-transform: uppercase; 
    font-size: 14px;
}

.btn-primary:hover { 
    background: var(--primary-red); 
    color: #fff; 
}

/* 5. Hero Section & Sayfa Başlıkları */
.hero-home {
    height: 70vh;
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-align: center;
    background-size: cover; 
    background-position: center;
    position: relative;
}

.hero-text { 
    position: relative; 
    z-index: 2; 
    max-width: 800px; 
    padding: 0 20px; 
    color: #fff; 
}

.hero-text h1 { 
    font-size: 3.5rem; 
    margin-bottom: 20px; 
    color: #fff; 
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5); 
}

.hero-text p { 
    font-size: 1.2rem; 
    margin-bottom: 30px; 
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5); 
}

.page-header {
    height: 30vh; 
    background-size: cover; 
    background-position: center;
    display: flex; 
    align-items: center; 
    justify-content: center;
    position: relative; 
    color: #fff;
}

.page-header::before { 
    content: ''; 
    position: absolute; 
    top:0; 
    left:0; 
    width:100%; 
    height:100%; 
    background: rgba(0,0,0,0.6); 
}

.page-header h1 { 
    position: relative; 
    z-index: 2; 
    font-size: 2.5rem; 
    color: #fff; 
}

/* 6. Genel Bölümler */
.section { 
    padding: 80px 0; 
}

.bg-light { 
    background-color: var(--bg-light); 
}

.section-title { 
    text-align: center; 
    margin-bottom: 60px; 
}

.section-title h2 { 
    font-size: 2.2rem; 
    text-transform: uppercase; 
}

.divider { 
    height: 3px; 
    width: 60px; 
    background: var(--primary-red); 
    margin: 15px auto 0; 
}

/* 7. Kurumsal Izgara */
.about-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 50px; 
    align-items: center; 
}

.about-grid p { 
    margin-bottom: 20px; 
    font-size: 1.1rem; 
}

.about-image img { 
    width: 100%; 
    border-radius: 8px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); 
}

/* 8. Ürün Izgaraları */
.grid-container { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 30px; 
}

.card {
    background: var(--bg-white); 
    padding: 40px 30px; 
    text-align: center;
    border-radius: 8px; 
    border: 1px solid var(--border-color);
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover { 
    transform: translateY(-5px); 
    box-shadow: 0 15px 30px rgba(0,0,0,0.08); 
    border-color: var(--primary-blue); 
}

.card i { 
    font-size: 3rem; 
    color: var(--primary-blue); 
    margin-bottom: 25px; 
}

.card h3 { 
    font-size: 1.3rem; 
    margin-bottom: 15px; 
}

.badge { 
    display: inline-block; 
    background: rgba(240, 90, 40, 0.1); 
    color: var(--primary-red); 
    padding: 6px 12px; 
    border-radius: 4px; 
    font-size: 0.85rem; 
    font-weight: 600; 
}

/* 9. Çözüm Ortakları LOGO Ayarları */
.partners-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
    gap: 20px; 
}

.partner-card {
    background: var(--bg-white); 
    padding: 15px; 
    border: 1px solid var(--border-color); 
    border-radius: 8px;
    display: flex; 
    align-items: center; 
    justify-content: center; 
    min-height: 120px; 
    transition: all 0.3s ease;
}

.partner-card:hover { 
    border-color: var(--primary-blue); 
    box-shadow: 0 10px 20px rgba(0,0,0,0.06); 
    transform: translateY(-5px);
}

.partner-card img {
    max-width: 100%;
    max-height: 80px; 
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* 10. İletişim Formu ve Harita */
.contact-wrapper { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 50px; 
    margin-bottom: 50px; 
}

.info-item { 
    display: flex; 
    gap: 20px; 
    margin-bottom: 30px; 
}

.info-item i { 
    font-size: 1.5rem; 
    color: var(--primary-red); 
    margin-top: 5px; 
}

.info-item h4 { 
    margin-bottom: 5px; 
}

.contact-form input, .contact-form textarea {
    width: 100%; 
    padding: 15px; 
    margin-bottom: 20px;
    border: 1px solid var(--border-color); 
    border-radius: 4px; 
    font-family: var(--font-family); 
    outline: none;
}

.contact-form input:focus, .contact-form textarea:focus { 
    border-color: var(--primary-blue); 
}

/* ========================================= */
/* 11. YENİ ŞIK VE İNOVATİF YAPIM AŞAMASINDA */
/* ========================================= */
.under-construction-section {
    min-height: 75vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
}

.innovation-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    max-width: 680px;
    width: 90%;
    margin: auto;
    padding: 60px 50px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
    border-top: 6px solid var(--primary-red);
}

/* İnovatif Mikro-animasyonlar */
.baking-pulse-icon {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 30px;
    position: relative;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.blue-spark {
    animation: blueSpark 2s infinite ease-in-out;
    color: var(--primary-blue);
}

.red-pulse {
    animation: redPulse 3s infinite ease-in-out;
    color: var(--primary-red);
}

.animated-cog {
    animation: slowCogRotate 6s infinite linear;
    color: var(--dark-text);
    opacity: 0.5;
}

@keyframes blueSpark {
    0%, 100% { transform: scale(1); opacity: 1; color: var(--primary-blue); }
    50% { transform: scale(1.15) rotate(15deg); color: #888; opacity: 0.8; }
}

@keyframes redPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); color: #888; }
}

@keyframes slowCogRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.innovation-card h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark-text);
    font-weight: 700;
}

.innovation-card p {
    font-size: 1.1rem;
    margin-bottom: 35px;
    color: var(--light-text);
}

/* Organik İlerleme Çubuğu */
.organik-progress-container {
    background: #e2e8f0;
    height: 14px;
    border-radius: 8px;
    margin-bottom: 40px;
    overflow: hidden;
    position: relative;
}

.progress-bar-organik {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-red));
    border-radius: 8px;
    transition: width 1.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.progress-text-organik {
    font-size: 0.8rem;
    color: #fff;
    font-weight: 600;
    position: absolute;
}

/* İnovatif Buton Grubu */
.btn-group-innovation {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-primary-blue {
    display: inline-block;
    background: var(--primary-blue);
    color: #fff;
    padding: 14px 35px;
    border-radius: 6px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
    text-transform: uppercase;
    font-size: 14px;
}

.btn-primary-blue:hover {
    background: var(--primary-red);
}

.btn-outline-red {
    display: inline-block;
    background: transparent;
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    font-size: 14px;
}

.btn-outline-red:hover {
    background: var(--primary-red);
    color: #fff;
}

/* 12. Footer */
footer { 
    background: #111111; 
    color: #ccc; 
    text-align: center; 
    padding: 30px 0; 
    font-size: 14px; 
}

/* 13. Responsive (Mobil Uyumluluk) */
@media (max-width: 768px) {
    .nav-links { 
        display: none; 
        flex-direction: column; 
        width: 100%; 
        position: absolute; 
        top: 100%; 
        left: 0; 
        background: #fff; 
        padding: 20px; 
        box-shadow: 0 10px 10px rgba(0,0,0,0.1); 
    }
    .nav-links.active { 
        display: flex; 
    }
    .mobile-menu-icon { 
        display: block; 
    }
    .about-grid, .contact-wrapper { 
        grid-template-columns: 1fr; 
    }
    .hero-text h1 { 
        font-size: 2.5rem; 
    }
    .innovation-card {
        padding: 40px 20px;
    }
}

@media (max-width: 520px) {
    .btn-group-innovation { 
        flex-direction: column; 
        gap: 15px; 
    }
}