/* ===============
   ROOT VARIABLES (Renk Paketi & Tipografi)
   =============== */
:root {
    /* İsteğine uygun: Ferah Yeşil ve Kahverengi (Toprak) Konsepti */
    --clr-primary: #3A5A40; /* Koyu orman yeşili (Başlıklar ve ana hatlar) */
    --clr-primary-light: #588157; /* Orta yeşil (Vurgular) */
    --clr-accent: #A3B18A; /* Açık yeşil (Arkaplan dekorları) */
    
    --clr-brown: #8C6239; /* Tok Toprak rengi (Düğmeler, aksanlar) */
    --clr-brown-light: #A47551; /* Açık toprak */
    
    /* Ferah Backend (Light Mode) */
    --clr-bg: #f2ebe2; /* Logonun harika krem/bej arka planı */
    --clr-white: #FFFFFF;
    --clr-text: #2D312E; 
    --clr-text-light: #444444;
    
    /* Font ve Mimari Ayarlar */
    --font-main: 'Poppins', sans-serif; /* Çok daha düz, temiz ve modern tam ölçülü */
    --font-heading: 'Poppins', sans-serif;
    --transition: all 0.3s ease-in-out;
    --shadow: 0 8px 24px rgba(58, 90, 64, 0.08); /* Yumuşak yeşil gölge */
}

/* ===============
   RESET
   =============== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--clr-bg);
    color: var(--clr-text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===============
   UTILITY CLASSES
   =============== */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

h1, h2, h3, h4 {
    color: var(--clr-primary);
    font-weight: 700;
    font-family: var(--font-heading);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 14px 34px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1.05rem;
}

.btn-primary {
    background-color: var(--clr-brown);
    color: var(--clr-white);
    box-shadow: 0 4px 15px rgba(140, 98, 57, 0.3);
}

.btn-primary:hover {
    background-color: var(--clr-primary);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(58, 90, 64, 0.4);
}

/* ===============
   NAVBAR SECTION
   =============== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(242, 235, 226, 0.95); /* Arka plana uyumlu krem (f2ebe2) */
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 10px 0;
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar .logo {
    display: flex;
    align-items: center;
    gap: 15px; /* Resim ile yazı arası boşluk */
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--clr-primary);
    font-family: var(--font-heading);
    letter-spacing: -0.5px; /* Daha derli toplu ve düzgün durması için */
}

.navbar .logo img {
    width: 90px;
    height: 90px;
    object-fit: cover; /* Resmi kareye mükemmel sığdırır */
    border-radius: 50%; /* Tam yuvarlak (circle) form */
    box-shadow: 0 4px 12px rgba(0,0,0,0.05); /* Zarif bir derinlik (gölge) eklendi */
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-weight: 500;
    color: var(--clr-text);
    transition: var(--transition);
    position: relative;
    padding: 8px 20px; /* Arka plan renk dolgusu için mükemmel alan */
    border-radius: 8px; /* Hover edildiğinde yumuşak hatlı arkaplan köşeleri */
    display: inline-block;
}

/* Linklerin altındaki yeşil kayan hover animasyonu */
.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    background-color: var(--clr-primary);
    bottom: 2px; /* Pad alanının içinde azıcık yukarı alıyoruz */
    left: 50%;
    transform: translateX(-50%); /* Çizginin ortadan iki yana doğru büyümesi için */
    border-radius: 5px;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--clr-primary);
    background-color: rgba(58, 90, 64, 0.07); /* Tam istediğin: Farkedilen zarif şeffaf yeşil dolgu! */
}

.nav-links a:hover::after {
    width: 60%; /* Ortadan açılıp yazının altında harika dursun */
}

.hamburger {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--clr-primary);
    transition: var(--transition);
}

.hamburger:hover {
    color: var(--clr-brown);
}

