/* ==========================================================================
   ELANS TOHUM - GENEL STİL DOSYASI (TÜM SAYFALAR İÇİN)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&display=swap');

:root {
    --primary-dark: #0e4f2d;
    --primary-light: #38a32e;
    --accent-color: #38a32e;
    --white: #ffffff;
    --bg-color: #faf9f6;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body, h1, h2, h3, h4, h5, h6, p, span, a, li, button, input, textarea, label, div, b, strong, th, td, blockquote {
    font-family: 'Bricolage Grotesque', sans-serif !important;
}

body { background-color: var(--bg-color); color: #1a1a1a; }

/* --- ORTAK BUTON VE ETİKETLER --- */
.custom-btn { display: flex; align-items: center; text-decoration: none; background: var(--white); border-radius: 12px; overflow: hidden; transition: transform 0.3s ease; box-shadow: 0 5px 15px rgba(0,0,0,0.2); }
.custom-btn:hover { transform: translateY(-5px); }
.btn-icon-box { background: var(--primary-light); padding: 20px 24px; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 22px; }
.btn-text { padding: 0 40px; color: var(--primary-dark); font-weight: 700; font-size: 16px; }
.section-label { font-size: 14px; font-weight: 700; color: #777; text-transform: uppercase; display: flex; align-items: center; margin-bottom: 15px; letter-spacing: 1px; }
.section-label i { color: var(--primary-light); margin-right: 8px; }
.btn-lime { display: inline-flex; align-items: center; background: var(--primary-light); color: var(--white); padding: 16px 36px; border-radius: 10px; text-decoration: none; font-weight: 700; transition: 0.3s; }
.btn-lime:hover { transform: translateY(-3px); background: var(--primary-dark); }

/* --- HEADER VE MEGA MENÜ --- */
header { position: absolute; top: 20px; left: 5%; right: 5%; z-index: 1000; }
.nav-container { background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px); border: 1px solid rgba(0, 0, 0, 0.05); box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06); border-radius: 50px; padding: 10px 30px; display: flex; justify-content: space-between; align-items: center; height: 80px; }
.logo { display: flex; align-items: center; text-decoration: none; }
.logo img { height: 40px; width: auto; display: block; }
nav ul { list-style: none; display: flex; gap: 30px; margin: 0; padding: 0; align-items: center; }
nav ul li { position: relative; padding: 10px 0; }
nav ul li a { text-decoration: none; color: var(--primary-dark); font-size: 16px; font-weight: 700; transition: 0.3s; position: relative; }
nav > ul > li > a::after { content: ''; position: absolute; width: 0; height: 2px; bottom: -5px; left: 0; background: var(--primary-light); transition: width 0.3s; }
nav > ul > li > a:hover { color: var(--primary-light); }
nav > ul > li > a:hover::after { width: 100%; }
nav ul li ul.dropdown { position: absolute; top: 100%; left: 0; background: rgba(255, 255, 255, 0.98); min-width: 220px; padding: 15px; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); opacity: 0; visibility: hidden; transform: translateY(15px); transition: all 0.3s ease; display: flex; flex-direction: column; gap: 5px; border: 1px solid #eee; }
nav ul li:hover ul.dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
nav ul li ul.dropdown li { padding: 0;text-align:left; }
nav ul li ul.dropdown li a { 
    display: flex; 
    justify-content: flex-start; /* İçeriği en sola (başlangıca) yaslar */
    align-items: center;
    width: 100%;
    padding: 10px 15px; 
    border-radius: 8px; 
    font-weight: 600; 
    color: var(--primary-dark); 
}nav ul li ul.dropdown li a::after { display: none; }
nav ul li ul.dropdown li a:hover { background: rgba(56, 163, 46, 0.1); color: var(--primary-light); padding-left: 20px; }

.has-mega-menu { position: relative; }
.mega-menu { 
    position: absolute; 
    top: 100%; 
    left: 50%; 
    transform: translateX(-50%) translateY(15px); 
    width: 850px; /* 3. sütun silindiği için genişlik daraltıldı (1050px -> 850px) */
    background: rgba(255, 255, 255, 0.98); 
    backdrop-filter: blur(15px); 
    border-radius: 20px; 
    box-shadow: 0 20px 50px rgba(0,0,0,0.1); 
    padding: 30px; 
    opacity: 0; 
    visibility: hidden; 
    transition: all 0.3s ease; 
    border: 1px solid #eee; 
    z-index: 1000; 
    pointer-events: none; 
}
.has-mega-menu:hover .mega-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); pointer-events: auto; }
.mega-menu-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr 280px; /* 3. sütun silindiği için grid 2+1 olarak güncellendi */
    gap: 30px; 
}
.mega-title { font-size: 16px; font-weight: 800; color: var(--primary-dark); margin-bottom: 15px; border-bottom: 2px solid rgba(56, 163, 46, 0.2); padding-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.mega-title i { color: var(--primary-light); font-size: 14px; }

/* KAYMALARI ÖNLEYEN KISIM (Sola Yaslama Garantisi) */
.mega-column ul { 
    display: flex; 
    flex-direction: column; 
    gap: 5px; 
    align-items: stretch !important; /* Elemanların tam satırı kaplamasını sağlar */
    width: 100%;
}
.mega-column ul li { 
    padding: 0; 
    width: 100%; 
    display: block;
}
.mega-column ul li a { 
    display: block; 
    width: 100%;
    padding: 8px 15px; 
    border-radius: 8px; 
    font-weight: 600; 
    font-size: 14px; 
    color: #555; 
    transition: 0.3s; 
    text-align: left !important; /* Yazıları kesin olarak sola kilitler */
}
.mega-column ul li a::after { display: none; }
.mega-column ul li a:hover { background: rgba(56, 163, 46, 0.1); color: var(--primary-light); padding-left: 25px; }

/* En Sağdaki Fide Listesi Yönlendirme Kutusu */
.mega-promo { background: linear-gradient(rgba(14, 79, 45, 0.85), rgba(14, 79, 45, 0.95)), url('https://images.unsplash.com/photo-1592924357228-91a4daadcfea?q=80&w=400&auto=format&fit=crop') center/cover; border-radius: 15px; padding: 25px; display: flex; align-items: flex-end; position: relative; overflow: hidden; box-shadow: inset 0 -40px 50px rgba(0,0,0,0.5); }
.promo-box { position: relative; z-index: 2; color: var(--white); width: 100%; }
.promo-box span { font-size: 11px; font-weight: 800; color: var(--primary-dark); background: var(--primary-light); padding: 4px 10px; border-radius: 20px; margin-bottom: 15px; display: inline-block; letter-spacing: 1px; }
.promo-box h3 { font-size: 22px; margin: 0 0 10px 0; line-height: 1.2; font-weight: 800; color: var(--white); }
.promo-box p { font-size: 13px; color: rgba(255,255,255,0.85); margin-bottom: 20px; line-height: 1.4; }
.promo-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; background: var(--white); color: var(--primary-dark); padding: 10px 20px; border-radius: 50px; font-size: 14px; font-weight: 700; text-decoration: none; transition: 0.3s; width: 100%; }
.promo-btn:hover { background: var(--primary-light); color: var(--white); }



