@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #32A2D8; /* Logodaki Mavi */
    --primary-dark: #2081b3;
    --secondary: #C0C0C0; /* Logodaki Gri */
    --text-dark: #2C3E50;
    --text-light: #7F8C8D;
    --bg-light: #F8FAFC;
    --white: #FFFFFF;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; }
body { background-color: var(--bg-light); color: var(--text-dark); line-height: 1.7; padding-top: 80px; }

/* --- NAVBAR --- */
header { background: var(--white); box-shadow: 0 2px 15px rgba(0,0,0,0.08); position: fixed; width: 100%; top: 0; z-index: 1000; transition: var(--transition); }
.nav-container { display: flex; justify-content: space-between; align-items: center; padding: 10px 5%; max-width: 1400px; margin: 0 auto; }
.logo img { height: 65px; transition: var(--transition); }
.nav-links { list-style: none; display: flex; gap: 30px; }
.nav-links a { text-decoration: none; color: var(--text-dark); font-weight: 500; font-size: 1.05rem; transition: var(--transition); position: relative; }
.nav-links a::after { content: ''; position: absolute; width: 0; height: 3px; bottom: -5px; left: 0; background-color: var(--primary); transition: var(--transition); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover, .nav-links a.active { color: var(--primary); }

.wp-btn { background: #25D366; color: var(--white); padding: 12px 25px; border-radius: 50px; text-decoration: none; font-weight: 600; display: flex; align-items: center; gap: 10px; box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3); transition: var(--transition); }
.wp-btn:hover { background: #1ebd5b; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4); }

/* --- ORTAK COMPONENTLER --- */
section { padding: 100px 5%; max-width: 1400px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: 2.5rem; color: var(--text-dark); font-weight: 700; }
.section-header h2 span { color: var(--primary); }
.section-header p { color: var(--text-light); font-size: 1.1rem; max-width: 600px; margin: 15px auto 0; }

/* --- ANA SAYFA HERO --- */
/* --- ANA SAYFA HERO YENİ TASARIM --- */
.hero {
    min-height: calc(100vh - 80px);
    background: linear-gradient(135deg, #e8f4fa 0%, #ffffff 100%); /* Çok hafif buz mavisi ferah geçiş */
    display: flex;
    align-items: center;
    margin-top: -80px;
    padding-top: 80px;
    overflow: hidden;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    width: 100%;
    gap: 60px;
}

.hero-content {
    flex: 1;
    max-width: 650px;
    z-index: 2;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    position: relative;
    z-index: 1;
    max-width: 500px; /* Görselin maksimum genişliği */
    margin: 0 auto;
}

.slider-container {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4; /* Dikdörtgen portre görünümünü korur */
    border-radius: 30px;
    box-shadow: 0 25px 50px rgba(50, 162, 216, 0.15); /* Mavi tonlu şık gölge */
    animation: float 6s ease-in-out infinite; /* Hafif aşağı yukarı süzülme animasyonu */
    overflow: hidden; /* Köşelerin yuvarlak kalmasını sağlar */
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0; /* Başlangıçta hepsi görünmez */
    transition: opacity 1s ease-in-out; /* Yumuşak geçiş efekti */
}

.slide.active {
    opacity: 1; /* Sadece aktif olan görünür */
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.hero-badge { display: inline-block; background: rgba(50, 162, 216, 0.15); color: var(--primary); padding: 8px 20px; border-radius: 30px; font-weight: 600; margin-bottom: 25px; font-size: 0.95rem; }
.hero h1 { font-size: 3.8rem; line-height: 1.15; margin-bottom: 20px; color: var(--text-dark); font-weight: 800; }
.hero h1 span { color: var(--primary); }
.hero p { font-size: 1.2rem; color: var(--text-light); margin-bottom: 40px; }
.hero-btns { display: flex; gap: 20px; flex-wrap: wrap; }

/* Mobil Uyumluluk */
@media (max-width: 992px) {
    .hero-container { flex-direction: column; text-align: center; margin-top: 40px;}
    .hero-image { justify-content: center; margin-top: 40px; }
    .hero-btns { justify-content: center; }
    .hero h1 { font-size: 2.8rem; }
}

/* --- HİZMETLER (YENİ COMPONENT) --- */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.service-card { background: var(--white); padding: 40px 30px; border-radius: 20px; box-shadow: var(--shadow); text-align: center; transition: var(--transition); border-bottom: 4px solid transparent; }
.service-card:hover { transform: translateY(-10px); border-bottom: 4px solid var(--primary); }
.service-icon { width: 80px; height: 80px; background: rgba(50, 162, 216, 0.1); color: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; margin: 0 auto 25px; transition: var(--transition); }
.service-card:hover .service-icon { background: var(--primary); color: var(--white); }
.service-card h3 { font-size: 1.4rem; margin-bottom: 15px; }
.service-card p { color: var(--text-light); font-size: 0.95rem; }

/* --- NEDEN BİZ (İSTATİSTİKLER) --- */
.stats-section { background: var(--primary); color: var(--white); padding: 80px 5%; border-radius: 30px; margin: 50px auto; max-width: 1300px; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; text-align: center; }
.stat-item h4 { font-size: 3.5rem; font-weight: 800; margin-bottom: 10px; }
.stat-item p { font-size: 1.1rem; opacity: 0.9; font-weight: 500; }

/* --- YORUMLAR YENİ GÖRÜNÜM --- */
.testimonials { background: #f0f4f8; padding: 100px 5%; }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 30px; max-width: 1400px; margin: 0 auto; }
.testi-card { background: var(--white); padding: 40px; border-radius: 20px; box-shadow: var(--shadow); position: relative; }
.quote-icon { position: absolute; top: 30px; right: 30px; font-size: 3rem; color: rgba(192, 192, 192, 0.2); }
.stars { color: #FFB800; margin-bottom: 20px; font-size: 1.2rem; }
.testi-text { font-size: 1.1rem; color: var(--text-dark); font-style: italic; margin-bottom: 25px; }
.testi-author { display: flex; align-items: center; gap: 15px; }
.author-avatar { width: 50px; height: 50px; background: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-weight: bold; font-size: 1.2rem; }
.author-info h5 { font-size: 1.1rem; }
.author-info span { color: var(--text-light); font-size: 0.9rem; }

/* --- FOOTER --- */
footer { background: #1a252f; color: white; padding: 60px 5% 20px; margin-top: auto; }
.footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; max-width: 1400px; margin: 0 auto 40px; }
.footer-logo img { height: 60px; filter: brightness(0) invert(1); margin-bottom: 20px; }
.footer-text { color: #a0aab5; }
.footer-links h4 { font-size: 1.2rem; margin-bottom: 20px; color: var(--primary); }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: #a0aab5; text-decoration: none; transition: var(--transition); }
.footer-links a:hover { color: white; padding-left: 5px; }
.footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); color: #a0aab5; font-size: 0.9rem; }

/* WhatsApp Floating */
.floating-wp { position: fixed; bottom: 40px; right: 40px; background: #25D366; color: white; width: 65px; height: 65px; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 35px; box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4); z-index: 999; transition: var(--transition); text-decoration: none; }
.floating-wp:hover { transform: scale(1.1) rotate(-10deg); }

/* --- ALT SAYFALAR (HAKKIMIZDA V.B) ORTAK ÜST BANNER --- */
.page-header {
    background: linear-gradient(135deg, rgba(50, 162, 216, 0.9) 0%, rgba(32, 129, 179, 0.95) 100%), url('https://images.unsplash.com/photo-1628009368231-7bb7cb1c3d18?auto=format&fit=crop&q=80&w=1920') center/cover;
    padding: 120px 5% 80px;
    text-align: center;
    color: var(--white);
    margin-top: -80px;
}
.page-header h1 { font-size: 3.5rem; font-weight: 800; margin-bottom: 15px; }
.page-header p { font-size: 1.2rem; opacity: 0.9; max-width: 700px; margin: 0 auto; }

/* --- HAKKIMIZDA: HİKAYEMİZ --- */
.about-section { display: flex; align-items: center; gap: 60px; max-width: 1400px; margin: 80px auto; padding: 0 5%; }
.about-text-area { flex: 1; }
.about-text-area h2 { font-size: 2.5rem; color: var(--text-dark); margin-bottom: 20px; font-weight: 700; }
.about-text-area h2 span { color: var(--primary); }
.about-text-area p { color: var(--text-light); font-size: 1.1rem; margin-bottom: 20px; text-align: justify; }
.about-image-area { flex: 1; position: relative; }
.about-image-area img { width: 100%; border-radius: 30px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.experience-badge { position: absolute; bottom: -20px; left: -20px; background: var(--white); padding: 25px; border-radius: 20px; box-shadow: var(--shadow); text-align: center; border-bottom: 5px solid var(--primary); }
.experience-badge h3 { font-size: 2.5rem; color: var(--primary); font-weight: 800; line-height: 1; }
.experience-badge p { color: var(--text-dark); font-weight: 600; font-size: 1rem; margin-top: 5px; }

/* --- EKİBİMİZ KARTLARI --- */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 40px; }
.team-card { background: var(--white); border-radius: 20px; overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); text-align: center; }
.team-card:hover { transform: translateY(-10px); }
.team-img-wrapper { width: 100%; height: 350px; overflow: hidden; }
.team-img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.team-card:hover .team-img-wrapper img { transform: scale(1.05); }
.team-info { padding: 25px; }
.team-info h3 { font-size: 1.3rem; color: var(--text-dark); margin-bottom: 5px; }
.team-info span { display: block; color: var(--primary); font-weight: 600; margin-bottom: 15px; font-size: 0.95rem; }
.team-social { display: flex; justify-content: center; gap: 15px; }
.team-social a { color: var(--secondary); font-size: 1.2rem; transition: var(--transition); }
.team-social a:hover { color: var(--primary); }

@media (max-width: 992px) { .about-section { flex-direction: column; } .experience-badge { left: 50%; transform: translateX(-50%); bottom: -30px; } }

/* --- TAVSİYELER SAYFASI ÖZEL --- */
.tip-category { display: flex; align-items: center; gap: 60px; margin-bottom: 100px; max-width: 1400px; margin-left: auto; margin-right: auto; padding: 0 5%; }
.tip-category:nth-child(even) { flex-direction: row-reverse; }
.tip-cat-img { flex: 1; border-radius: 30px; overflow: hidden; box-shadow: var(--shadow); position: relative; }
.tip-cat-img img { width: 100%; height: 450px; object-fit: cover; display: block; transition: transform 0.5s ease; }
.tip-cat-img:hover img { transform: scale(1.05); }
.tip-cat-content { flex: 1; }
.tip-cat-content h3 { font-size: 2.2rem; color: var(--text-dark); margin-bottom: 25px; font-weight: 700; display: flex; align-items: center; gap: 15px; }
.tip-cat-content h3 i { color: var(--primary); font-size: 2.5rem; background: rgba(50, 162, 216, 0.1); padding: 15px; border-radius: 20px; }
.tip-list { list-style: none; }
.tip-list li { margin-bottom: 20px; position: relative; padding-left: 40px; font-size: 1.1rem; color: #555; }
.tip-list li::before { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: var(--primary); position: absolute; left: 0; top: 4px; font-size: 1.2rem; background: rgba(50, 162, 216, 0.1); width: 25px; height: 25px; display: flex; align-items: center; justify-content: center; border-radius: 50%; }
.tip-list li strong { color: var(--text-dark); }

/* Zehirli Gıdalar Uyarı Alanı */
.warning-section { background: #fff5f5; border-left: 8px solid #ff4757; padding: 50px 5%; margin: 80px auto; max-width: 1400px; border-radius: 0 30px 30px 0; box-shadow: 0 10px 30px rgba(255, 71, 87, 0.05); }
.warning-section h3 { color: #ff4757; font-size: 2rem; margin-bottom: 15px; display: flex; align-items: center; gap: 15px; font-weight: 800; }
.warning-section > p { font-size: 1.1rem; color: #555; margin-bottom: 30px; }
.toxic-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; }
.toxic-item { background: var(--white); padding: 25px 15px; border-radius: 15px; text-align: center; font-weight: 600; color: var(--text-dark); box-shadow: 0 5px 15px rgba(255, 71, 87, 0.08); transition: var(--transition); border-bottom: 3px solid transparent; }
.toxic-item:hover { transform: translateY(-5px); border-bottom: 3px solid #ff4757; }
.toxic-item i { display: block; font-size: 2.5rem; color: #ff4757; margin-bottom: 15px; }

@media (max-width: 992px) { 
    .tip-category, .tip-category:nth-child(even) { flex-direction: column; gap: 40px; margin-bottom: 60px; }
    .tip-cat-img img { height: 300px; }
}

/* --- ÜRÜNLER SAYFASI ÖZEL --- */
.products-showcase { padding: 40px 5% 100px; max-width: 1400px; margin: 0 auto; }

/* Fiyat Bilgi Panosu (Modern ve Güven Verici) */
.price-info-banner {
    background: linear-gradient(135deg, rgba(50, 162, 216, 0.05) 0%, rgba(37, 211, 102, 0.05) 100%);
    border-radius: 20px;
    padding: 50px 30px;
    text-align: center;
    margin-bottom: 60px;
    border: 1px solid rgba(50, 162, 216, 0.15);
}
.price-info-banner i { font-size: 3rem; color: #25D366; margin-bottom: 20px; display: block; }
.price-info-banner h3 { color: var(--text-dark); font-size: 1.8rem; margin-bottom: 15px; font-weight: 700; }
.price-info-banner p { color: var(--text-light); font-size: 1.1rem; max-width: 800px; margin: 0 auto 30px; }
.btn-wp-large {
    display: inline-flex; align-items: center; gap: 10px; background: #25D366; color: white;
    padding: 15px 35px; border-radius: 50px; text-decoration: none; font-weight: 600; font-size: 1.1rem;
    transition: var(--transition); box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}
.btn-wp-large:hover { transform: translateY(-3px); background: #1ebd5b; }

/* Ürün Grid ve Kartları */
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 40px; }
.product-card {
    background: var(--white); border-radius: 20px; padding: 25px; box-shadow: var(--shadow);
    transition: var(--transition); text-align: center; border: 1px solid transparent;
}
.product-card:hover { transform: translateY(-10px); box-shadow: 0 15px 35px rgba(0,0,0,0.08); border-color: var(--primary); }
.prod-img { width: 100%; height: 260px; object-fit: cover; border-radius: 15px; margin-bottom: 20px; transition: var(--transition); }
.product-card:hover .prod-img { transform: scale(1.03); }
.prod-badge {
    background: rgba(50, 162, 216, 0.1); color: var(--primary); padding: 6px 15px;
    border-radius: 20px; font-size: 0.85rem; font-weight: 600; display: inline-block; margin-bottom: 15px;
}
.product-card h3 { font-size: 1.4rem; color: var(--text-dark); margin-bottom: 10px; }
.product-card p { color: var(--text-light); font-size: 0.95rem; margin-bottom: 25px; min-height: 70px; }

/* Özel Fiyat Sor Butonu */
.btn-ask-price {
    display: inline-block; width: 100%; border: 2px solid var(--primary); color: var(--primary);
    padding: 12px 0; border-radius: 12px; font-weight: 600; text-decoration: none; transition: var(--transition);
}
.btn-ask-price:hover { background: var(--primary); color: white; border-color: var(--primary); }
.btn-ask-price i { margin-right: 8px; }

/* --- İLETİŞİM SAYFASI ÖZEL --- */
.contact-section { max-width: 1400px; margin: 60px auto 100px; padding: 0 5%; }

/* İletişim Kartları */
.contact-cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-bottom: 60px; }
.contact-card { 
    background: var(--white); padding: 50px 30px; border-radius: 20px; 
    text-align: center; box-shadow: var(--shadow); transition: var(--transition); 
    border-bottom: 4px solid transparent; 
}
.contact-card:hover { transform: translateY(-10px); border-bottom-color: var(--primary); box-shadow: 0 15px 35px rgba(0,0,0,0.08); }
.contact-icon { 
    width: 80px; height: 80px; background: rgba(50, 162, 216, 0.1); 
    color: var(--primary); border-radius: 50%; display: flex; align-items: center; 
    justify-content: center; font-size: 2.2rem; margin: 0 auto 25px; transition: var(--transition); 
}
.contact-card:hover .contact-icon { background: var(--primary); color: var(--white); transform: scale(1.1); }
.contact-card h3 { font-size: 1.4rem; margin-bottom: 15px; color: var(--text-dark); font-weight: 700; }
.contact-card p { color: var(--text-light); font-size: 1.05rem; line-height: 1.6; margin-bottom: 10px; }
.contact-card a { color: var(--primary); font-weight: 600; text-decoration: none; font-size: 1.1rem; transition: var(--transition); }
.contact-card a:hover { color: var(--primary-dark); text-decoration: underline; }

/* Harita Alanı */
.map-container-wrapper {
    background: var(--white);
    padding: 20px;
    border-radius: 30px;
    box-shadow: var(--shadow);
}
.map-wrapper { 
    width: 100%; border-radius: 20px; overflow: hidden; height: 500px; 
    position: relative; z-index: 1;
}
.map-wrapper iframe { width: 100%; height: 100%; border: none; }

/* --- INSTAGRAM VİTRİNİ --- */
.instagram-section {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 5%;
}

.insta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.insta-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1 / 1; /* Kare görünüm */
    display: block;
    box-shadow: var(--shadow);
}

.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.insta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.insta-overlay i {
    color: white;
    font-size: 3rem;
    transform: scale(0.5);
    transition: 0.4s ease;
}

.insta-item:hover img {
    transform: scale(1.1);
}

.insta-item:hover .insta-overlay {
    opacity: 1;
}

.insta-item:hover .insta-overlay i {
    transform: scale(1);
}

/* Instagram Renkli Özel Buton */
.btn-instagram {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(220, 39, 67, 0.3);
}

.btn-instagram:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(220, 39, 67, 0.5);
}