/* Responsive Navbar (Tablet ve Mobil Dropdown) */
@media (max-width: 992px) {
    .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%; /* Navbar'ın hemen altına (alt çizgisine) hizalanır */
        left: 0;
        width: 100%;
        background-color: rgba(242, 235, 226, 0.98);
        border-top: 1px solid rgba(0,0,0,0.05); /* Ufak bir çizgiyle navbar gövdesinden ayrır */
        text-align: center;
        padding: 0 20px;
        box-shadow: 0 15px 25px rgba(0,0,0,0.08); /* Alta doğru süzülen elit gölge */
        gap: 0;
        max-height: 0; /* Başlangıçta gizli (yukarı çekilmiş) */
        overflow: hidden; /* Tam kapanması için içeriği gizler */
        transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out;
    }

    .nav-links.active {
        max-height: 400px; /* Bağlantıların rahatça sığacağı bir sınır açar */
        padding: 15px 20px 25px; /* Menü açılınca nefes alan boşluklar geri gelir */
    }

    .nav-links a {
        display: block;
        width: 100%;
        padding: 14px 0;
        border-radius: 8px;
    }

    /* Öğelerin aşağı doğru zarifçe damlaması (fade-in) */
    .nav-links li {
        width: 100%;
        opacity: 0;
        transform: translateY(-15px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateY(0);
    }

    /* Sıralı damlama efekti */
    .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.active li:nth-child(2) { transition-delay: 0.15s; }
    .nav-links.active li:nth-child(3) { transition-delay: 0.2s; }
    .nav-links.active li:nth-child(4) { transition-delay: 0.25s; }

    .hamburger {
        display: block;
        z-index: 1002;
    }
}

/* ===============
   HERO SECTION
   =============== */
.hero {
    position: relative;
    width: 100%;
    height: 100vh; /* Tam ekran karşılama */
    display: flex;
    align-items: flex-end; /* İçeriği aşağı yasla */
    justify-content: flex-start; /* İçeriği sola yasla */
    padding-bottom: 80px; /* Aşağıdan bırakılacak zarif boşluk */
    background: url('images/hero_section.webp') center/cover no-repeat;
    overflow: hidden;
}

/* Sol alt bölgeyi karartarak beyazımsı yazının okunabilirliğini efsanevi boyuta çıkartır */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Sol alt köşeden sağ üste doğru hafifleyen siyah gradient */
    background: linear-gradient(to top right, rgba(15, 15, 15, 0.85) 0%, rgba(15, 15, 15, 0.2) 60%, transparent 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2; /* Gradientin üstünde tut */
    /* width: 100%; satırı kasıtlı olarak kaldırıldı. Bu sayede genel .container'ın 
       %90 ve max-width: 1200px sınırları korunur. Menü logolarıyla aynı düzlemde hizalanır */
}

.hero-content {
    max-width: 750px;
    text-align: left; /* Sol tarafta düzenli metin akışı */
}

.hero h1 {
    font-size: clamp(1.9rem, 4vw, 3.8rem); /* Ekran küçüldükçe pürüzsüzce küçülecek elit font ayarı */
    color: var(--clr-white); /* Bembeyaz, markayı patlatan renk */
    margin-bottom: 15px; /* Boşluğu daraltarak ekranı fazla kaplamasını önlüyoruz */
    line-height: 1.15;
    text-shadow: 2px 2px 12px rgba(0,0,0,0.5); /* Okunabilirliği arttıran tok gölge */
    letter-spacing: -1px;
}

.hero p {
    font-size: clamp(0.95rem, 1.5vw, 1.25rem); /* Büyük ekranda ferah, mobilde kibar */
    color: #f2ebe2; /* Arka plana uyan, inanılmaz şık hafif kırık (bej/beyazımsı) ton */
    font-weight: 300;
    margin-bottom: 30px; /* Buton ile arayı hafif kıstık */
    line-height: 1.5; /* Metni sıkılaştırdık, daha az yer tutacak */
    text-shadow: 1px 1px 8px rgba(0,0,0,0.6);
}

