/* --- GENEL AYARLAR --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    background-color: #f4f4f4;
    overflow-x: hidden;
    font-size: 16px;
    line-height: 1.6;
}

/* --- CAFCAFLI HEADER (BUZLU CAM MENÜ) --- */
header {
    position: fixed;
    top: 25px; /* Havada durma payı */
    left: 2%; 
    width: 96%;
    height: 120px; /* Büyük Header */
    
    /* Buzlu Cam Efekti */
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 25px;
    
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    z-index: 1000;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

/* Scroll Yapınca (Aşağı İndikçe Yapışan Menü) */
header.yapisk-menü {
    top: 0; left: 0; width: 100%; height: 100px;
    border-radius: 0;
    background: rgba(0, 18, 51, 0.98); /* Koyu Lacivert */
    border-bottom: 4px solid #E21818;
    padding: 0 5%;
}

/* --- LOGO --- */
.logo {
    font-size: 40px;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 2px;
    text-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: 0.3s;
    line-height: 1;
}
.logo span { color: #E21818; }

header.yapisk-menü .logo { font-size: 32px; }

/* --- MENÜ LİNKLERİ --- */
nav ul { display: flex; list-style: none; align-items: center; }
nav ul li { margin-left: 15px; }

nav ul li a {
    position: relative;
    text-decoration: none;
    color: #fff;
    font-size: 19px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 15px 25px;
    border-radius: 40px;
    transition: 0.4s;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

nav ul li a:hover {
    background: #fff;
    color: #001233;
    box-shadow: 0 0 20px rgba(255,255,255,0.4);
    transform: scale(1.05);
}

/* İletişim Butonu (Animasyonlu) */
.btn-iletisim {
    background: #E21818 !important;
    color: #fff !important;
    padding: 18px 40px !important;
    font-size: 20px !important;
    box-shadow: 0 10px 20px rgba(226, 24, 24, 0.4);
    animation: pulse 2s infinite;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(226, 24, 24, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(226, 24, 24, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(226, 24, 24, 0); }
}

/* --- YENİ EKLENEN: HAMBURGER MENÜ BUTONU --- */
.menu-toggle {
    display: none; /* Masaüstünde gizli */
    font-size: 28px;
    color: #fff; /* Header koyu olunca görünür */
    cursor: pointer;
    z-index: 2000;
}


/* --- SLIDER (MANŞET) ALANI --- */
.main-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.slide-item {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center;
    opacity: 0; transition: opacity 1s ease-in-out;
    display: flex; align-items: center;
    padding-left: 8%;
}

.slide-item.active { opacity: 1; z-index: 1; }

.slide-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(0, 18, 51, 0.85), rgba(0,0,0,0.1));
    z-index: 2;
}

.slide-content {
    position: relative; z-index: 3; max-width: 900px; color: #fff;
}

.slide-item.active h1 {
    font-size: 4.5rem; font-weight: 900; line-height: 1.1; margin-bottom: 25px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
    animation: fadeInUp 1s forwards;
}

.slide-item.active p {
    font-size: 1.4rem; margin-bottom: 40px; opacity: 0.9;
    animation: fadeInUp 1.5s forwards; animation-delay: 0.2s;
}

@keyframes fadeInUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }

/* Slider Butonu (Hemen Başvur - Düzeltildi) */
.btn-slider {
    padding: 18px 45px;
    background: linear-gradient(90deg, #E21818, #ff4d4d);
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    font-size: 16px;
    border-radius: 50px;
    display: inline-flex; /* Hizalama düzeltildi */
    align-items: center;  /* Dikey ortalama */
    gap: 15px;            /* Yazı ve ikon arası boşluk */
    box-shadow: 0 10px 25px rgba(226, 24, 24, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    animation: fadeInUp 1.5s forwards; animation-delay: 0.4s;
}

.btn-slider:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(226, 24, 24, 0.6);
}

/* Slider Okları (Düzeltildi) */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px; height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex; /* İkonu ortalamak için */
    justify-content: center;
    align-items: center;
}

.slider-btn:hover {
    background: #E21818; border-color: #E21818;
    transform: translateY(-50%) scale(1.1);
}
.prev { left: 40px; } .next { right: 40px; }


/* --- DİNAMİK BÖLÜMLER (ZİK ZAK) --- */
.section-wrapper { padding: 120px 8%; background: #fff; }
.dynamic-row { display: flex; align-items: center; justify-content: space-between; gap: 80px; margin-bottom: 120px; }
.text-col h2 { font-size: 3rem; color: #001233; margin-bottom: 25px; font-weight: 900; }
.text-col p { font-size: 1.2rem; line-height: 1.8; color: #555; }
.dynamic-row img { width: 45%; border-radius: 15px; box-shadow: 0 30px 60px rgba(0,0,0,0.25); transform: rotate(-2deg); transition: 0.5s; }
.dynamic-row img:hover { transform: rotate(0) scale(1.02); }
.reverse { flex-direction: row-reverse; } .reverse img { transform: rotate(2deg); }


/* --- SAYFA BAŞLIĞI (Page Header - Alt Sayfalar İçin) --- */
.page-header {
    height: 400px;
    background-size: cover; background-position: center;
    position: relative;
    display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center;
    margin-top: 0;
}
.page-header::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,18,51,0.8), rgba(0,18,51,0.95));
    z-index: 1;
}
.page-title { position: relative; z-index: 2; color: #fff; margin-top: 60px; }
.page-title h1 { font-size: 3.5rem; font-weight: 900; margin-bottom: 15px; letter-spacing: 2px; }
.page-title span { font-size: 1.1rem; color: #E21818; font-weight: 700; letter-spacing: 1px; display: block; margin-bottom: 10px; }

/* --- İÇERİK SAYFASI --- */
.page-content { padding: 100px 8%; background: #fff; }
.about-row { display: flex; gap: 60px; align-items: flex-start; }
.about-text { flex: 1; }
.about-text h2 { font-size: 2.5rem; color: #001233; margin-bottom: 25px; font-weight: 800; border-left: 5px solid #E21818; padding-left: 20px; }
.about-text p { font-size: 1.1rem; line-height: 1.8; color: #555; margin-bottom: 20px; }
.about-img { flex: 1; }
.about-img img { width: 100%; border-radius: 15px; box-shadow: 20px 20px 0px rgba(226, 24, 24, 0.1); }

/* --- HAKKIMIZDA KUTULARI (Misyon/Vizyon) --- */
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 80px; }
.value-card { background: #f9f9f9; padding: 40px 30px; border-radius: 15px; transition: 0.4s; border: 1px solid #eee; text-align: center; }
.value-card:hover { background: #fff; transform: translateY(-10px); box-shadow: 0 15px 40px rgba(0,0,0,0.1); border-color: #E21818; }
.value-card i { font-size: 40px; color: #E21818; margin-bottom: 20px; background: rgba(226, 24, 24, 0.1); padding: 20px; border-radius: 50%; }
.value-card h3 { font-size: 1.5rem; color: #001233; margin-bottom: 15px; font-weight: 800; }
.value-card p { color: #666; line-height: 1.6; }


/* --- HİZMETLER GRID TASARIMI --- */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 40px; margin-top: 50px; }
.service-card {
    background: #fff; border-radius: 20px; overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.05); position: relative; top: 0;
}
.service-card:hover { top: -10px; box-shadow: 0 20px 50px rgba(226, 24, 24, 0.15); border-color: #E21818; }
.service-img { height: 220px; width: 100%; position: relative; overflow: hidden; }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.service-card:hover .service-img img { transform: scale(1.1); }
.service-icon {
    position: absolute; bottom: -30px; right: 30px; width: 70px; height: 70px;
    background: #E21818; color: #fff; border-radius: 50%; display: flex; justify-content: center;
    align-items: center; font-size: 28px; border: 5px solid #fff; box-shadow: 0 5px 15px rgba(0,0,0,0.2); z-index: 2;
}
.service-content { padding: 40px 30px 30px; }
.service-content h3 { font-size: 1.4rem; color: #001233; font-weight: 800; margin-bottom: 15px; }
.service-content p { color: #666; line-height: 1.6; font-size: 0.95rem; margin-bottom: 25px; }
.read-more-btn { text-decoration: none; color: #E21818; font-weight: 700; font-size: 14px; text-transform: uppercase; display: inline-flex; align-items: center; transition: 0.3s; }
.read-more-btn i { margin-left: 8px; transition: 0.3s; }
.read-more-btn:hover { color: #001233; letter-spacing: 1px; }
.read-more-btn:hover i { transform: translateX(5px); }


/* --- FOOTER (4 Sütunlu) --- */
footer { background: #000c22; color: #b0b0b0; padding: 80px 5% 30px; font-size: 14px; position: relative; border-top: 5px solid #E21818; }
.footer-row { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 40px; margin-bottom: 50px; }
.footer-col { flex: 1; min-width: 220px; }
.footer-col h4 { color: #fff; font-size: 18px; margin-bottom: 25px; font-weight: 800; text-transform: uppercase; position: relative; padding-bottom: 12px; letter-spacing: 1px; }
.footer-col h4::after { content: ''; position: absolute; left: 0; bottom: 0; width: 40px; height: 3px; background-color: #E21818; transition: 0.3s; }
.footer-col:hover h4::after { width: 60px; }
.footer-about p { line-height: 1.8; margin-bottom: 20px; opacity: 0.8; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 12px; }
.footer-links li:last-child { border: none; }
.footer-links li a { color: #b0b0b0; text-decoration: none; transition: 0.3s; display: flex; align-items: center; font-weight: 500; }
.footer-links li a i { font-size: 12px; margin-right: 10px; color: #E21818; transition: 0.3s; }
.footer-links li a:hover { color: #fff; padding-left: 5px; }
.contact-info { list-style: none; padding: 0; }
.contact-info li { display: flex; align-items: flex-start; margin-bottom: 20px; line-height: 1.6; }
.contact-info li i { font-size: 18px; color: #E21818; margin-right: 15px; margin-top: 3px; width: 25px; text-align: center; }
.copyright { text-align: center; margin-top: 50px; padding-top: 25px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 13px; opacity: 0.6; }


/* --- MOBİL UYUMLULUK VE HAMBURGER MENÜ AYARLARI (GÜNCELLENDİ) --- */
@media (max-width: 1024px) {
    /* Header Mobilde Sabit ve Koyu Olsun */
    header { 
        position: fixed !important;
        height: 70px; 
        padding: 0 20px; 
        width: 100%; 
        top: 0; 
        left: 0; 
        border-radius: 0; 
        background: #001233 !important; /* Koyu Lacivert */
        justify-content: space-between;
        backdrop-filter: none;
        border: none;
    }

    /* Logo Boyutu */
    .logo { font-size: 24px; color: #fff !important; }

    /* Menü Butonunu Göster */
    .menu-toggle { display: block; }

    /* --- MOBİL MENÜ YAPISI --- */
    nav {
        /* display: none;  <-- ESKİ KOD KALDIRILDI */
        position: fixed;
        top: 0; 
        right: -100%; /* Ekran dışına it */
        width: 80%;   /* Genişlik %80 olsun */
        height: 100vh; /* Tam boy */
        background: rgba(0, 18, 51, 0.98); /* Koyu Zemin */
        backdrop-filter: blur(10px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.4s ease-in-out; /* Kayma efekti */
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
        z-index: 1500;
    }

    /* JavaScript ile 'aktif' classı eklenince menü gelsin */
    nav.aktif {
        right: 0; 
    }

    nav ul {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    nav ul li { margin-left: 0; }

    nav ul li a {
        font-size: 20px;
        color: #fff;
        display: block;
        padding: 0;
        background: none !important;
        box-shadow: none !important;
    }
    
    /* Mobilde İletişim Butonu */
    .btn-iletisim {
        background: transparent !important;
        border: 2px solid #E21818 !important;
        padding: 10px 30px !important;
        font-size: 18px !important;
        color: #fff !important;
        animation: none;
    }

    /* Diğer Mobil Ayarlar */
    .slide-item.active h1 { font-size: 2rem; }
    .slide-item.active p { font-size: 1rem; }
    .dynamic-row { flex-direction: column; } 
    .dynamic-row img, .text-col { width: 100%; }
    .about-row { flex-direction: column; }
    .footer-col { min-width: 100%; text-align: center; }
    .contact-form-section { flex-direction: column; }
    .map-wrapper { min-height: 300px; }
}

@media (max-width: 768px) {
    .btn-slider { padding: 15px 30px; font-size: 14px; }
    .slider-btn { width: 40px; height: 40px; font-size: 16px; }
    .prev { left: 10px; } .next { right: 10px; }
    .footer-col { min-width: 100%; }
}

/* --- PROJELER (PORTFOLYO) TASARIMI --- */

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); /* Esnek kolonlar */
    gap: 30px;
    margin-top: 50px;
}

/* Proje Kartı (Kapsayıcı) */
.project-card {
    position: relative;
    height: 300px; /* Sabit yükseklik */
    border-radius: 15px;
    overflow: hidden; /* Resim taşmasın */
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    cursor: pointer;
}

/* Arka Plan Resmi */
.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Resmi kutuya doldur */
    transition: transform 0.5s ease;
}

/* Hover: Resim Büyüsün */
.project-card:hover .project-img {
    transform: scale(1.1);
}

/* Üzerine Gelince Çıkan Perde (Overlay) */
.project-overlay {
    position: absolute;
    bottom: -100%; /* Başlangıçta aşağıda gizli */
    left: 0;
    width: 100%;
    height: 100%;
    /* Yarı şeffaf kırmızı-lacivert geçiş */
    background: linear-gradient(to top, rgba(0, 18, 51, 0.95), rgba(226, 24, 24, 0.8));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    transition: bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1); /* Yumuşak kayma */
}

/* Hover: Perde Yukarı Çıksın */
.project-card:hover .project-overlay {
    bottom: 0;
}

/* Proje Yazıları */
.project-cat {
    color: #ffd700; /* Altın sarısı kategori */
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.project-title {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    transform: translateY(20px); /* Yazı aşağıdan gelsin */
    opacity: 0;
    transition: 0.5s;
    transition-delay: 0.1s;
}

/* Yazı Animasyonu */
.project-card:hover .project-title {
    transform: translateY(0);
    opacity: 1;
}

/* İncele Butonu (Yuvarlak) */
.project-btn {
    width: 50px;
    height: 50px;
    background: #fff;
    color: #E21818;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    text-decoration: none;
    transform: scale(0); /* Başlangıçta gizli */
    transition: 0.4s;
    transition-delay: 0.2s;
}

.project-card:hover .project-btn {
    transform: scale(1); /* Büyüyerek gelsin */
}

.project-btn:hover {
    background: #001233;
    color: #fff;
}

/* --- İLETİŞİM SAYFASI TASARIMI --- */

/* 1. Bölüm: Bilgi Kartları (Grid) */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px; /* Form ile arasını aç */
}

.contact-box {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

/* Hover Efekti: Yukarı kalk ve kenarlık kırmızı olsun */
.contact-box:hover {
    transform: translateY(-10px);
    border-color: #E21818;
    box-shadow: 0 20px 40px rgba(226, 24, 24, 0.1);
}

.contact-icon {
    width: 80px; height: 80px;
    background: rgba(226, 24, 24, 0.1);
    color: #E21818;
    border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    font-size: 32px;
    margin: 0 auto 20px; /* Ortala */
    transition: 0.4s;
}

.contact-box:hover .contact-icon {
    background: #E21818;
    color: #fff;
    transform: rotateY(360deg); /* İkon kendi etrafında dönsün */
}

.contact-box h3 { font-size: 1.4rem; color: #001233; margin-bottom: 15px; font-weight: 800; }
.contact-box p { color: #666; font-size: 1.1rem; line-height: 1.6; }
.contact-box a { color: #666; text-decoration: none; transition: 0.3s; }
.contact-box a:hover { color: #E21818; }


/* 2. Bölüm: Form ve Harita Alanı */
.contact-form-section {
    display: flex;
    gap: 50px;
    align-items: stretch; /* Yükseklikleri eşitle */
}

/* Sol Taraf: Form */
.form-wrapper {
    flex: 1; /* %50 Genişlik */
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.form-group { margin-bottom: 25px; }

.form-group label {
    display: block; margin-bottom: 10px;
    color: #001233; font-weight: 700; font-size: 14px;
    text-transform: uppercase;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #eee;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    transition: 0.3s;
    background: #f9f9f9;
}

.form-control:focus {
    outline: none;
    border-color: #E21818;
    background: #fff;
    box-shadow: 0 0 15px rgba(226, 24, 24, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: #001233;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 16px; font-weight: 800;
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
}

.btn-submit:hover {
    background: #E21818;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(226, 24, 24, 0.3);
}

/* Sağ Taraf: Harita */
.map-wrapper {
    flex: 1; /* %50 Genişlik */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    min-height: 500px;
}

.map-wrapper iframe {
    width: 100%; height: 100%; border: none;
}

/* Mesaj Başarılı Kutusu */
.alert-success {
    background: #d4edda; color: #155724; padding: 15px;
    border-radius: 10px; margin-bottom: 20px; border: 1px solid #c3e6cb;
}

/* Mobil Uyum */
@media (max-width: 900px) {
    .contact-form-section { flex-direction: column; }
    .map-wrapper { min-height: 300px; }
}

/* --- WHATSAPP BUTONU TASARIMI --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background-color: #25d366; /* WhatsApp Yeşili */
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 9999; /* Her şeyin üstünde dursun */
    transition: all 0.3s ease;
    text-decoration: none;
    
    /* Kalp atışı animasyonu */
    animation: whatsapp-pulse 2s infinite;
}

/* Üzerine gelince */
.whatsapp-float:hover {
    background-color: #128c7e; /* Koyu yeşil */
    transform: scale(1.1); /* Biraz büyüsün */
    color: #fff;
}

/* Animasyon Tanımı */
@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
        transform: scale(1);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); /* Dışa doğru dalga */
        transform: scale(1.05);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
        transform: scale(1);
    }
}

/* Mobilde biraz daha küçük ve kenara yakın olsun */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 30px;
        bottom: 20px;
        right: 20px;
    }
}

/* --- MÜŞTERİ YORUMLARI BÖLÜMÜ --- */
.testimonials-section {
    padding: 100px 8%;
    background: #f0f2f5; /* Hafif gri zemin */
    position: relative;
    overflow: hidden;
}

/* Arka plana silik dünya haritası veya desen ekleyelim */
.testimonials-section::before {
    content: '\f10d'; /* Tırnak İşareti İkonu */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: -50px;
    right: -50px;
    font-size: 300px;
    color: rgba(0,0,0,0.03);
    z-index: 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

/* Yorum Kartı */
.testimonial-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
    transition: 0.4s;
    border-bottom: 5px solid transparent;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-bottom-color: #E21818;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Üstteki Tırnak İkonu */
.quote-icon-small {
    font-size: 40px;
    color: #E21818;
    opacity: 0.2;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 25px;
}

.client-info h4 {
    font-size: 18px;
    font-weight: 800;
    color: #001233;
    margin-bottom: 5px;
}

.client-info span {
    font-size: 14px;
    color: #888;
    font-weight: 500;
}

/* Yorum Yapma Formu Alanı */
.comment-form-area {
    margin-top: 80px;
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    position: relative;
    z-index: 1;
    border-left: 10px solid #001233;
}

.comment-form-row {
    display: flex;
    gap: 20px;
}

.comment-input {
    flex: 1;
    padding: 15px;
    border: 2px solid #eee;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
}

.comment-btn {
    padding: 15px 40px;
    background: #E21818;
    color: #fff;
    font-weight: 800;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.comment-btn:hover {
    background: #001233;
}

/* Mobilde form alt alta olsun */
@media (max-width: 768px) {
    .comment-form-row { flex-direction: column; }
}