/* ===== GENEL STİLLER ===== */
:root {
    --primary-blue: #2547a0; /* Görseldeki ana mavi renk */
    --dark-blue: #0d1d35;      /* Footer arka planı */
    --light-gray-bg: #f8f9fa; /* Bölümlerin arka planı */
    --text-dark: #333;
    --text-light: #666;
    --text-white: #ffffff;
    --border-light: #e0e0e0;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--text-white);
}

.container {
    width: 90%;
    max-width: 1140px;
    margin: 0 auto;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: var(--primary-blue);
}

h1, h2, h3 {
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

h2 {
    font-size: 2.2rem;
    color: var(--dark-blue);
    text-align: center;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px; /* Genişletildi */
    margin: 0 auto 2.5rem auto;
}

section {
    padding: 60px 0;
}

section:nth-of-type(odd) {
    background-color: var(--light-gray-bg);
}

/* ===== BUTON STİLLERİ ===== */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: var(--text-white);
    border: 2px solid var(--primary-blue);
}

.btn-primary:hover {
    background-color: #1e3a8a; /* Mavinin koyu tonu */
    border-color: #1e3a8a;
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-outline:hover {
    background-color: var(--primary-blue);
    color: var(--text-white);
}


/* ===== HEADER ===== */
header {
    background: var(--text-white);
    border-bottom: 1px solid var(--border-light);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-group {
    display: flex;
    align-items: center;
    gap: 15px; /* Logolar arası boşluk */
}

/* Header'daki Lithera logosu */
.logo-group .logo img {
    max-height: 80px; /* Lithera logosunun yüksekliği */
    width: auto;
}

/* Header'daki Allianz logosu için özel stil */
.logo-group .allianz-logo img {
    max-height: 70px; /* Allianz acente logosunun yüksekliği */
    width: auto;
}

.logo-separator {
    color: #ccc;
    font-size: 2rem;
    font-weight: 200;
    line-height: 1;
}


nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

nav ul li a {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1rem;
    padding: 5px 0;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: var(--primary-blue);
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* YENİ: Header'daki telefon numaralarını gruplamak için */
.header-phone-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}

.phone-link {
    color: var(--text-dark);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem; /* İki satıra sığması için yazıyı biraz küçülttük */
}

.phone-link i {
    color: var(--primary-blue);
    width: 15px;
    text-align: center;
}

/* YENİ: WhatsApp ikonunu yeşil yapmak için */
.phone-link i.fa-whatsapp {
    color: #25D366;
    font-size: 1.1rem;
}


.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* ===== HERO BÖLÜMÜ ===== */
#hero {
    /* Buraya ana arkaplan görselinizi ekleyin */
    background-image: url('images/hero-background.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    position: relative;
    color: var(--text-dark);
}

#hero::before { /* Görselin üstündeki beyaz filtre */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.85); /* Görsel 1'deki gibi yarı şeffaf beyaz katman */
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--dark-blue);
}

.hero-content h1 span {
    color: var(--primary-blue);
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

/* ===== HİZMETLER BÖLÜMÜ ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-card {
    background: var(--text-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.service-card .icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--light-gray-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.4rem;
    color: var(--dark-blue);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.service-card a {
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-card a i {
    transition: transform 0.3s ease;
}

.service-card a:hover i {
    transform: translateX(5px);
}

/* ===== NEDEN BİZ BÖLÜMÜ ===== */
#why-us {
    background-color: var(--text-white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    text-align: center;
}

.stat-item .icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--light-gray-bg);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 0.25rem;
}

.stat-item span {
    color: var(--text-light);
}

/* ===== YENİ İLETİŞİM FORMU BÖLÜMÜ STİLLERİ ===== */
.contact-form {
    max-width: 900px;
    margin: 0 auto;
}

.form-section-wrapper {
    background: var(--text-white);
    padding: 30px 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.form-section-title {
    font-size: 1.5rem;
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-section-title i {
    color: var(--primary-blue);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark-blue);
}

.form-group label .required {
    color: var(--primary-blue);
    font-weight: 700;
    margin-left: 2px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Nunito', sans-serif;
    background-color: #fdfdfd;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 2px rgba(37, 71, 160, 0.2);
}

.form-group textarea {
    resize: vertical;
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
    margin-top: 5px;
}

.checkbox-group input {
    width: auto;
    margin-top: 5px;
    flex-shrink: 0;
}

.checkbox-group label {
    font-weight: 400;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.button-group {
    margin-top: 10px;
}

.form-group button[type="submit"] {
    width: auto;
    padding: 15px 30px;
    font-size: 1.1rem;
}
/* ===== İLETİŞİM FORMU BÖLÜMÜ SONU ===== */


/* ===== YENİ: ÜRÜNLER SAYFASI STİLLERİ ===== */
#urunler-listesi .product-category-section {
    margin-bottom: 50px;
    padding-top: 20px; /* Linkle gelindiğinde header'ın altında kalmasın diye boşluk */
}

#urunler-listesi .product-category-section h3 {
    font-size: 1.8rem;
    color: var(--dark-blue);
    border-bottom: 2px solid var(--primary-blue);
    padding-bottom: 10px;
    margin-bottom: 25px;
    display: inline-block;
}