/* Mobil için Hero Düzenlemeleri */
@media (max-width: 768px) {
    .hero {
        align-items: flex-end;
        padding-bottom: 45px; /* Mobilde alta çok yaslanmaması için padding azaltıldı */
        background-position: 85% center; /* Fotoğrafın kahramanı İnek sağda olduğu için mobilde odağı ona çektik */
    }
    .hero h1 {
        font-size: 1.8rem; /* Mobilde çok iri olup üstü kapatmasın diye ciddi küçültme */
        margin-bottom: 10px;
    }
    .hero p {
        font-size: 0.95rem; /* İnce ve okunabilir, resmi asla domine etmez */
        margin-bottom: 20px;
        line-height: 1.4; /* Satır aralıkları daraltıldı */
    }
}

/* ===============
   SECTION & COMPONENT ORTAK AYARLARI
   =============== */
.section-padding {
    padding: 100px 0; /* Bölümler arasına eklenen nefes aldırıcı elit boşluk */
}

/* Bölümlerin standart başlık tasarımları */
.section-title {
    margin-bottom: 25px;
}

.subtitle {
    display: inline-block;
    color: var(--clr-primary-light);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    position: relative;
    padding-left: 55px; /* Çizgiye yer açıyoruz */
}

/* Subtitle yanındaki ince dekoratif modern çizgi */
.subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 2px;
    background-color: var(--clr-primary-light);
}

.section-title h2 {
    font-size: 2.8rem;
    line-height: 1.25;
    color: var(--clr-text);
    font-weight: 700;
}

/* İmajlara vereceğimiz Premium yuvarlak köşeli tasarım helper classı */
.radius-img {
    border-radius: 12px;
    width: 100%;
    height: 100%; /* Bulunduğu div boyutunu referans alsın */
    object-fit: cover;
    display: block;
}

.shadow-img {
    box-shadow: 0 20px 40px rgba(58, 90, 64, 0.12); /* Canlı orman yeşili yumuşak derinlik gölgesi */
}

/* ===============
   HAKKIMIZDA (ABOUT) SECTION
   =============== */
.about {
    background-color: var(--clr-white); /* Krem navbar/bodyden sonra Beyaz arkaplan mükemmel zıtlık verir */
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Yarı yarıya 2 ana kolon */
    gap: 70px; /* Resim ile metin arası ciddi boşluk - ferah dizayn */
    align-items: center;
}

.about-image {
    position: relative;
    /* Resmi daha geniş göstermek için kendi yüksekliğini serbest bıraktık */
}

/* İmajın arkasına dekoratif taşan açık yeşil 'offset' bloklu gölge efekti */
.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    background-color: rgba(163, 177, 138, 0.25); /* Accent rengin transparan hali */
    border-radius: 12px;
    z-index: 0;
}

.about-image img {
    position: relative; /* Before elementinin önüne çıksın diye */
    z-index: 1;
    min-height: 480px; 
    /* Hero resmiyle aynı karanlık ve topraksı tonu (kontrastı) yakalamak için özel filtre */
    filter: brightness(0.75) contrast(1.2) sepia(0.35) saturate(1.05);
}

.about-content p {
    font-size: 1.05rem;
    color: var(--clr-text-light); /* Koyu siyah yerine modern mat gri siyah arası */
    margin-bottom: 22px;
}

/* Özelliklerin listelendiği alt ızgara */
.about-features {
    margin-top: 35px;
    display: grid;
    grid-template-columns: 1fr 1fr; /* Özellikleri 2 yanyana sığdırır */
    gap: 20px 10px;
}

.about-features li {
    font-weight: 600;
    color: var(--clr-text);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.about-features li i {
    color: var(--clr-primary);
    font-size: 1.3rem; /* İkonlar az daha dolgun görünsün */
}

/* Mobil Cihaz Uyumluluğu */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr; /* Bloklar yanyana değil alt alta geçer */
        gap: 60px;
    }
    
    .about-image {
        order: -1; /* Resim, metnin üstüne çıksın (Mobilde klasik görünüm) */
        padding-left: 20px; /* Sağlı sollu margin kurtarmak için ofseti dengeliyoruz */
    }
    
    .about-image img {
        min-height: auto;
        aspect-ratio: 4/3; /* Telefonlarda resmin formunu korur */
    }

    .section-title h2 {
        font-size: 2.3rem; /* Mobilde başlık ufalır */
    }
}

