/* 1. TEMEL AYARLAR & FONTLAR */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* 2. HEADER & NAVİGASYON */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    z-index: 99;
    backdrop-filter: blur(20px);
}

.logo {
    font-size: clamp(20px, 2.5vw, 30px);
    color: aliceblue;
    text-decoration: none;
    font-weight: 700;
    white-space: nowrap;
}

.logo span { color: #4caf50; }

.navbar {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: clamp(10px, 2vw, 40px);
}

.navbar a {
    color: aliceblue;
    text-decoration: none;
    font-size: clamp(12px, 1.2vw, 18px);
    white-space: nowrap;
}

/* 3. KULLANICI GİRİŞ / PROFİL */
.user-auth {
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.user-auth .login-btn-modal {
    height: 38px;
    padding: 0 clamp(15px, 2vw, 35px);
    background: transparent;
    border: 2px solid aliceblue;
    border-radius: 40px;
    font-size: clamp(12px, 1.1vw, 16px);
    color: white;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    transition: .5s;
}

.user-auth .login-btn-modal:hover {
    background: #fff;
    color: #222;
}

/* 4. ANA BÖLÜM (SECTION) */
section {
    height: 100vh;
    background: url(image1.jpg) no-repeat center center/cover;
    padding: 0 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

section h1 {
    position: absolute;
    bottom: 40px;
    left: 100px;
    font-size: 25px;
    color: #fff;
    font-weight: 600;
}

/* 5. BİLGİ KARTI (INTRO CARD) */
.intro-card {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(15px);
    padding: 40px;
    border-radius: 20px;
    max-width: 800px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.intro-card h2 { font-size: 32px; margin-bottom: 15px; }
.intro-card p { font-size: 16px; color: #ccc; margin-bottom: 25px; }
.highlight { color: #4caf50; }

/* Badge (AgriCore NDR V2.0) Kısmı */
.badge { 
    background: #4caf50; 
    padding: 6px 14px; /* İç boşluğu artırdık */
    border-radius: 6px; 
    font-size: 13px; /* 10px'den 13px'e çıkardık */
    font-weight: 700; 
    display: inline-block; 
    letter-spacing: 0.5px; /* Harf arası açıldı */
    color: #fff;
}

/* 81 İl İklim Verisi Aktif Kısmı */
.live-indicator {
    font-size: 16px; /* 11px'den 14px'e çıkardık */
    color: #4caf50;
    display: flex;
    align-items: center;
    gap: 8px; /* Nokta ile yazı arasını açtık */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Yeşil Nokta Boyutu */
.dot {
    width: 10px; /* 8px'den 10px'e çıktı */
    height: 10px;
    background: #4caf50;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(76, 175, 80, 0.8);
    animation: pulse 2s infinite;
}

/* Kart Header Boşluğu */
.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px; /* Altındaki başlıkla arasını biraz daha açtık */
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 25px 0;
}

.f-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 12px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.f-item i { color: #4caf50; font-size: 18px; }
.f-item span { font-size: 13px; color: #e2e8f0; font-weight: 500; }

.capability-list { list-style: none; margin-bottom: 25px; }
.capability-list li { margin-bottom: 10px; font-size: 14px; display: flex; align-items: center; gap: 8px; }
.capability-list i { color: #4caf50; font-size: 20px; }

/* 7. BUTONLAR & NOTLAR */
.reg-btn {
    display: inline-block;
    background: #4caf50;
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s;
}

.reg-btn:hover {
    background: #43a047;
    transform: translateY(-2px);
}

.verification-box {
    margin-top: 15px;
    padding: 12px;
    background: rgba(76, 175, 80, 0.05); /* Çok hafif yeşil zemin */
    border-left: 3px solid #4caf50;
    border-radius: 4px;
}

.verification-note {
    font-size: 12px;
    color: #e2e8f0; /* Biraz daha beyazlatıldı */
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.4;
}

.verification-note i {
    color: #4caf50;
    font-size: 16px;
}

.verification-sub {
    font-size: 11px;
    color: #94a3b8;
    margin-top: 5px;
    line-height: 1.4;
    padding-left: 24px; /* İkonun altını boş bırakmak için */
}
/* Hakkımızda Alanı Özel Düzenlemeleri */
.about-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 25px 0;
}

.a-item {
    background: rgba(255, 255, 255, 0.04);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    gap: 15px;
    align-items: flex-start;
    text-align: left !important; /* Görseldeki dağınık metin sorununu engeller */
}

.a-item i {
    font-size: 26px;
    color: #4caf50;
    background: rgba(76, 175, 80, 0.1);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    flex-shrink: 0;
}

.a-info strong {
    display: block;
    color: #fff;
    font-size: 16px;
    margin-bottom: 5px;
}

.a-info span {
    font-size: 13px;
    color: #94a3b8;
    line-height: 1.5;
}

.legal-notice {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.6;
    border-top: 1px dashed rgba(255, 255, 255, 0.2);
    padding-top: 15px;
}

.legal-notice p {
    font-size: 11px !important;
    margin: 0 !important;
}



/* Sayfa altındaki sabit footer */
.main-footer {
    position: absolute;
    bottom: 15px;
    right: 5%;
    z-index: 10;
}

.main-footer p {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.5px;
}

.main-footer strong {
    color: #4caf50;
}
.content-block {
    width: 100%;
    transition: all 0.3s ease;
}
/* Hizmetler Izgarası (Grup Konteynırı) */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin: 20px 0;
}
/* index.css içine ekle veya mevcut olanı ez */
.technical-validation {
    margin-top: 30px;
    padding: 20px;
    background: rgba(76, 175, 80, 0.05); /* Çok hafif yeşil tonu */
    border-left: 4px solid #4caf50; /* Mühendislik onay çizgisi */
    border-radius: 8px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.technical-validation i {
    font-size: 28px;
    color: #4caf50;
    flex-shrink: 0;
    margin-top: 5px;
}

.validation-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.validation-text strong {
    font-size: 15px;
    color: #4caf50;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.validation-text span {
    font-size: 14px;
    color: #cbd5e1;
    line-height: 1.6;
    text-align: left !important; /* Kelime aralarının saçmalamasını engeller */
}

/* Kartın genel genişliği senin için kritikti, bunu da unutma */
.intro-card {
    max-width: 850px !important; /* Genişliği buraya sabitledik */
}

@media (min-width: 480px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Her Bir Hizmet Kartı */
.s-item {
    background: rgba(255, 255, 255, 0.05); /* Kontrast için zemin hafifçe artırıldı */
    padding: 18px; /* Daha ferah bir görünüm için artırıldı */
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.12); /* Belirginlik artırıldı */
    display: flex;
    gap: 18px;
    transition: 0.3s ease;
    align-items: flex-start;
}

.s-item:hover {
    background: rgba(76, 175, 80, 0.12);
    border-color: #4caf50;
    transform: translateY(-3px);
}

/* Hizmet İkon Alanı */
.s-icon {
    font-size: 26px; /* İkon büyütüldü */
    color: #4caf50;
    background: rgba(76, 175, 80, 0.15);
    width: 50px; /* Kutu boyutu büyütüldü */
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    flex-shrink: 0;
}

/* Hizmet Başlığı (BSS, GES vb.) */
.s-info strong {
    display: block;
    font-size: 16px; /* Okunabilirlik için 14px'den 16px'e çıkarıldı */
    color: #fff;
    font-weight: 600;
    margin-bottom: 6px;
    letter-spacing: 0.3px;
}

/* Hizmet Açıklama Metni */
.s-info span {
    font-size: 13px; /* Okunabilirlik için 11px'den 13px'e çıkarıldı */
    color: #cbd5e1; /* Daha yüksek kontrastlı gri tonu seçildi */
    line-height: 1.5; /* Metinlerin birbirine girmemesi için satır aralığı açıldı */
    display: block;
    font-weight: 400;
}

/* Alt Bilgi Notu */
.service-note {
    font-size: 13px; /* 11px'den 13px'e çıkarıldı */
    color: #4caf50;
    font-style: italic;
    margin-top: 15px;
    opacity: 0.9;
}
/* İletişim Izgarası */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 20px 0;
}

.c-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 15px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    gap: 12px;
}

/* İletişim Öğeleri Başlıkları (E-Posta Destek, Kurumsal İşbirliği vb.) */
.c-item strong {
    display: block;
    font-size: 16px; /* 13px'den 16px'e çıkarıldı */
    color: #fff;
    font-weight: 600;
    margin-bottom: 6px; /* Alt metinle arasını biraz açtık */
    letter-spacing: 0.3px;
}

/* İletişim Öğeleri Alt Bilgileri (Mail adresleri, saatler vb.) */
.c-item span {
    font-size: 13px; /* 11px'den 13px'e çıkarıldı */
    color: #cbd5e1; /* Daha açık bir gri tonuyla kontrast artırıldı */
    line-height: 1.4;
    display: block;
    font-weight: 400;
}

/* Kutu içindeki iklon alanını yazı büyüklüğüne göre hafifçe büyütelim */
.c-item i {
    font-size: 22px; 
    color: #4caf50;
    background: rgba(76, 175, 80, 0.1);
    width: 48px; /* 40px'den 48px'e çıkarıldı */
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    flex-shrink: 0;
}

.contact-footer {
    margin-top: 20px;
}

.wa-card {
    background: rgba(37, 211, 102, 0.08); /* Hafif yeşil zemin */
    border: 1px solid rgba(37, 211, 102, 0.3);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: center; /* İkonu ve metni dikeyde ortalar */
    gap: 20px;
}

.wa-card i {
    font-size: 35px; /* İkonu biraz daha belirgin yaptık */
    color: #25d366;
    flex-shrink: 0;
}

.wa-content p {
    font-size: 14px !important;
    color: #e2e8f0 !important;
    line-height: 1.6;
    margin: 0 !important;
    text-align: left;
}

.wa-number {
    color: #25d366;
    font-weight: 700;
    font-size: 16px;
    white-space: nowrap; /* Numaranın asla alt satıra bölünmemesini sağlar */
    background: rgba(37, 211, 102, 0.15);
    padding: 2px 8px;
    border-radius: 5px;
    display: inline-block;
}
/* 8. ANİMASYONLAR */
@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}