.header-right { display: flex; align-items: center; gap: 15px; }
.icon-btn { background: var(--bg-color); border: 1px solid #ddd; width: 45px; height: 45px; border-radius: 12px; display: flex; justify-content: center; align-items: center; cursor: pointer; color: var(--primary-dark); font-size: 18px; transition: 0.3s; }
.icon-btn:hover { background: var(--primary-light); color: var(--white); border-color: var(--primary-light); transform: scale(1.05); }
.quote-container { display: flex; align-items: center; background: var(--bg-color); border: 1px solid #ddd; border-radius: 12px; overflow: hidden; text-decoration: none; transition: 0.3s; }
.quote-container:hover { transform: translateY(-3px); box-shadow: 0 5px 15px rgba(0,0,0,0.1); border-color: var(--primary-light); }
.quote-icon { background: var(--primary-light); padding: 13px 15px; color: var(--white); }
.quote-btn { padding: 0 20px; color: var(--primary-dark); font-weight: 700; font-size: 15px; }

/* ==========================================================================
   TAM KAPSAMLI MOBİL UYUMLULUK VE HAMBURGER MENÜ (RESPONSIVE)
   ========================================================================== */

/* --- MOBİL MENÜ GİZLİ BAŞLANGIÇ DURUMU --- */
.hamburger-btn { display: none; background: none; border: none; font-size: 26px; color: var(--primary-dark); cursor: pointer; }
.mobile-menu-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); z-index: 2000; opacity: 0; visibility: hidden; transition: 0.3s; }
.mobile-menu-overlay.active { opacity: 1; visibility: visible; }
.mobile-menu-container { position: fixed; top: 0; right: -320px; width: 300px; height: 100vh; background: var(--white); z-index: 2001; transition: 0.4s ease-in-out; display: flex; flex-direction: column; box-shadow: -10px 0 30px rgba(0,0,0,0.1); }
.mobile-menu-container.active { right: 0; }
.mobile-menu-header { padding: 20px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #eee; }
.close-menu-btn { background: none; border: none; font-size: 24px; color: #999; cursor: pointer; transition: 0.3s; }
.close-menu-btn:hover { color: var(--primary-dark); transform: rotate(90deg); }
.mobile-nav { padding: 20px; overflow-y: auto; }
.mobile-nav ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.mobile-nav ul li a { display: block; padding: 12px 15px; color: var(--primary-dark); text-decoration: none; font-size: 16px; font-weight: 700; border-radius: 8px; transition: 0.3s; background: #faf9f6; }
.mobile-nav ul li a:hover { background: rgba(56, 163, 46, 0.1); color: var(--primary-light); }
.has-mob-sub > a { display: flex; justify-content: space-between; align-items: center; }
.mob-sub-menu { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; margin-top: 5px; padding-left: 15px; border-left: 2px solid var(--primary-light); margin-left: 15px; }
.mob-sub-menu li a { background: transparent !important; padding: 8px 10px; font-size: 14px; color: #555; }

/* --- TABLET VE BÜYÜK MOBİL (1024px) --- */
@media (max-width: 1024px) {
    /* Header ve Menü Değişimi */
    .desktop-menu { display: none !important; }
    .quote-btn-desktop { display: none !important; }
    .hamburger-btn { display: block; }
    .nav-container { padding: 10px 20px; border-radius: 20px; }
    header { top: 10px; left: 2%; right: 2%; }
    
    /* Ortak Alanlar */
    .page-header { height: 350px !important; margin-top: -90px; padding-top: 130px; }
    .page-title { font-size: 42px; }
    
    /* Ana Sayfa */
    .hero-content h1 { font-size: 50px; }
    .expertise-section { flex-direction: column; gap: 40px; padding: 80px 5%; }
    .expertise-images { width: 100%; height: 400px; margin-bottom: 20px; }
    .img-1 { width: 65%; height: 90%; }
    .img-2 { width: 50%; height: 60%; }
    
    .portfolio-section { flex-direction: column; padding: 80px 5%; gap: 40px; }
    .portfolio-info { position: static; width: 100%; text-align: center; }
    .portfolio-card { position: relative; top: 0; margin-bottom: 30px; height: 350px; }
    .portfolio-list { padding-bottom: 0; }
    
    .shop-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-container { justify-content: center; gap: 40px; }
    .stat-item { min-width: 40%; }
    
    /* SSS Sayfası */
    .sss-zigzag-section { padding: 60px 5%; }
    .sss-row { flex-direction: column; gap: 30px; }
    .sss-img-col { aspect-ratio: auto; height: 300px; width: 100%; border-radius: 12px; }
    .sss-row:nth-child(2) .sss-img-col { order: -1; }
    
    /* İletişim Sayfası */
    .contact-page-section { flex-direction: column; padding: 60px 5%; gap: 40px; }
    .contact-info-col { width: 100%; display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
    .contact-form-col { padding: 40px 20px; }
    
    /* Ürünler ve Detay */
    .products-layout { flex-direction: column; padding: 60px 5%; }
    .product-sidebar { position: static; width: 100%; display: flex; flex-wrap: wrap; gap: 20px; padding: 20px; }
    .product-sidebar .sidebar-widget { flex: 1; min-width: 250px; margin-bottom: 0; }
    .p-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    
    .detail-container { flex-direction: column; padding: 30px 20px; gap: 30px; }
    .main-image { height: 400px; }
    
    /* Hakkımızda Sayfası (Agrion) */
    .ag-container { flex-direction: column; gap: 40px; }
    .ag-image-column { padding-right: 0; padding-bottom: 0; }
    .ag-img-main { height: 400px; }
    .ag-experience-box { left: 10px; top: -20px; width: 110px; height: 110px; }
    .ag-experience-box h3 { font-size: 28px; }
    .ag-text-column h2 { font-size: 36px; }
    .ag-feature-list { grid-template-columns: 1fr; }
    .ag-values-grid { grid-template-columns: repeat(2, 1fr); }
    .ag-process-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .ag-process-card:nth-child(2)::after { display: none; }
    
    /* Footer */
    .footer-columns { grid-template-columns: repeat(2, 1fr); }
}

/* --- KÜÇÜK MOBİL (768px ve altı) --- */
@media (max-width: 768px) {
    .page-title { font-size: 32px; }
    
    /* Ana Sayfa */
    .hero-content h1 { font-size: 38px; }
    .hero-action { width: 100%; margin-top: 30px; justify-content: center; }
    .expertise-content h2 { font-size: 36px; }
    .shop-header h2 { font-size: 36px; }
    .shop-grid { grid-template-columns: 1fr; }
    .shop-card { height: 300px; }
    .stats-container { flex-direction: column; gap: 30px; }
    .stat-item { width: 100%; }
    
    .contact-section { flex-direction: column; padding: 60px 5%; text-align: center; }
    .contact-main-title { font-size: 40px; }
    .contact-list { align-items: center; text-align: left; }
    .contact-form-wrapper { padding: 40px 20px; margin-top: 30px; }
    .form-row { flex-direction: column; gap: 0; }
    
    /* Hizmetler ve SSS */
    .ms-header-area h2 { font-size: 36px; }
    .modern-service-item { padding: 20px; text-align: center; border-radius: 20px; }
    .ms-left { flex-direction: column; gap: 10px; width: 100%; }
    .ms-title { font-size: 24px; white-space: normal; }
    .ms-text-wrapper { flex-direction: column; justify-content: center; gap: 15px; }
    
    .faq-section { background-position: left; padding: 60px 5%; }
    .faq-box { padding: 40px 20px; }
    .faq-box h2 { font-size: 32px; }
    
    /* Ürünler */
    .p-grid { grid-template-columns: 1fr; }
    .detail-title { font-size: 32px; }
    .main-image { height: 300px; }
    
    /* Hakkımızda */
    .ag-values-grid { grid-template-columns: 1fr; }
    .ag-process-grid { grid-template-columns: 1fr; }
    .ag-process-card::after { display: none; }
    
    /* Bilgilendirme ve Galeri */
    .blog-grid { grid-template-columns: 1fr; }
    .article-section { flex-direction: column; }
    .article-sidebar { width: 100%; }
    .article-title { font-size: 32px; }
    .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 250px; } 
    .item-large, .item-tall { grid-column: span 1; grid-row: span 1; }
    
    /* İletişim, Footer, Stok */
    .contact-info-col { grid-template-columns: 1fr; }
    .c-row { flex-direction: column; }
    .footer-columns { grid-template-columns: 1fr; text-align: center; }
    .footer-col h4::after { left: 50%; transform: translateX(-50%); }
    .footer-col ul li { justify-content: center; }
    .footer-top-row { flex-direction: column; text-align: center; }
    .filter-area { grid-template-columns: 1fr; }
    .stok-top-bar { text-align: center; }
    .stok-top-bar > div { flex-direction: column; width: 100%; }
    .btn-excel { width: 100%; justify-content: center; }
}

/* --- ORTAK SAYFA BAŞLIĞI --- */
.page-header { height: 500px; background: linear-gradient(rgba(238, 247, 238, 0.60), rgba(216, 237, 218, 0.95)), url('../image/elansfide.jpg')  center/cover; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; margin-top: -80px; padding-top: 180px; }
.page-title { font-size: 56px; margin: 0; font-weight: 800; line-height: 1; color: var(--primary-dark); }
.breadcrumb { font-size: 16px; margin-top: 15px; font-weight: 600; color: var(--primary-light); }
.breadcrumb a { color: var(--primary-dark); text-decoration: none; transition: 0.3s; }
.breadcrumb a:hover { color: var(--primary-light); }
.breadcrumb .divider { margin: 0 8px; color: var(--primary-light); opacity: 0.5; }

/* --- YENİ EKLENEN: SSS (Sıkça Sorulan Sorular) TASARIMI --- */
.faq-section {
    position: relative;
    padding: 100px 5%;
    /* Arkaplan Görseli */
    background: url('/image/elansfide1.jpg') center/cover no-repeat;
    background-attachment: fixed;
    display: flex;
    justify-content: flex-end; /* Sağ tarafa yaslar */
    align-items: center;
}
.faq-section::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.1), rgba(0,0,0,0.8)); /* Karartma Perdesi */
}
.faq-box {
    position: relative;
    z-index: 2;
    background: rgba(40, 40, 40, 0.7); /* Görseldeki gibi koyu ve şeffaf kutu */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 60px 50px;
    border-radius: 20px;
    width: 100%;
    max-width: 650px;
    color: var(--white);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.faq-label {
    font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px;
    color: var(--white); margin-bottom: 10px; display: flex; align-items: center; gap: 8px; opacity: 0.8;
}
.faq-box h2 { font-size: 42px; margin: 0 0 30px 0; font-weight: 700; line-height: 1.2; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.2); padding: 25px 0; }
.faq-item:last-child { border-bottom: none; padding-bottom: 0; }
.faq-title {
    display: flex; justify-content: space-between; align-items: center;
    font-size: 18px; font-weight: 600; cursor: pointer; transition: color 0.3s;
}
.faq-title i { font-size: 18px; transition: 0.3s; }
.faq-content {
    max-height: 0; overflow: hidden; transition: all 0.4s ease;
    font-size: 15px; color: rgba(255,255,255,0.75); line-height: 1.7;
}
.faq-item.active .faq-title { color: #d4e157; /* Görseldeki sarı/açık yeşil tonda aktif rengi */ }
.faq-item.active .faq-content { max-height: 500px; margin-top: 15px; }

/* SSS Alt Sayfası İçin (Beyaz Tema) */
.sss-page-section { padding: 100px 10%; background: var(--bg-color); }
.sss-page-container { max-width: 900px; margin: 0 auto; background: var(--white); padding: 60px; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.03); border: 1px solid #eee;}
.sss-page-container .faq-item { border-bottom: 1px solid #eee; }
.sss-page-container .faq-title { color: var(--primary-dark); }
.sss-page-container .faq-content { color: #666; }
.sss-page-container .faq-item.active .faq-title { color: var(--primary-light); }

/* --- FOOTER ALANI --- */
.site-footer { display: flex; flex-wrap: wrap; width: 100%; color: var(--white); margin-top: 50px; }
.footer-newsletter { flex: 1; min-width: 400px; padding: 80px 5%; display: flex; flex-direction: column; justify-content: center; background: linear-gradient(rgba(14, 79, 45, 0.8), rgba(14, 79, 45, 0.9)), url('https://images.unsplash.com/photo-1464226184884-fa280b87c399?q=80&w=800&auto=format&fit=crop') center/cover; }
.newsletter-label { color: var(--primary-light); font-size: 14px; font-weight: bold; text-transform: uppercase; letter-spacing: 1px; display: flex; align-items: center; margin-bottom: 15px; }
.newsletter-label i { margin-right: 8px; }
.footer-newsletter h2 { font-size: 42px; margin-bottom: 30px; font-weight: 700; line-height: 1.2; }
.newsletter-form { position: relative; max-width: 450px; margin-bottom: 20px; }
.newsletter-form input { width: 100%; padding: 18px 25px; border-radius: 50px; border: 1px solid rgba(255,255,255,0.3); background: rgba(255,255,255,0.1); backdrop-filter: blur(5px); color: var(--white); outline: none; }
.newsletter-form button { position: absolute; right: 5px; top: 5px; bottom: 5px; padding: 0 35px; border-radius: 50px; border: none; background: var(--primary-light); color: var(--white); font-weight: 700; cursor: pointer; transition: 0.3s; }
.newsletter-form button:hover { background: var(--white); color: var(--primary-dark); }
.privacy-check { font-size: 14px; color: #eee; display: flex; align-items: flex-start; gap: 10px; line-height: 1.5; }
.footer-info { flex: 1.5; background: var(--primary-dark); padding: 80px 5% 40px; }
.footer-top-row { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 30px; margin-bottom: 40px; flex-wrap: wrap; gap: 20px; }
.footer-logo { display: flex; align-items: center; }
.footer-logo img { height: 65px; background: var(--white); padding: 10px 20px; border-radius: 12px; box-shadow: 0 5px 15px rgba(0,0,0,0.2); display: block; }
.social-links { display: flex; gap: 20px; align-items: center; }
.social-links span { font-size: 14px; font-weight: 600; text-transform: uppercase; margin-right: 10px; }
.social-links a { color: var(--white); text-decoration: none; font-size: 18px; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; justify-content: center; align-items: center; transition: 0.3s; }
.social-links a:hover { background: var(--primary-light); color: var(--white); }
.footer-columns { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.footer-col h4 { font-size: 20px; margin-bottom: 25px; position: relative; font-weight: 700; }
.footer-col h4::after { content: ''; position: absolute; left: 0; bottom: -8px; width: 30px; height: 2px; background: var(--primary-light); }
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 15px; color: #ccc; font-size: 15px; display: flex; align-items: center; }
.footer-col ul li i { color: var(--primary-light); margin-right: 12px; min-width: 20px; }
.footer-col ul li a { color: #ccc; text-decoration: none; transition: 0.3s; }
.footer-col ul li a:hover { color: var(--primary-light); padding-left: 5px; }
.footer-bottom { margin-top: 60px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; font-size: 14px; color: #aaa; flex-wrap: wrap; gap: 15px; }
.footer-bottom a { color: #aaa; text-decoration: none; margin-left: 20px; transition: 0.3s; }
.footer-bottom a:hover { color: var(--primary-light); }
.floating-icon { position: fixed; bottom: 30px; right: 30px; background: var(--primary-light); width: 50px; height: 50px; border-radius: 50%; display: flex; justify-content: center; align-items: center; color: var(--white); font-size: 20px; box-shadow: 0 4px 15px rgba(0,0,0,0.2); cursor: pointer; z-index: 999; transition: 0.3s; }
.floating-icon:hover { transform: translateY(-5px); background: var(--primary-dark); }

/* --- İNDEX SAYFASI CSS --- */
.hero-section { position: relative; height: 100vh; width: 100%; overflow: hidden; display: flex; align-items: flex-end; padding-bottom: 120px; border-radius: 0 0 3% 3%; }
.hero-bg-video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(14, 79, 45, 0.4); z-index: 1; }
.hero-container { position: relative; z-index: 2; width: 90%; margin: 0 auto; display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; color:var(--white); font-size:25px; }
.hero-label { font-size: 16px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 20px; display: flex; align-items: center; color: var(--white); }
.hero-label i { margin-right: 10px; color: var(--primary-light); font-size: 20px; }
.hero-content h1 { font-size: 72px; line-height: 1.1; font-weight: 700; margin: 0; }
.hero-content p { font-size: 20px; margin-top: 20px; max-width: 600px; line-height: 1.6; color: rgba(255,255,255,0.9); }
.expertise-section { padding: 100px 10%; display: flex; align-items: center; gap: 80px; overflow: hidden; background-color: var(--bg-color);}
.expertise-images { flex: 1; position: relative; height: 600px; }
.exp-img { position: absolute; border-radius: 20px; background-size: cover; background-position: center; box-shadow: 0 15px 40px rgba(0,0,0,0.1); transition: transform 0.1s ease-out; }
.img-1 { width: 52%; height: 95%; top: 0; left: 0; background-image: url('/image/elanstohum.jpg'); z-index: 1; }
.img-2 { width: 45%; height: 70%; bottom: 5%; right: 0; background-image: url('/image/elans.jpeg'); z-index: 2; display: flex; align-items: flex-end; padding: 20px; }
.img-tag { background: var(--primary-light); color: var(--white); padding: 12px 25px; border-radius: 8px; font-weight: 700; font-size: 15px; opacity: 0; transform: translateY(20px); transition: all 0.4s ease; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.expertise-images:hover .img-tag { opacity: 1; transform: translateY(0); }
.expertise-content { flex: 1; }
.expertise-content h2 { font-size: 48px; color: var(--primary-dark); margin-bottom: 20px; font-weight: 700; letter-spacing: -1px; }
.expertise-content p { color: #555; line-height: 1.8; margin-bottom: 40px; font-size: 16px; }
.skill-bar { margin-bottom: 25px; }
.skill-info { display: flex; justify-content: space-between; margin-bottom: 8px; font-weight: 600; color: var(--primary-dark); }
.progress-line { width: 100%; height: 6px; background: #e0e0e0; border-radius: 6px; position: relative; }
.progress-line span { display: block; height: 100%; background: var(--primary-dark); border-radius: 6px; position: relative; }
.progress-line span::after { content: attr(data-percent); position: absolute; right: 0; top: 20px; font-size: 14px; font-weight: bold; color: var(--primary-dark); }
.expertise-actions { display: flex; align-items: center; gap: 30px; margin-top: 40px; }
.btn-green { background: var(--primary-light); color: var(--white); padding: 16px 35px; border-radius: 8px; text-decoration: none; font-weight: 700; display: flex; align-items: center; gap: 10px; transition: transform 0.3s; }
.btn-green:hover { transform: translateY(-3px); background: var(--primary-dark); }
.btn-video { display: flex; align-items: center; text-decoration: none; color: var(--primary-dark); font-weight: 600; gap: 15px; }
.play-icon { width: 55px; height: 55px; background: var(--primary-light); border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 16px; color: var(--white); transition: 0.3s; animation: pulse-green 2s infinite; }
@keyframes pulse-green { 0% { box-shadow: 0 0 0 0 rgba(56, 163, 46, 0.7); } 70% { box-shadow: 0 0 0 15px rgba(56, 163, 46, 0); } 100% { box-shadow: 0 0 0 0 rgba(56, 163, 46, 0); } }
.partner-section { padding: 80px 0; background-color: #faf9f6; border-top: 1px solid #f0f0f0; overflow: hidden; white-space: nowrap; position: relative; }
.logos-slide { display: inline-block; animation: 35s slide infinite linear; }
.partner-logo { display: inline-block; margin: 0 60px; vertical-align: middle; opacity: 0.4; transition: all 0.3s ease; cursor: pointer; }
.partner-logo img { height: 80px; width: auto; filter: grayscale(100%); display: block; }
.partner-logo:hover { opacity: 1 !important; transform: scale(1.1); }
.partner-logo:hover img { filter: grayscale(0%) !important; }
.partner-section:hover .logos-slide { animation-play-state: paused; }
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-100%); } }
.portfolio-section { padding: 100px 10%; background-color: var(--bg-color); display: flex; gap: 80px; align-items: flex-start; }
.portfolio-info { flex: 0 0 35%; position: sticky; top: 150px; height: fit-content; z-index: 10; }
.portfolio-info h2 { font-size: 52px; font-weight: 600; line-height: 1.2; color: var(--primary-dark); margin-bottom: 20px; }
.portfolio-desc-text { font-size: 16px; color: #555; line-height: 1.7; margin-bottom: 40px; }
.portfolio-list { flex: 1; display: flex; flex-direction: column; padding-bottom: 100px; }
.portfolio-card { position: sticky; top: 120px; height: 500px; border-radius: 24px; overflow: hidden; cursor: pointer; box-shadow: 0 15px 40px rgba(0,0,0,0.1); margin-bottom: 80px; background: var(--white); }
.portfolio-card:last-child { margin-bottom: 0; }
.portfolio-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.portfolio-card:hover .portfolio-img { transform: scale(1.05); }
.portfolio-overlay-box { position: absolute; bottom: 30px; right: 30px; width: 380px; background: rgba(255, 255, 255, 0.15); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); padding: 30px; border-radius: 20px; border: 1px solid rgba(255, 255, 255, 0.3); color: var(--white); z-index: 2; }
.pf-category { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: var(--primary-light); margin-bottom: 10px; display: block; }
.portfolio-overlay-box h3 { font-size: 26px; font-weight: 700; margin-bottom: 15px; line-height: 1.3; }
.pf-desc { font-size: 15px; line-height: 1.6; color: rgba(255, 255, 255, 0.95); margin-bottom: 20px; }
.pf-link { text-decoration: none; color: var(--white); font-weight: 700; font-size: 15px; display: flex; align-items: center; gap: 10px; }
.portfolio-card:hover .pf-link i { margin-left: 5px; color: var(--primary-light); }
.shop-section { margin: 0 3%; border-radius: 50px; padding: 100px 8%; margin-bottom: 80px; background-color: var(--primary-dark); color: var(--white); }
.shop-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 60px; flex-wrap: wrap; gap: 20px; }
.shop-label { font-size: 14px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 15px; color: rgba(255, 255, 255, 0.7); display: flex; align-items: center; }
.shop-label i { margin-right: 10px; color: var(--primary-light); }
.shop-header h2 { font-size: 52px; font-weight: 600; margin: 0; line-height: 1.1; }
.shop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.shop-card { position: relative; height: 500px; border-radius: 20px; overflow: hidden; cursor: pointer; background: #000; }
.shop-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; opacity: 0.8; }
.shop-card:hover .shop-card-img { transform: scale(1.1); opacity: 1; }
.card-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(14,79,45,0.9)); z-index: 1; }
.card-content { position: absolute; bottom: 40px; left: 30px; right: 30px; z-index: 2; color: var(--white); }
.card-badge { position: absolute; top: 30px; left: 30px; z-index: 2; display: flex; align-items: center; font-size: 14px; font-weight: 700; color: var(--white); }
.card-badge i { margin-right: 8px; font-size: 16px; color: var(--primary-light); }
.card-content h3 { font-size: 32px; font-weight: 600; margin-bottom: 20px; line-height: 1.2; }
.card-link { color: var(--white); text-decoration: none; font-weight: 700; font-size: 16px; display: flex; align-items: center; gap: 10px; transition: 0.3s; }
.shop-card:hover .card-link i { transform: translateX(5px); color: var(--primary-light); }
.showcase-wrapper { position: relative; width: 100%; height: 85vh; overflow: hidden; background: #111; }
.showcase-bg-layer { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; opacity: 0; transition: opacity 0.6s ease-in-out, transform 6s ease; z-index: 1; transform: scale(1); }
.showcase-bg-layer.active { opacity: 1; transform: scale(1.05); }
.showcase-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.45); z-index: 2; pointer-events: none; }
.showcase-columns { position: relative; z-index: 3; display: flex; width: 100%; height: 100%; }
.sc-col { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; border-right: 1px solid rgba(255, 255, 255, 0.2); cursor: pointer; transition: background 0.3s; }
.sc-col:last-child { border-right: none; }
.sc-col:hover { background: rgba(255, 255, 255, 0.1); }
.sc-content { color: var(--white); padding: 0 20px; }
.sc-top { display: flex; flex-direction: column; align-items: center; gap: 15px; margin-bottom: 20px; }
.sc-icon { font-size: 32px; color: var(--primary-light); }
.sc-label { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--white); }
.sc-content h2 { font-size: 56px; font-weight: 600; line-height: 1.1; margin: 0; }
.stats-section { padding: 80px 10%; background-color: #faf9f6; position: relative; overflow: hidden; }
.stats-bg-pattern { position: absolute; bottom: -50px; left: 0; width: 100%; height: 200px; background-size: cover; opacity: 0.05; pointer-events: none; filter: grayscale(100%); }
.stats-container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; z-index: 2; position: relative; }
.stat-item { flex: 1; min-width: 200px; text-align: center; margin-bottom: 30px; }
.icon-wrapper { position: relative; width: 100px; height: 70px; margin: 0 auto 15px; display: flex; justify-content: center; align-items: center; }
.wreath-left, .wreath-right { position: absolute; font-size: 40px; color: var(--primary-light); top: 0; }
.wreath-left { left: 10px; transform: rotate(-25deg); }
.wreath-right { right: 10px; transform: rotate(25deg) scaleX(-1); }
.inner-icon { font-size: 32px; color: var(--primary-dark); position: relative; top: 5px; z-index: 2; }
.stat-number { font-size: 56px; font-weight: 700; color: var(--primary-dark); margin-bottom: 5px; line-height: 1; }
.stat-label { font-size: 20px; font-weight: 500; color: #888; letter-spacing: 1px; }

/* --- DİĞER SAYFALARIN CSS'LERİ --- */
.about-section { padding: 100px 10%; display: flex; gap: 80px; align-items: center; }
.about-images { flex: 1; position: relative; height: 550px; }
.about-img-main { width: 80%; height: 100%; border-radius: 20px; object-fit: cover; box-shadow: 0 15px 40px rgba(0,0,0,0.1); }
.about-experience { position: absolute; bottom: 40px; right: 0; background: var(--primary-light); padding: 30px; border-radius: 20px; text-align: center; color: var(--white); box-shadow: 0 10px 30px rgba(56, 163, 46, 0.3); }
.about-experience h3 { font-size: 48px; margin: 0; line-height: 1; font-weight: 800; }
.about-experience span { font-size: 16px; font-weight: 600; text-transform: uppercase; }
.about-content { flex: 1; }
.sub-title { font-size: 16px; color: var(--primary-light); margin-bottom: 10px; display: block; font-weight:700; text-transform:uppercase; letter-spacing:1px;}
.main-title { font-size: 48px; color: var(--primary-dark); margin-bottom: 25px; line-height: 1.2; font-weight:800; }
.about-text { color: #555; font-size: 16px; line-height: 1.8; margin-bottom: 30px; }
.feature-list { list-style: none; padding: 0; margin-bottom: 40px; }
.feature-list li { display: flex; align-items: center; gap: 15px; font-size: 18px; font-weight: 600; color: var(--primary-dark); margin-bottom: 15px; }
.feature-list i { color: var(--primary-light); font-size: 20px; }
.mv-section { background-color: var(--primary-dark); padding: 80px 10%; display: grid; grid-template-columns: 1fr 1fr; gap: 50px; color: var(--white); }
.mv-box { background: rgba(255,255,255,0.05); padding: 50px; border-radius: 20px; border: 1px solid rgba(255,255,255,0.1); transition: 0.3s; }
.mv-box:hover { background: rgba(255,255,255,0.1); transform: translateY(-10px); }
.mv-icon { font-size: 48px; color: var(--primary-light); margin-bottom: 20px; }
.mv-box h3 { font-size: 32px; margin-bottom: 15px; }
.mv-box p { color: rgba(255,255,255,0.8); line-height: 1.7; font-size: 16px; }
.blog-section { padding: 100px 10%; background-color: var(--bg-color); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.blog-card { background: #fff; border-radius: 20px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.03); transition: 0.4s; }
.blog-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(14, 79, 45, 0.1); }
.blog-img-wrapper { position: relative; height: 260px; overflow: hidden; }
.blog-img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.blog-card:hover .blog-img { transform: scale(1.1); }
.blog-date { position: absolute; bottom: 0; right: 0; background: var(--primary-light); color: var(--white); padding: 12px 20px; border-top-left-radius: 20px; text-align: center; font-weight: 700; line-height: 1.2; }
.b-day { font-size: 22px; display: block; }
.b-month { font-size: 12px; text-transform: uppercase; }
.blog-content { padding: 30px; }
.blog-meta { display: flex; gap: 15px; font-size: 13px; color: #888; font-weight: 600; margin-bottom: 15px; }
.blog-meta i { color: var(--primary-light); margin-right: 5px; }
.blog-title { font-size: 24px; color: var(--primary-dark); margin: 0 0 15px 0; line-height: 1.3; }
.blog-desc { color: #666; font-size: 15px; line-height: 1.7; margin-bottom: 25px; }
.blog-link { display: inline-flex; align-items: center; gap: 8px; color: var(--primary-dark); font-weight: 700; text-decoration: none; text-transform: uppercase; font-size: 14px; transition: 0.3s; }
.blog-link i { color: var(--primary-light); transition: 0.3s; }
.blog-card:hover .blog-link i { transform: translateX(5px); }
.article-section { padding: 80px 10%; background-color: var(--bg-color); display: flex; gap: 60px; align-items: flex-start; }
.article-content-wrapper { flex: 1; background: var(--white); padding: 50px; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.03); }
.article-img { width: 100%; height: 450px; object-fit: cover; border-radius: 15px; margin-bottom: 40px; }
.article-meta { display: flex; gap: 20px; font-size: 14px; color: #888; font-weight: 600; margin-bottom: 20px; border-bottom: 1px solid #eee; padding-bottom: 20px; }
.article-meta i { color: var(--primary-light); margin-right: 5px; }
.article-title { font-size: 42px; color: var(--primary-dark); margin-top: 0; margin-bottom: 30px; line-height: 1.2; font-weight:800; }
.article-body { color: #444; font-size: 17px; line-height: 1.8; }
.article-body h3 { font-size: 26px; color: var(--primary-dark); margin: 40px 0 20px; }
.article-body p { margin-bottom: 20px; }
.article-body ul { margin-bottom: 20px; padding-left: 20px; }
.article-body ul li { margin-bottom: 10px; }
.article-body blockquote { background: rgba(56, 163, 46, 0.05); border-left: 5px solid var(--primary-light); padding: 25px 30px; margin: 30px 0; font-size: 20px; font-style: italic; color: var(--primary-dark); font-weight: 600; border-radius: 0 15px 15px 0; }
.article-sidebar { flex: 0 0 320px; position: sticky; top: 120px; }
.sidebar-box { background: var(--white); padding: 30px; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.03); margin-bottom: 40px; border: 1px solid #eee; }
.sidebar-title { font-size: 20px; color: var(--primary-dark); font-weight: 700; margin-bottom: 20px; border-bottom: 2px solid var(--primary-light); padding-bottom: 10px; display: inline-block; }
.recent-posts { list-style: none; padding: 0; margin: 0; }
.recent-posts li { margin-bottom: 15px; border-bottom: 1px solid #eee; padding-bottom: 15px; }
.recent-posts li:last-child { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }
.recent-posts a { text-decoration: none; color: #555; font-size: 15px; font-weight: 600; transition: 0.3s; line-height: 1.4; display: block; }
.recent-posts a:hover { color: var(--primary-light); }
.category-list { list-style: none; padding: 0; margin: 0; }
.category-list li { margin-bottom: 10px; }
.category-list a { text-decoration: none; color: #666; font-size: 15px; display: flex; justify-content: space-between; padding: 10px 15px; background: #fdfdfd; border: 1px solid #eee; border-radius: 8px; transition: 0.3s; }
.category-list a:hover { background: var(--primary-light); color: var(--white); border-color: var(--primary-light); }
.gallery-section { padding: 100px 10%; background-color: var(--bg-color); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 300px; gap: 20px; }
.gallery-item { position: relative; border-radius: 15px; overflow: hidden; cursor: pointer; }
.item-large { grid-column: span 2; grid-row: span 2; }
.item-tall { grid-row: span 2; }
.gallery-img { width: 100%; height: 100%; object-fit: cover; transition: 0.6s ease; }
.gallery-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(14, 79, 45, 0.7); display: flex; align-items: center; justify-content: center; opacity: 0; transition: 0.4s ease; }
.gallery-item:hover .gallery-img { transform: scale(1.1); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-icon { width: 60px; height: 60px; background: var(--primary-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 24px; transform: translateY(20px); transition: 0.4s; }
.gallery-item:hover .gallery-icon { transform: translateY(0); }
.contact-section { padding: 100px 10%; background-color: #faf9f6; display: flex; flex-wrap: wrap; gap: 60px; align-items: center; }
.contact-info { flex: 1; min-width: 300px; }
.contact-sub-title { color: var(--primary-light); font-weight: 700; font-size: 15px; margin-bottom: 10px; display: block; }
.contact-main-title { font-size: 52px; color: var(--primary-dark); margin: 0 0 20px 0; line-height: 1; }
.contact-divider { color: var(--primary-light); font-size: 24px; margin-bottom: 30px; display: flex; gap: 5px; }
.contact-desc { color: #666; line-height: 1.8; margin-bottom: 40px; font-size: 16px; }
.contact-list { display: flex; flex-direction: column; gap: 30px; }
.contact-item { display: flex; align-items: center; gap: 20px; }
.icon-circle { width: 60px; height: 60px; background: var(--primary-dark); border-radius: 50%; display: flex; justify-content: center; align-items: center; color: var(--white); font-size: 24px; flex-shrink: 0; transition: transform 0.3s; }
.contact-item:hover .icon-circle { transform: rotate(360deg); background: var(--primary-light);}
.c-details h5 { font-size: 14px; color: #888; margin: 0 0 5px 0; font-weight: 400; }
.c-details p { font-size: 20px; color: var(--primary-dark); font-weight: 700; margin: 0; }
.contact-form-wrapper { flex: 1.2; min-width: 350px; background-color: #fff; padding: 60px; border-radius: 20px; position: relative; overflow: hidden; border: 1px solid #eee; box-shadow: 0 10px 40px rgba(0,0,0,0.03); }
.form-bg-sketch { position: absolute; bottom: 0; left: 0; width: 100%; height: 150px; background-size: cover; opacity: 0.05; mix-blend-mode: multiply; pointer-events: none; }
.c-form { position: relative; z-index: 2; }
.form-row { display: flex; gap: 20px; margin-bottom: 20px; }
.form-group { flex: 1; }
.c-input, .c-textarea { width: 100%; padding: 20px; border: 1px solid #eee; border-radius: 10px; background: #fdfdfd; font-size: 15px; color: #555; outline: none; transition: 0.3s; }
.c-input:focus, .c-textarea:focus { border-color: var(--primary-light); }
.c-textarea { height: 150px; resize: none; margin-bottom: 30px; }
.btn-submit { background-color: var(--primary-dark); color: var(--white); border: none; padding: 5px 5px 5px 30px; border-radius: 50px; font-weight: 700; font-size: 16px; cursor: pointer; display: inline-flex; align-items: center; gap: 20px; transition: 0.3s; }
.btn-submit:hover { background: var(--primary-light); }
.btn-icon-circle { width: 50px; height: 50px; background-color: var(--primary-light); border-radius: 50%; display: flex; justify-content: center; align-items: center; color: var(--white); font-size: 18px; }
.contact-page-section { padding: 100px 10%; display: flex; gap: 60px; }
.contact-info-col { flex: 0 0 35%; display: flex; flex-direction: column; gap: 30px; }
.info-box { background: var(--white); padding: 40px 30px; border-radius: 20px; text-align: center; box-shadow: 0 10px 30px rgba(0,0,0,0.03); border: 1px solid #eee;}
.info-icon { width: 80px; height: 80px; background: rgba(56, 163, 46, 0.1); border-radius: 50%; display: flex; justify-content: center; align-items: center; margin: 0 auto 20px; color: var(--primary-light); font-size: 32px; transition: 0.3s; }
.info-box:hover .info-icon { background: var(--primary-light); color: var(--white); transform: scale(1.1); }
.info-box h4 { font-size: 22px; color: var(--primary-dark); margin-bottom: 10px; }
.info-box p { color: #666; font-size: 16px; line-height: 1.6; margin: 0; }
.form-title { font-size: 42px; color: var(--primary-dark); margin: 0 0 10px 0; }
.form-desc { color: #666; margin-bottom: 40px; font-size: 16px; }
.map-section { width: 100%; height: 500px; line-height: 0; }
.map-section iframe { width: 100%; height: 100%; border: none; filter: grayscale(20%) contrast(1.1); }
.services-section { padding: 100px 10%; }
.sec-header { text-align: center; margin-bottom: 60px; }
.sec-sub { font-weight: 800; font-size: 16px; color: var(--primary-light); text-transform: uppercase; letter-spacing: 1px; }
.sec-title { font-size: 48px; color: var(--primary-dark); margin-top: 10px; font-weight: 800; }
/* ==========================================================================
   VİDEODAKİ BİREBİR HİZMETLER SAYFASI TASARIMI (GENİŞ & TİTREMESİZ)
   ========================================================================== */
.modern-services-section {
    padding: 100px 5%;
    background-color: var(--bg-color);
}
.ms-container {
    max-width: 1500px; /* Videodaki gibi geniş ve ferah bir yapı */
    margin: 0 auto;
}
.ms-header-area {
    text-align: center;
    margin-bottom: 70px;
}
.ms-header-area h2 {
    font-size: 56px;
    color: var(--primary-dark);
    margin: 10px 0;
    font-weight: 800;
}

.modern-service-list {
    display: flex;
    flex-direction: column;
}

/* Satır Tasarımı (Kapalı Hal) */
.modern-service-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 50px; /* Titremeyi önlemek için dikey padding 0 yapıldı */
    min-height: 140px; /* Titremeyi kesin önleyen sabit yükseklik */
    border-bottom: 1px solid #dcdcdc;
    text-decoration: none; 
    transition: all 0.4s ease;
    border-radius: 100px; 
    background: transparent;
    margin-bottom: 0;
}
.modern-service-item:last-child {
    border-bottom: none;
}

/* Sol Bölüm (Numara ve Başlık) */
.ms-left {
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 1; /* Sol tarafın geniş alanı tutması için */
}
.ms-num {
    font-size: 18px;
    font-weight: 700;
    color: #888;
    transition: 0.3s;
}
.ms-title {
    font-size: 30px;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 0;
    white-space: nowrap;
    transition: 0.3s;
}

/* Orta Bölüm (SADECE GÖRSEL - Kapalıyken Tamamen Gizli) */
.ms-img-wrapper {
    width: 0;
    opacity: 0;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.ms-img {
    width: 250px;
    height: 120px;
    border-radius: 15px;
    object-fit: cover;
    transform: scale(0.6) rotate(10deg); /* Küçülmüş ve eğik bekleme konumu */
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Sağ Bölüm (Açıklama Yazısı ve Ok - HER ZAMAN GÖRÜNÜR) */
.ms-text-wrapper {
    flex: 1; /* Sağ tarafın esnek olması için */
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 50px;
}
.ms-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #666; /* Normal durumdaki gri rengi */
    margin: 0;
    font-weight: 500;
    max-width: 450px; /* Yazının satır uzunluğunu dengeler */
    transition: 0.3s;
}
.ms-arrow {
    font-size: 26px;
    color: #999;
    transition: all 0.4s ease;
}

/* ==========================================================================
   HOVER (ÜZERİNE GELİNCE) EFEKTLERİ
   ========================================================================== */
.modern-service-item:hover {
    background-color: var(--primary-dark);
    border-color: transparent;
    box-shadow: 0 15px 40px rgba(14, 79, 45, 0.2);
}
/* Başlık Rengi Beyaz Olur */
.modern-service-item:hover .ms-num { color: var(--primary-light); }
.modern-service-item:hover .ms-title { color: var(--white); }

/* VİDEODAKİ GİBİ GÖRSEL ORTADAN FIRLAR */
.modern-service-item:hover .ms-img-wrapper {
    width: 280px; /* Görselin kendisine yer açması için */
    opacity: 1;
}
.modern-service-item:hover .ms-img {
    transform: scale(1) rotate(-3deg); /* Görsel büyür ve hafif ters açıyla şık durur */
}

/* Açıklama Yazısı Zaten Oradaydı, Sadece Rengi Beyaz Olur */
.modern-service-item:hover .ms-desc {
    color: rgba(255, 255, 255, 0.9);
}

/* Ok İkonu İleri Atılır ve Yeşil Olur */
.modern-service-item:hover .ms-arrow {
    color: var(--primary-light);
    transform: translateX(10px); 
}

/* Mobil Ekranlar İçin Düzen */
@media (max-width: 1024px) {
    .modern-service-item { flex-direction: column; align-items: flex-start; padding: 30px; border-radius: 20px; gap: 20px; min-height: auto; }
    .ms-left { width: 100%; justify-content: space-between; gap: 15px;}
    .ms-title { white-space: normal; font-size: 22px; }
    .ms-text-wrapper { justify-content: flex-start; width: 100%; gap: 20px; }
    .ms-desc { max-width: 100%; }
    .ms-img-wrapper { width: 100% !important; opacity: 1; height: 200px; margin: 15px 0;}
    .ms-img { width: 100%; height: 100%; transform: scale(1) rotate(0) !important; }
    .modern-service-item:hover .ms-arrow { transform: none; }
}


.cta-section { background: var(--primary-light); padding: 60px 10%; display: flex; justify-content: space-between; align-items: center; border-radius: 30px; margin: 0 5% 100px; }
.cta-text h2 { font-size: 42px; color: var(--white); margin: 0; }
.cta-text p { color: var(--white); font-size: 18px; margin: 10px 0 0 0; opacity: 0.9; }
.cta-btn { background: var(--primary-dark); color: var(--white); padding: 18px 40px; border-radius: 50px; text-decoration: none; font-weight: 700; font-size: 16px; transition: 0.3s; }
.cta-btn:hover { background: var(--white); color: var(--primary-dark); }
.products-layout { display: flex; gap: 40px; padding: 60px 5%; max-width: 1400px; margin: 0 auto; align-items: flex-start; }
.product-sidebar { flex: 0 0 280px; background: #fff; padding: 30px; border-radius: 20px; box-shadow: 0 5px 20px rgba(0,0,0,0.03); position: sticky; top: 120px; border: 1px solid #eee; }
.widget-title { font-size: 18px; font-weight: 700; color: var(--primary-dark); margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.search-box { position: relative; }
.search-box input { width: 100%; padding: 15px 15px 15px 45px; border: 1px solid #eee; border-radius: 10px; background: #fdfdfd; outline: none; transition: 0.3s;}
.search-box input:focus { border-color: var(--primary-light); }
.search-icon { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); color: #999; }
.cat-list { list-style: none; padding: 0; margin: 0; }
.cat-list li { margin-bottom: 10px; }
.cat-list a { text-decoration: none; color: #555; font-size: 15px; display: flex; align-items: center; transition: 0.3s; padding: 8px 12px; border-radius: 8px; }
.cat-list a:hover, .cat-list a.active { background: rgba(56, 163, 46, 0.1); color: var(--primary-dark); font-weight: 700; }
.product-grid-area { flex: 1; }
.shop-top-bar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; }
.result-text { font-size: 15px; color: #777; }
.result-text b { color: var(--primary-dark); }
.p-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.pro-card { background: #fff; border-radius: 20px; overflow: hidden; transition: 0.3s; box-shadow: 0 5px 15px rgba(0,0,0,0.03); border: 1px solid #eee; height: 420px; display: flex; flex-direction: column; cursor:pointer;}
.pro-card:hover { transform: translateY(-5px); border-color: var(--primary-light); box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
.pro-img-box { height: 250px; width: 100%; position: relative; overflow: hidden; }
.pro-img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.pro-card:hover .pro-img { transform: scale(1.08); }
.pro-content { padding: 20px; text-align: left; flex: 1; display: flex; flex-direction: column; justify-content: space-between; }
.pro-cat { font-size: 12px; color: #999; text-transform: uppercase; font-weight: 600; margin-bottom: 5px; }
.pro-title { font-size: 18px; font-weight: 700; color: var(--primary-dark); margin: 0 0 10px 0; }
.pro-price { font-size: 20px; font-weight: 700; color: var(--primary-light); }
.pro-action { position: absolute; bottom: 15px; right: 15px; width: 45px; height: 45px; background: var(--primary-dark); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; opacity: 0; transform: translateY(10px); transition: 0.3s; cursor: pointer; }
.pro-card:hover .pro-action { opacity: 1; transform: translateY(0); }
.pro-action:hover { background: var(--primary-light); }
.product-detail-section { padding: 80px 10%; background-color: var(--bg-color); }
.detail-container { display: flex; gap: 60px; align-items: flex-start; background: #fff; padding: 40px; border-radius: 20px; box-shadow: 0 10px 40px rgba(0,0,0,0.03); border: 1px solid #eee;}
.detail-gallery { flex: 1; }
.main-image { width: 100%; height: 500px; object-fit: cover; border-radius: 15px; }
.detail-info { flex: 1; padding-top: 10px; }
.detail-cat { font-size: 14px; font-weight: 700; color: var(--primary-light); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; display: block; }
.detail-title { font-size: 42px; font-weight: 800; color: var(--primary-dark); margin: 0 0 20px 0; line-height: 1.1; }
.detail-price { font-size: 36px; font-weight: 800; color: var(--primary-light); margin-bottom: 30px; display: flex; align-items: center; gap: 15px; }
.detail-desc { color: #555; font-size: 16px; line-height: 1.8; margin-bottom: 40px; border-bottom: 1px solid #eee; padding-bottom: 40px; }
.cart-actions { display: flex; gap: 20px; align-items: center; }
.quantity-input { width: 80px; padding: 15px; border: 1px solid #ddd; border-radius: 12px; text-align: center; font-size: 18px; font-weight: bold; outline: none; }
.btn-add-cart { background-color: var(--primary-dark); color: var(--white); border: none; padding: 5px 5px 5px 40px; border-radius: 50px; font-weight: 700; font-size: 16px; cursor: pointer; display: inline-flex; align-items: center; gap: 30px; transition: 0.3s; }
.btn-add-cart:hover { background-color: var(--primary-light); }
.product-meta { margin-top: 40px; font-size: 14px; color: #888; }
.product-meta span { display: block; margin-bottom: 8px; }
.product-meta b { color: var(--primary-dark); }
.cert-section { padding: 100px 10%; background-color: var(--bg-color); }
.cert-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 40px; }
.cert-card { background: #fff; padding: 20px; border-radius: 20px; text-align: center; box-shadow: 0 10px 30px rgba(0,0,0,0.03); transition: 0.4s; border: 1px solid #eee; }
.cert-card:hover { transform: translateY(-10px); border-color: var(--primary-light); box-shadow: 0 15px 40px rgba(56, 163, 46, 0.1); }
.cert-img-box { height: 350px; background: #f9f9f9; border-radius: 12px; margin-bottom: 20px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.cert-img-box img { width: 100%; height: 100%; object-fit: cover; transition: 0.3s; }
.cert-card:hover .cert-img-box img { transform: scale(1.05); }
.cert-title { font-size: 20px; font-weight: 700; color: var(--primary-dark); margin-bottom: 5px; }
.cert-desc { font-size: 14px; color: var(--primary-light); font-weight: 600; text-transform: uppercase; }

/* STOK VE LOGIN */
.login-page { display: flex; justify-content: center; align-items: center; height: 100vh; margin: 0; }
.login-card { background: white; padding: 40px; border-radius: 20px; box-shadow: 0 10px 40px rgba(0,0,0,0.05); width: 100%; max-width: 400px; text-align: center; }
.login-card h2 { color: var(--primary-dark); margin-bottom: 30px; }
.login-card input { width: 100%; padding: 15px; margin-bottom: 20px; border: 1px solid #eee; border-radius: 10px; background: #faf9f6; outline: none; }
.login-card button { width: 100%; padding: 15px; background: var(--primary-dark); color: white; border: none; border-radius: 10px; font-weight: bold; cursor: pointer; transition: 0.3s; }
.login-card button:hover { background: var(--primary-light); }
.stok-container { max-width: 1200px; margin: 40px auto; padding: 0 15px; }
.stok-top-bar { background: white; padding: 20px; border-radius: 12px; box-shadow: 0 4px 6px rgba(0,0,0,0.05); margin-bottom: 25px; border: 1px solid #eee;}
.stok-header-title { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; border-bottom: 2px solid #f0f0f0; padding-bottom: 15px; }
.stok-header-title h1 { margin: 0; font-size: 24px; color: var(--primary-dark); }
.btn-excel { background-color: var(--primary-light); color: white; border: none; padding: 10px 20px; border-radius: 6px; cursor: pointer; font-weight: bold; display: flex; align-items: center; gap: 8px; transition: 0.3s;}
.btn-excel:hover { background-color: var(--primary-dark); }
.filter-area { display: grid; grid-template-columns: 1fr 2fr; gap: 15px; }
.stok-form-control { width: 100%; padding: 10px; border: 1px solid #e2e8f0; border-radius: 6px; outline: none; }
.group-container { margin-bottom: 30px; background: white; border-radius: 12px; overflow: hidden; box-shadow: 0 2px 4px rgba(0,0,0,0.03); border: 1px solid #e2e8f0; }
.group-header { background-color: var(--primary-dark); color: white; padding: 12px 20px; font-size: 16px; font-weight: bold; }
.table-responsive { overflow-x: auto; }
.stok-table { width: 100%; border-collapse: collapse; min-width: 900px; }
.stok-table th, .stok-table td { text-align: left; padding: 12px 15px; border-bottom: 1px solid #eee; vertical-align: middle; }
.stok-table th { background-color: #f8f9fa; color: #444; font-weight: 700; font-size: 12px; text-transform: uppercase; }
.stok-table tr:hover { background-color: #f1f8e9; }
.stok-badge { padding: 4px 8px; border-radius: 4px; font-size: 11px; font-weight: 600; color: white; }
.bg-success { background-color: var(--primary-light); }
.bg-warning { background-color: #ffc107; color: #333; }
.text-green { color: var(--primary-dark); font-weight: 700;}

@media (max-width: 992px) {
    .about-section, .portfolio-section, .contact-section, .contact-page-section, .products-layout, .article-section { flex-direction: column; }
    .about-images, .portfolio-info, .product-sidebar, .article-sidebar { position: static; width: 100%; height: auto; margin-bottom: 30px;}
    .services-grid, .p-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .cta-section { flex-direction: column; text-align: center; gap: 30px; }
    .c-row { flex-direction: column; }
    .contact-form-col, .article-content-wrapper { padding: 40px 20px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 250px; } 
    .item-large { grid-column: span 2; grid-row: span 1; }
    .mv-section { grid-template-columns: 1fr; }
    .faq-section { justify-content: center; }
    .faq-box { padding: 40px 20px; }
    .faq-box h2 { font-size: 32px; }
    .sss-page-container { padding: 40px 20px; }
}
@media (max-width: 768px) {
    .hero-content h1 { font-size: 42px; }
    .shop-grid, .p-grid, .services-grid, .blog-grid { grid-template-columns: 1fr; }
    .form-row { flex-direction: column; }
    .showcase-wrapper { height: auto; }
    .showcase-columns { flex-direction: column; }
    .sc-col { height: 400px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); }
    .filter-area { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 250px; } 
    .item-large, .item-tall { grid-column: span 1; grid-row: span 1; }
}


/* ==========================================================================
   AGROTECH BİREBİR (ZIG-ZAG) SSS SAYFASI TASARIMI - KURUMSAL RENKLER
   ========================================================================== */
.sss-zigzag-section {
    padding: 100px 5%;
    background-color: var(--bg-color); 
}
.sss-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}
.sss-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}
.sss-faq-col {
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: center;
}
.sss-img-col {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.sss-img-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.sss-img-col:hover img {
    transform: scale(1.05);
}

/* SSS Kutu Ayarları (Kapalı Hal - Beyaz) */
.z-faq-item {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}
.z-faq-title {
    padding: 22px 25px;
    font-size: 18px; /* DİĞER SAYFALARLA UYUMLU OLMASI İÇİN BÜYÜTÜLDÜ */
    font-weight: 700; /* AŞIRI KALINLIK GİDERİLDİ */
    color: var(--primary-dark); 
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}
.z-faq-title span {
    display: flex;
    gap: 10px;
}
.z-faq-title i {
    font-size: 18px; 
    color: var(--primary-light); 
    transition: transform 0.3s ease;
}
.z-faq-content {
    max-height: 0;
    padding: 0 25px;
    opacity: 0;
    transition: all 0.3s ease;
    font-size: 16px; /* SİTENİN GENEL OKUMA BOYUTU OLAN 16PX'E ÇEKİLDİ */
    font-weight: 400; /* FONTUN BOZULMAMASI İÇİN NORMAL KALINLIĞA ÇEKİLDİ */
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

/* SSS Kutu Ayarları (Açık Hal - Kurumsal Koyu Yeşil) */
.z-faq-item.active {
    background: var(--primary-dark); 
    border-color: var(--primary-dark);
    box-shadow: 0 10px 25px rgba(14, 79, 45, 0.2); 
}
.z-faq-item.active .z-faq-title {
    color: var(--white);
}
.z-faq-item.active .z-faq-title i {
    color: var(--white);
    transform: rotate(180deg);
}
.z-faq-item.active .z-faq-content {
    max-height: 400px;
    padding: 0 25px 25px 25px;
    opacity: 1;
}

/* Mobilde Alt Alta Dizilme Ayarı */
@media (max-width: 992px) {
    .sss-row { grid-template-columns: 1fr; gap: 30px; }
    .sss-img-col { aspect-ratio: 4 / 3; }
    .sss-row:nth-child(2) .sss-img-col { order: -1; }
}

/* --- GALERİ LIGHTBOX (GÖRSEL BÜYÜTME) EFEKTİ --- */
.lightbox {
    display: none; /* Varsayılan olarak kapalı */
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
}
.lightbox-content {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    animation: zoomIn 0.3s ease-out forwards;
}
@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
.close-lightbox {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    transition: 0.3s;
    line-height: 1;
}
.close-lightbox:hover {
    color: var(--primary-light);
    transform: scale(1.1);
}

/* ==========================================================================
   STOK LİSTESİ (liste.php) ÖZEL TASARIMI
   ========================================================================== */
.stok-page-section { padding: 150px 5% 100px; background-color: var(--bg-color); min-height: 100vh; }
.stok-container { max-width: 1400px; margin: 0 auto; background: var(--white); padding: 40px; border-radius: 20px; box-shadow: 0 10px 40px rgba(0,0,0,0.03); border: 1px solid #eee; }

.stok-top-bar { display: flex; justify-content: space-between; align-items: center; border-bottom: 2px solid rgba(56, 163, 46, 0.1); padding-bottom: 30px; margin-bottom: 30px; flex-wrap: wrap; gap: 20px; }
.stok-header-left { display: flex; align-items: center; gap: 20px; }
.stok-header-left img { height: 60px; border-radius: 10px; }
.stok-header-left h1 { font-size: 32px; color: var(--primary-dark); margin: 0 0 5px 0; font-weight: 800; }
.stok-header-left p { color: #777; font-size: 15px; margin: 0; }

.btn-excel { background-color: var(--primary-light); color: var(--white); border: none; padding: 12px 25px; border-radius: 8px; cursor: pointer; font-weight: 700; font-size: 15px; display: flex; align-items: center; gap: 10px; transition: 0.3s; }
.btn-excel:hover { background-color: var(--primary-dark); transform: translateY(-3px); }

.filter-area { display: grid; grid-template-columns: 1fr 2fr; gap: 20px; margin-bottom: 30px; }
.stok-form-control { width: 100%; padding: 15px 20px; border: 1px solid #eee; border-radius: 10px; outline: none; font-size: 15px; background: #fdfdfd; transition: 0.3s; font-family: inherit; }
.stok-form-control:focus { border-color: var(--primary-light); background: var(--white); }

.group-container { margin-bottom: 40px; background: var(--white); border-radius: 15px; overflow: hidden; border: 1px solid #eee; }
.group-header { background-color: var(--primary-dark); color: var(--white); padding: 15px 25px; font-size: 18px; font-weight: 700; display: flex; align-items: center; gap: 10px; }
.table-responsive { overflow-x: auto; }
.stok-table { width: 100%; border-collapse: collapse; min-width: 1000px; }
.stok-table th, .stok-table td { text-align: left; padding: 15px 25px; border-bottom: 1px solid #eee; vertical-align: middle; }
.stok-table th { background-color: rgba(56, 163, 46, 0.05); color: var(--primary-dark); font-weight: 800; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; }
.stok-table tr { transition: 0.3s; }
.stok-table tr:hover { background-color: #faf9f6; }

/* Görsel Sütunu */
.stok-img-cell img { width: 60px; height: 60px; object-fit: cover; border-radius: 10px; box-shadow: 0 4px 10px rgba(0,0,0,0.1); transition: 0.3s; cursor: pointer; }
.stok-img-cell img:hover { transform: scale(1.5); position: relative; z-index: 10; }

.stok-badge { padding: 6px 12px; border-radius: 50px; font-size: 12px; font-weight: 700; color: var(--white); display: inline-block; }
.bg-success { background-color: var(--primary-light); }
.bg-warning { background-color: #ff9800; color: #fff; }
.text-green { color: var(--primary-dark); font-weight: 800; font-size: 15px; }

@media (max-width: 992px) {
    .filter-area { grid-template-columns: 1fr; }
    .stok-top-bar { flex-direction: column; align-items: flex-start; }
}


/* ==========================================================================
   AGRION STİLİ HAKKIMIZDA SAYFASI (hakkimizda.php)
   ========================================================================== */
.ag-about-section {
    padding: 120px 5%;
    background-color: var(--white);
}
.ag-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

/* Sol Taraf: İç İçe Görseller ve Tecrübe Kutusu */
.ag-image-column {
    flex: 1;
    position: relative;
    padding-right: 40px;
    padding-bottom: 40px;
}
.ag-img-main {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1;
}
.ag-img-sub {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    border: 10px solid var(--white);
    border-radius: 15px;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.ag-experience-box {
    position: absolute;
    top: 40px;
    left: -30px;
    background-color: var(--primary-light);
    color: var(--white);
    padding: 30px;
    border-radius: 50%;
    width: 140px;
    height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 3;
    box-shadow: 0 15px 30px rgba(56, 163, 46, 0.3);
    animation: bounceAg 3s infinite ease-in-out;
}
@keyframes bounceAg {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}
.ag-experience-box h3 { font-size: 36px; margin: 0; font-weight: 900; line-height: 1; }
.ag-experience-box span { font-size: 13px; font-weight: 700; text-transform: uppercase; margin-top: 5px; }

/* Sağ Taraf: Metin İçerikleri */
.ag-text-column {
    flex: 1;
}
.ag-subtitle {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-light);
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
}
.ag-subtitle img { width: 20px; } /* Küçük yaprak ikonu için */
.ag-text-column h2 {
    font-size: 46px;
    color: var(--primary-dark);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
}
.ag-bold-text {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 20px;
    line-height: 1.6;
}
.ag-normal-text {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Maddeli Liste (Checklist) */
.ag-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.ag-feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-dark);
}
.ag-feature-list li i {
    color: var(--primary-light);
    font-size: 20px;
}

/* Video / Tesis Odak Alanı (Koyu Yeşil Arkaplanlı Yeni Yapı) */
.ag-facility-section {
    background: linear-gradient(to right, rgba(14, 79, 45, 0.95), rgba(14, 79, 45, 0.85)), url('/image/elansfide.jpeg') center/cover fixed;
    padding: 100px 5%;
    color: var(--white);
    text-align: center;
}
.ag-facility-content {
    max-width: 800px;
    margin: 0 auto;
}
.ag-facility-content h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 25px;
}
.ag-facility-content p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255,255,255,0.85);
    margin-bottom: 40px;
}
.ag-btn-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--white);
    color: var(--primary-dark);
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 15px;
    text-decoration: none;
    transition: 0.3s;
}
.ag-btn-white:hover {
    background-color: var(--primary-light);
    color: var(--white);
}

/* Değerlerimiz / 3'lü Kutu Yapısı */
.ag-values-section {
    padding: 100px 5%;
    background-color: var(--bg-color);
}
.ag-values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.ag-value-box {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid #eee;
    transition: 0.3s;
}
.ag-value-box:hover {
    transform: translateY(-10px);
    border-color: var(--primary-light);
    box-shadow: 0 15px 40px rgba(56, 163, 46, 0.1);
}
.ag-value-box i {
    font-size: 50px;
    color: var(--primary-light);
    margin-bottom: 20px;
}
.ag-value-box h3 {
    font-size: 22px;
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-weight: 800;
}
.ag-value-box p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* Mobil Uyumluluk */
@media (max-width: 992px) {
    .ag-container { flex-direction: column; gap: 40px; }
    .ag-image-column { padding-right: 0; }
    .ag-experience-box { left: 0; top: -20px; width: 100px; height: 100px; }
    .ag-experience-box h3 { font-size: 24px; }
    .ag-experience-box span { font-size: 10px; }
    .ag-text-column h2 { font-size: 32px; }
    .ag-feature-list { grid-template-columns: 1fr; }
    .ag-values-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   HAKKIMIZDA SAYFASI - YENİ EKLENEN YAPILAR (Sayaç, Ekip, Markalar)
   ========================================================================== */

/* 1. İstatistik Sayacı (Rakamlarla Biz) */
.ag-counter-section {
    background-color: var(--primary-dark);
    padding: 70px 5%;
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.ag-counter-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url('/image/elansFide.jpeg') center/cover;
    opacity: 0.1;
    z-index: 1;
}
.ag-counter-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
    text-align: center;
}
.ag-counter-item i {
    font-size: 45px;
    color: var(--primary-light);
    margin-bottom: 15px;
}
.ag-counter-number {
    font-size: 50px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 5px;
}
.ag-counter-text {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.8);
}

/* ==========================================================================
   YENİ EKLENEN YAPI: ÜRETİM SÜRECİMİZ (Uzman Ekibin Yerine Geldi)
   ========================================================================== */
.ag-process-section {
    padding: 100px 5%;
    background-color: var(--white);
}
.ag-process-grid {
    max-width: 1200px;
    margin: 50px auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.ag-process-card {
    text-align: center;
    padding: 30px 15px;
    position: relative;
    z-index: 1;
    transition: 0.3s;
}
/* Ok işareti (Kutuları birbirine bağlayan yapı) */
.ag-process-card:not(:last-child)::after {
    content: '\f178'; /* FontAwesome Sağa Ok */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: -20px;
    top: 60px;
    font-size: 24px;
    color: #e0e0e0;
}
.ag-process-icon {
    width: 100px;
    height: 100px;
    background-color: var(--bg-color);
    color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 40px;
    margin: 0 auto 25px;
    position: relative;
    transition: all 0.4s ease;
    border: 2px dashed transparent;
}
.ag-process-card:hover .ag-process-icon {
    background-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-10px);
    border-color: var(--primary-light);
    box-shadow: 0 15px 30px rgba(56, 163, 46, 0.2);
}
/* Adım Numarası (Yuvarlak İkon) */
.ag-process-step {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--primary-light);
    color: var(--white);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: 900;
    border: 4px solid var(--white);
}
.ag-process-card h3 {
    font-size: 20px;
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-weight: 800;
}
.ag-process-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* Mobil Uyumluluk */
@media (max-width: 992px) {
    .ag-process-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .ag-process-card:nth-child(2)::after { display: none; } /* Mobilde 2. oktan sonra kes */
}
@media (max-width: 576px) {
    .ag-process-grid { grid-template-columns: 1fr; }
    .ag-process-card::after { display: none; } /* Mobilde okları gizle */
}

/* 3. Çözüm Ortaklarımız (Logolar) */
.ag-partners-section {
    padding: 60px 5%;
    background-color: #f9f9f9;
    border-top: 1px solid #eee;
}
.ag-partners-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}
.ag-partner-logo {
    height: 50px;
    opacity: 0.4;
    filter: grayscale(100%);
    transition: 0.4s ease;
    cursor: pointer;
}
.ag-partner-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* Mobil Uyumluluk Eklemeleri */
@media (max-width: 992px) {
    .ag-counter-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .ag-team-card { width: calc(50% - 15px); }
    .ag-partners-grid { justify-content: center; }
}
@media (max-width: 576px) {
    .ag-counter-grid { grid-template-columns: 1fr; }
    .ag-team-card { width: 100%; }
}

/* ==========================================================================
   HİZMET DETAY SAYFASI (hizmet-detay.php) YENİ TASARIMI
   ========================================================================== */
.service-detail-layout { 
    display: flex; 
    gap: 50px; 
    padding: 100px 5%; 
    max-width: 1300px; 
    margin: 0 auto; 
    align-items: flex-start; 
}

/* Sol Taraf (Ana İçerik ve Görsel) */
.service-main-content { 
    flex: 1; 
    background: var(--white); 
    padding: 50px; 
    border-radius: 20px; 
    box-shadow: 0 10px 40px rgba(0,0,0,0.04); 
    border: 1px solid #eee; 
}
.service-main-img { 
    width: 100%; 
    height: 450px; 
    object-fit: cover; 
    border-radius: 15px; 
    margin-bottom: 40px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.service-main-content h2 { 
    font-size: 38px; 
    color: var(--primary-dark); 
    margin-top: 0;
    margin-bottom: 25px; 
    font-weight: 800; 
}
.service-main-content p { 
    font-size: 16px; 
    color: #555; 
    line-height: 1.8; 
    margin-bottom: 25px; 
}
.service-main-content h3 {
    font-size: 24px;
    color: var(--primary-dark);
    margin: 35px 0 15px 0;
}
.service-main-content ul { 
    padding-left: 20px; 
    margin-bottom: 30px; 
}
.service-main-content li { 
    margin-bottom: 12px; 
    font-size: 16px; 
    color: #444; 
    line-height: 1.6; 
}

/* Sağ Taraf (Sidebar / Diğer Hizmetler Menüsü) */
.service-sidebar { 
    flex: 0 0 350px; 
    position: sticky; 
    top: 120px; 
}
.srv-widget { 
    background: var(--white); 
    padding: 35px 30px; 
    border-radius: 15px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.03); 
    margin-bottom: 30px; 
    border: 1px solid #eee; 
}
.srv-widget h3 { 
    font-size: 22px; 
    color: var(--primary-dark); 
    margin-bottom: 20px; 
    padding-bottom: 15px; 
    border-bottom: 2px solid rgba(56, 163, 46, 0.2); 
    font-weight: 800;
}
.srv-list { 
    list-style: none; 
    padding: 0; 
    margin: 0; 
}
.srv-list li { 
    margin-bottom: 10px; 
}
.srv-list a { 
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px; 
    color: #555; 
    text-decoration: none; 
    font-weight: 700; 
    font-size: 15px; 
    border-radius: 8px; 
    transition: 0.3s; 
    background: #fdfdfd; 
    border: 1px solid #f5f5f5; 
}
.srv-list a i {
    color: #ccc;
    transition: 0.3s;
}
.srv-list a:hover, .srv-list a.active { 
    background: var(--primary-dark); 
    color: var(--white); 
    border-color: var(--primary-dark); 
    padding-left: 25px; 
    box-shadow: 0 10px 20px rgba(14, 79, 45, 0.2);
}
.srv-list a:hover i, .srv-list a.active i {
    color: var(--primary-light);
}

/* Sidebar İletişim Kutusu */
.srv-contact-widget {
    text-align: center; 
    background: var(--primary-dark); 
    color: var(--white); 
    border: none;
    background-image: linear-gradient(rgba(14, 79, 45, 0.9), rgba(14, 79, 45, 0.95)), url('https://images.unsplash.com/photo-1592419044706-39796d40f98c?q=80&w=400&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
}

/* Mobil Uyumluluk */
@media (max-width: 992px) { 
    .service-detail-layout { flex-direction: column; } 
    .service-sidebar { width: 100%; position: static; flex: none; } 
    .service-main-content { padding: 30px 20px; }
    .service-main-img { height: 300px; }
}

/* ==========================================================================
   GENEL RESPONSIVE (MOBİL UYUMLULUK) KODLARI
   ========================================================================== */
@media (max-width: 1024px) {
    /* Genel Yapılar */
    .hero-content h1 { font-size: 40px; }
    .page-header { height: 250px !important; }
    .page-title { font-size: 32px; }
    
    /* Hizmetler ve SSS Sayfası */
    .sss-row { flex-direction: column; }
    .sss-img-col, .sss-faq-col { width: 100%; padding: 0; }
    .service-detail-layout { flex-direction: column; padding: 50px 5%; }
    .service-sidebar { width: 100%; position: relative; top: 0; }
    
    /* İletişim Sayfası */
    .contact-page-section { flex-direction: column; padding: 50px 5%; }
    .contact-info-col, .contact-form-col { width: 100%; padding: 30px; }
    .c-row { flex-direction: column; gap: 0; }
    
    /* Ürünler Sayfası */
    .products-layout { flex-direction: column; padding: 50px 5%; }
    .product-sidebar { width: 100%; display: flex; gap: 20px; flex-wrap: wrap; }
    .product-sidebar .sidebar-widget { flex: 1; min-width: 250px; }
    .p-grid { grid-template-columns: repeat(2, 1fr); }
    
    /* Ürün Detay */
    .product-detail-section .detail-container { flex-direction: column; }
    .detail-gallery, .detail-info { width: 100%; padding: 20px; }
}

@media (max-width: 768px) {
    /* Ana Sayfa Yapıları */
    .hero-content h1 { font-size: 32px; }
    .expertise-section { flex-direction: column; padding: 50px 5%; }
    .expertise-images { width: 100%; height: 350px; margin-bottom: 40px; }
    .portfolio-list { flex-direction: column; }
    .portfolio-card { width: 100%; height: 250px; }
    .shop-grid { grid-template-columns: 1fr; }
    .contact-section { flex-direction: column; padding: 50px 5%; }
    .contact-form-wrapper { position: relative; margin-top: 40px; right: 0; transform: none; width: 100%; }
    
    /* Ürünler ve Menü */
    .p-grid { grid-template-columns: 1fr; }
    .mega-menu-grid { grid-template-columns: 1fr; }
    .mega-menu { width: 90vw; left: 5vw; transform: none; }
}
/* ==========================================================================
   FOOTER (EN ALT KISIM) KESİN MOBİL UYUMLULUK DÜZELTMESİ
   ========================================================================== */

@media (max-width: 992px) {
    .site-footer { flex-direction: column; }
    .footer-newsletter { min-width: 100%; width: 100%; padding: 60px 5%; text-align: center; }
    .newsletter-label { justify-content: center; }
    .newsletter-form { margin: 0 auto 20px; width: 100%; max-width: 100%; }
    .footer-info { flex: auto; width: 100%; padding: 60px 5% 30px; }
}

@media (max-width: 768px) {
    .footer-newsletter h2 { font-size: 32px; }
    
    /* E-Bülten Formunun Mobilde Alt Alta Gelmesi */
    .newsletter-form { position: static; display: flex; flex-direction: column; gap: 10px; }
    .newsletter-form input { width: 100%; padding: 15px 20px; text-align: center; }
    .newsletter-form button { position: static; width: 100%; padding: 15px; border-radius: 50px; }
    
    /* Logo ve Sosyal Medya */
    .footer-top-row { flex-direction: column; text-align: center; gap: 20px; padding-bottom: 20px; }
    .social-links { justify-content: center; width: 100%; flex-wrap: wrap; }
    
    /* Link Sütunları Merkezi Hizalama */
    .footer-columns { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .footer-col h4::after { left: 50%; transform: translateX(-50%); }
    .footer-col ul li { justify-content: center; text-align: center; }
    
    /* Telif Hakkı ve Sözleşmeler Kısmı */
    .footer-bottom { flex-direction: column; text-align: center; gap: 15px; justify-content: center; align-items: center; }
    .footer-bottom a { margin: 0 10px; display: inline-block; }
}