@media (max-width: 768px) {
    .about-features {
        grid-template-columns: 1fr; /* Telefonda ikon listesi tamamen tek sıralı akar */
    }
    .section-padding {
        padding: 70px 0; /* Alan daralır */
    }
}

/* ===============
   HİZMETLER (SERVICES) SECTION & SWIPER
   =============== */
.services {
    background-color: var(--clr-bg); /* Hakkımızdanın beyazından sonra yeniden bej renk gelsin */
}

.service-swiper {
    padding-bottom: 60px; /* Alttaki noktalar (pagination) için yer kalsın */
}

/* Swiper'ın her kartı yanındaki en uzun kartla eşit boyda çekip uzatması için auto kuralı */
.swiper-slide {
    height: auto !important; 
}

.service-card {
    background-color: var(--clr-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(58, 90, 64, 0.12); /* Yeşilimsi elit Hover Derinliği */
}

.service-img {
    width: 100%;
    height: 240px;
    background-color: var(--clr-accent); /* Mükemmel UI Detayı: Resim bozuk olduğunda sitenin çökmesi veya boyutun kırılması yerine yeşil bir kutu çıkartır! */
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-img img {
    transform: scale(1.08); /* Resmin üstüne gelince içe doğru elitçe tatlı büyümesi */
}

.service-info {
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Butonun en alta yaslanmasını sağlar */
    text-align: left;
}

.service-info h3 {
    font-size: 1.4rem;
    color: var(--clr-text);
    margin-bottom: 12px;
}

.service-info .short-desc {
    color: var(--clr-text-light);
    font-size: 0.95rem;
    margin-bottom: 30px;
    flex-grow: 1;
}

/* Modal Butonu Özel Tasarım */
.btn-outline {
    background: transparent;
    border: 2px solid var(--clr-primary-light);
    color: var(--clr-primary-light);
    padding: 12px 24px;
    font-size: 0.95rem;
    width: 100%; /* Kartın altında tam genişlik uzanır çok dolu gösterir */
}

.btn-outline:hover {
    background: var(--clr-primary-light);
    color: var(--clr-white);
}

/* Swiper Özel Sayfalama (Pagination Noktaları) Rengi */
.swiper-pagination-bullet {
    background: var(--clr-primary) !important;
}

.swiper-pagination-bullet-active {
    background: var(--clr-brown) !important; /* Aktif noktayı toprak rengi yap */
}

/* ===============
   MODAL (AÇILIR PENCERE - POPUP)
   =============== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(15, 15, 15, 0.85); /* Arkaplanı tam sinematik kalite karartır */
    backdrop-filter: blur(8px); /* Safari/Chrome için arkası buğulanır */
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease; /* Kararma hızı */
}

/* .active sınıfı JS tarafından atanır */
.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--clr-white);
    width: 90%;
    max-width: 950px; /* Oldukça devasa ferah pencere */
    border-radius: 20px;
    display: flex;
    overflow: hidden;
    position: relative;
    transform: scale(0.8) translateY(30px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Popup'ın yaylanarak sekme/büyüme efekti */
}

.modal-overlay.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 25px;
    right: 25px;
    background: var(--clr-white);
    color: var(--clr-text);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 10;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--clr-primary);
    color: var(--clr-white);
    transform: rotate(90deg); /* Havalı çevirme efekti */
}

.modal-img-box {
    width: 45%;
}

.modal-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-text-box {
    width: 55%;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.modal-text-box h3 {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--clr-text);
}