.product-grid-urunler {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

/* === GÜNCELLENDİ === */
.product-card-urunler {
    background: var(--text-white);
    /* padding: 25px; <-- Kaldırıldı */
    padding: 0; /* Resmin kenarlara yapışması için padding kaldırıldı */
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
    overflow: hidden; /* Resmin yuvarlatılmış köşelerden taşmasını engeller */
    display: flex; /* Kartların aynı boyda kalması için eklendi */
    flex-direction: column; /* Kart içeriğini dikeyde sırala */
}

/* === YENİ EKLENDİ === */
.product-card-image {
    width: 100%;
    height: 200px; /* Tüm kart resimlerine sabit yükseklik */
    object-fit: cover; /* Resmin orantısını bozmadan alanı kaplaması için */
    border-bottom: 1px solid var(--border-light); /* Resim ile içerik arasına ince çizgi */
}

/* === YENİ EKLENDİ === */
.product-card-content {
    padding: 25px; /* Kartın orijinal padding'i buraya taşındı */
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* İçeriğin esneyerek kart boylarını eşitlemesi için */
}

.product-card-urunler h4 {
    font-size: 1.3rem;
    color: var(--dark-blue);
    margin-bottom: 0.75rem;
}

.product-card-urunler p {
    color: var(--text-light);
    font-size: 0.95rem;
}
/* ===== ÜRÜNLER SAYFASI STİLLERİ SONU ===== */


/* ===== FOOTER ===== */
footer {
    background: var(--dark-blue);
    color: #a9b3c1; /* Açık gri/mavi metin */
    padding-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 30px;
}

/* Footer'daki logo grubu için yeni stil */
.footer-logo-group {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.5rem;
}

/* Footer Lithera logosu için stil */
.footer-logo-group .footer-logo {
    height: 50px; 
    width: auto;
    background-color: white;
    padding: 5px 10px;
    border-radius: 8px;
}

/* Footer Allianz logosu için stil */
.footer-logo-group .allianz-footer-logo {
    height: 50px; 
    width: auto;
}

.footer-separator {
    color: rgba(255, 255, 255, 0.4); /* Footer'daki ayırıcı rengi */
    font-size: 2rem;
    font-weight: 200;
    line-height: 1;
}

.footer-col.about p {
    margin-bottom: 1.5rem;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-blue);
}

.footer-col h3 {
    color: var(--text-white);
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-col.links ul {
    list-style: none;
}

.footer-col.links li {
    margin-bottom: 10px;
}

.footer-col.links a {
    color: #a9b3c1;
    transition: color 0.3s ease;
}

.footer-col.links a:hover {
    color: var(--text-white);
    padding-left: 5px;
}

.footer-col.contact-info ul {
    list-style: none;
}

.footer-col.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-col.contact-info i {
    color: var(--text-white);
    margin-top: 5px;
}

/* YENİ: Footer WhatsApp ikonu rengi */
.footer-col.contact-info i.fa-whatsapp {
    color: #25D366;
}

/* YENİ: Footer'daki linklerin stilleri */
.footer-col.contact-info li a {
    color: #a9b3c1;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-col.contact-info li a:hover {
    color: var(--text-white);
}


.footer-bottom {
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

/* ===== RESPONSIVE (MOBİL UYUMLULUK) ===== */

/* Tablet (Örn: 992px altı) */
@media (max-width: 992px) {
    h2 { font-size: 2rem; }

   .nav-container {
        flex-wrap: wrap;
    }
    
   .header-contact {
        display: none; /* Mobilde gizle, menüye eklenebilir */
    }

   .menu-toggle {
        display: block;
    }

    nav {
        display: none;
        width: 100%;
        order: 3;
        margin-top: 15px;
    }

    nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        gap: 10px;
    }
    
   .hero-content h1 {
        font-size: 3rem;
    }

   .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
   .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
   .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* Mobil uyumluluk için logo grubu */
    .logo-group {
        flex-direction: column; /* Mobil görünümde logoları alt alta getir */
        align-items: flex-start; /* Sola hizala */
        gap: 5px;
    }
    .logo-group .logo-separator {
        display: none; /* Mobil görünümde ayırıcıyı gizle */
    }
    .logo-group .logo img,
    .logo-group .allianz-logo img {
        max-height: 50px; /* Mobil için biraz küçültme */
    }

    /* Footer mobil logo grubu */
    .footer-logo-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    .footer-logo-group .footer-separator {
        display: none;
    }
    .footer-logo-group .footer-logo,
    .footer-logo-group .allianz-footer-logo {
        height: 40px; /* Mobil footer logo yüksekliği */
    }

}

/* Mobil (Örn: 768px altı) */
@media (max-width: 768px) {
    section { padding: 40px 0; }
    h2 { font-size: 1.8rem; }
   .section-subtitle { font-size: 1rem; }

   .hero-content {
        max-width: 100%;
        text-align: center;
    }
    
   .hero-content h1 {
        font-size: 2.5rem;
    }
    
   .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

   .services-grid {
        grid-template-columns: 1fr;
    }

   .stats-grid {
        grid-template-columns: 1fr;
    }
    
   /* Mobil form düzenlemesi */
   .form-row {
        grid-template-columns: 1fr; /* Sütunları alt alta getir */
        gap: 0; /* Boşluğu form-group'a devret */
    }
    .form-row .form-group {
        margin-bottom: 15px;
    }
    .form-row .form-group:last-child {
        margin-bottom: 0;
    }
    
    .form-group button[type="submit"] {
        width: 100%; /* Butonu tam geniş yap */
    }
    
    .form-section-wrapper {
        padding: 20px;
    }
   /* Mobil form düzenlemesi SONU*/

   /* Mobil ürünler sayfası */
   .product-grid-urunler {
        grid-template-columns: 1fr;
   }

   .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
   .footer-col.about p {
        max-width: 100%;
    }
}