.modal-text-box p {
    color: var(--clr-text-light);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Modal Responsiveness (Mobilde yataydan dikeye döner) */
@media (max-width: 768px) {
    .modal-content {
        flex-direction: column;
        max-height: 90vh; /* Ekrana sığma payı */
        overflow-y: auto; /* Telefonyda iç kaydırmaya izin ver */
    }
    .modal-img-box {
        width: 100%;
        height: 280px;
    }
    .modal-text-box {
        width: 100%;
        padding: 40px 25px;
    }
    .modal-text-box h3 {
        font-size: 1.8rem;
    }
}

/* ===============
   GALERİ (GALLERY) SECTION
   =============== */
.gallery {
    background-color: var(--clr-white);
}

.gallery-swiper {
    padding-bottom: 60px;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 350px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* Hover üzerinde belirecek zarif yeşil katman */
.gallery-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(58, 90, 64, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay i {
    color: var(--clr-white);
    font-size: 3rem;
    transform: scale(0.5);
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* Lightbox Özel Ayarlar */
.lightbox-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100vh;
    background-color: rgba(0,0,0,0.95); /* Çok koyu sinematik arkaplan */
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-overlay img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.lightbox-overlay.active img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    background: transparent;
    border: none;
    color: var(--clr-white);
    font-size: 2.5rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10001;
}

.lightbox-close:hover {
    color: var(--clr-primary-light);
    transform: rotate(90deg) scale(1.1);
}

/* Telefon özel lightbox close butonu konumu */
@media (max-width: 768px) {
    .lightbox-close {
        top: 20px;
        right: 20px;
        font-size: 2rem;
    }
}

/* ===============
   MÜŞTERİ YORUMLARI (TESTIMONIALS) SECTION
   =============== */
.testimonials {
    background-color: var(--clr-bg);
}

.testimonial-swiper {
    padding-bottom: 50px;
}

.testimonial-card {
    background-color: var(--clr-white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.quote-icon {
    font-size: 3rem;
    color: rgba(163, 177, 138, 0.3); /* Accent rengin çok hafif şeffaf hali */
    position: absolute;
    top: 30px;
    right: 30px;
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--clr-text-light);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 30px;
    flex-grow: 1; /* Alttaki kişi profilini en alta yaslar */
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background-color: var(--clr-primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-white);
    font-size: 1.5rem;
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.author-info span {
    font-size: 0.85rem;
    color: var(--clr-brown);
    font-weight: 600;
}

/* ===============
   İLETİŞİM (CONTACT) SECTION
   =============== */
.contact {
    background-color: var(--clr-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background-color: var(--clr-bg);
    border-radius: 12px;
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--clr-primary);
    color: var(--clr-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.contact-details p {
    color: var(--clr-text-light);
    font-size: 1rem;
}

.contact-form {
    background-color: var(--clr-bg);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    font-family: var(--font-main);
    font-size: 1rem;
    color: var(--clr-text);
    background-color: var(--clr-white);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--clr-primary);
    box-shadow: 0 0 0 3px rgba(58, 90, 64, 0.1);
}

.form-success {
    margin-top: 20px;
    padding: 15px;
    background-color: #d4edda;
    color: #155724;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    background-color: var(--clr-bg);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--clr-text-light);
    background: repeating-linear-gradient(
        45deg,
        rgba(58, 90, 64, 0.03),
        rgba(58, 90, 64, 0.03) 10px,
        rgba(58, 90, 64, 0.06) 10px,
        rgba(58, 90, 64, 0.06) 20px
    );
}

.map-placeholder i {
    font-size: 4rem;
    color: var(--clr-primary-light);
    margin-bottom: 15px;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* ===============
   FOOTER (ALT BİLGİ)
   =============== */
.footer {
    background-color: var(--clr-primary);
    color: var(--clr-white);
    padding: 80px 0 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    margin-top: 15px;
    max-width: 300px;
}

.footer-links h4,
.footer-social h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--clr-white);
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--clr-accent);
    padding-left: 5px; /* Hoverda tatlı bir kayma efekti */
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-white);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--clr-accent);
    color: var(--clr-primary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-brand p {
        margin: 15px auto 0;
    }
    .social-icons {
        justify-content: center;
    }
}
