/* --- GENEL AYARLAR (ORİJİNAL) --- */
:root {
--primary: #1d3557;    /* Güçlü Lacivert */
    --accent: #457b9d;     /* Dinamik Mavi */
    --bg-light: #e2e8f0;   /* Çok Hafif Cam Göbeği */
    --text: #1d3557;       /* Okunaklı Koyu Ton */
    --white: #e2e8f0;      /* Saf Beyaz */
    --radius: 24px;        /* Bento'nun imzası: Çok yuvarlak köşeler */
}
* { box-sizing: border-box; }
body { margin: 0; font-family: 'Plus Jakarta Sans', sans-serif; color: var(--text); background-color: var(--white); line-height: 1.6; }
.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.section { padding: 60px 0; }
.bg-light { background-color: var(--bg-light); }
.bg-primary-gradient { background: linear-gradient(135deg, var(--primary), #1a5f85); color: var(--white); }
a { text-decoration: none; color: inherit; transition: 0.3s; }
img { max-width: 100%; height: auto; display: block; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }
h1, h2, h3 { color: var(--primary); margin: 0 0 15px 0; font-weight: 700; line-height: 1.2; }
html { scroll-behavior: smooth; }
section { scroll-margin-top: 100px; }

/* HEADER */
header { background: var(--white); padding: 15px 0; position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.header-flex { display: flex; flex-direction: column; gap: 15px; align-items: center; }
.logo { font-size: 24px; font-weight: 700; color: var(--primary); }
.logo .thin { font-weight: 300; color: var(--accent); }
.search-wrapper { background: var(--bg-light); padding: 10px 20px; border-radius: 50px; display: flex; align-items: center; width: 100%; max-width: 400px; }
.search-wrapper input { border: none; background: transparent; width: 100%; outline: none; font-family: inherit; color: var(--primary); margin-left: 10px; }
nav ul { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; list-style: none; padding: 0; }
nav a { font-weight: 500; color: var(--primary); padding: 5px 10px; }
nav a:hover { color: var(--accent); }

/* HEADER CONTACT INFO */
.header-contact-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    white-space: nowrap;
}
.header-contact-info a {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    line-height: 1.4;
    transition: color 0.3s;
}
.header-contact-info a:hover {
    color: var(--accent);
}
@media (max-width: 900px) {
    .header-contact-info { display: none; }
}

/* HERO SLIDER (RESİM BÜYÜMESİ ENGELLENDİ) */
.hero-section { padding: 40px 0 60px; text-align: center; }
.highlight { color: var(--accent); }
.slider-wrapper { display: flex; justify-content: center; margin-top: 30px; }
.slider-box { position: relative; width: 100%; max-width: 800px; height: 400px; border-radius: var(--radius); overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.15); border: 4px solid var(--white); }
.img-wrapper { position: absolute; top: 0; left: 0; width: 100%; height: 100%; overflow: hidden; }
.img-wrapper img { width: 100%; height: 100%; object-fit: cover; }

/* Before resmi sabitliği */
.before { width: 50%; z-index: 2; border-right: 1px solid rgba(255,255,255,0.2); }
.before img { max-width: none !important; width: auto; }

.badge { position: absolute; top: 20px; padding: 6px 14px; background: rgba(0,0,0,0.6); color: var(--white); border-radius: 4px; font-size: 11px; font-weight: 700; z-index: 5; }
.badge-before { left: 20px; } .badge-after { right: 20px; }
.slider-handle { position: absolute; top: 0; left: 50%; height: 100%; width: 0; z-index: 10; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.handle-line { position: absolute; top: 0; bottom: 0; width: 3px; background: var(--white); }
.handle-circle { width: 44px; height: 44px; background: var(--white); border-radius: 50%; display: flex; justify-content: center; align-items: center; color: var(--primary); box-shadow: 0 4px 15px rgba(0,0,0,0.3); z-index: 11; }
#slider-range { position: absolute; top:0; left:0; width:100%; height:100%; opacity: 0; cursor: ew-resize; z-index: 20; }

/* HAKKIMIZDA */
.about-grid { display: flex; flex-direction: column; gap: 40px; }
.about-image-card { margin: 0; position: relative; }
.about-image-card img { border-radius: var(--radius); box-shadow: 0 5px 15px rgba(0,0,0,0.1); width: 100%; }
.name-tag { position: absolute; bottom: 20px; left: 20px; right: 20px; background: rgba(255,255,255,0.95); padding: 15px; border-radius: var(--radius); text-align: center; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
.name-tag h3 { margin: 0; color: var(--primary); }
.sub-title { font-size: 13px; letter-spacing: 2px; color: var(--accent); font-weight: 700; text-transform: uppercase; display: block; margin-bottom: 10px; }
.stats-row { display: flex; gap: 30px; margin-top: 30px; border-top: 1px solid #eee; padding-top: 30px; }
.stat-item dt { font-size: 36px; font-weight: 700; color: var(--primary); line-height: 1; }
.stat-item dd { margin: 0; }

/* VIDEO */
.section-title-center { text-align: center; margin-bottom: 40px; }
.video-wrapper { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; background: #000; border-radius: 10px; box-shadow: 0 10px 20px rgba(0,0,0,0.2); }
.video-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

/* --- ÜRÜN FİLTRE TABLARI (DÜZELTİLMİŞ HALİ) --- */
.filter-tabs { 
    display: flex; 
    overflow-x: auto; 
    padding: 10px 20px 20px 20px; /* Mobilde parmakla kaydırma boşluğu */
    gap: 10px; 
    justify-content: flex-start; /* Mobilde sola yaslı (Tümü görünsün diye) */
    margin-bottom: 15px;
    scrollbar-width: none; 
}
.filter-tabs::-webkit-scrollbar { display: none; }

/* Masaüstünde (PC) tekrar ortaya gelsin */
@media (min-width: 900px) {
    .filter-tabs { justify-content: center; }
}

/* BUTON TASARIMI (SİLİNEN KISIM GERİ EKLENDİ) */
.tab { 
    white-space: nowrap; 
    padding: 10px 20px; 
    border: 1px solid #eee; 
    background: var(--white); 
    color: var(--text); 
    border-radius: 30px; /* Yuvarlak tasarım */
    cursor: pointer; 
    transition: 0.3s; 
}
.tab:hover, .tab.active { 
    background: var(--primary); 
    color: #fff; 
    border-color: var(--primary); 
}

/* --- ÜRÜN SLIDER YAPISI (KAYBOLAN KISIM) --- */
.slider-container-wrapper { 
    position: relative; 
    display: flex; 
    align-items: center; 
    margin-top: 20px; 
}

.product-slider-container { 
    width: 100%; 
    overflow-x: auto; 
    scroll-behavior: smooth; 
    padding: 20px 5px; 
    scrollbar-width: none; /* Firefox scrollbar gizle */
}

.product-slider-container::-webkit-scrollbar { 
    display: none; /* Chrome/Safari scrollbar gizle */
}

.product-slider-track { 
    display: flex; /* Ürünleri yan yana dizer */
    gap: 20px; 
}

/* KART TASARIMI (SABİT GENİŞLİK) */
.product-card {
    min-width: 280px;  /* Yan yana durması için şart */
    max-width: 280px;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(29, 53, 87, 0.05); 
    transition: all 0.4s;
}

.product-card:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 40px rgba(29, 53, 87, 0.12);
}

.p-img-box { 
    height: 200px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    background: #f9f9f9; 
    padding: 10px; 
}

.p-img-box img { 
    max-height: 100%; 
    max-width: 100%; 
    object-fit: contain; 
    mix-blend-mode: multiply; 
}

.p-info { 
    padding: 15px; 
    flex-grow: 1; 
    display: flex; 
    flex-direction: column; 
}

.p-code { font-size: 11px; color: #999; text-transform: uppercase; font-weight: 700; }
.p-title { font-size: 16px; color: var(--primary); margin: 5px 0 15px; flex-grow: 1; font-weight: 600; }

.btn-detail { 
    padding: 10px; 
    background: var(--bg-light); 
    color: var(--primary); 
    border: none; 
    border-radius: 6px; 
    cursor: pointer; 
    font-weight: 600; 
    width: 100%; 
    transition: 0.2s; 
}
.btn-detail:hover { background: var(--primary); color: var(--white); }

/* SLIDER OKLARI (SAĞ-SOL BUTONLARI) */
.slider-btn { 
    width: 45px; 
    height: 45px; 
    border-radius: 50%; 
    border: 1px solid #eee; 
    background: var(--white); 
    color: var(--primary); 
    cursor: pointer; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    z-index: 10; 
    position: absolute; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.1); 
    font-size: 20px; 
}

.prev-btn { left: -20px; } 
.next-btn { right: -20px; }

/* MOBİLDE OKLARI GİZLE */
@media (max-width: 768px) {
    .slider-btn { display: none; }
}

/* Kartlar sabit genişlikte olacak ki kaydırılabilsin */
.product-card {
    min-width: 280px;
    max-width: 280px;
    background: var(--white);
    border: none; /* Çizgileri kaldırdık, sadece gölge var */
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    /* Bento stili derin gölge */
    box-shadow: 0 10px 30px rgba(29, 53, 87, 0.05); 
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.product-card:hover {
    transform: scale(1.03); /* Hafifçe büyür */
    box-shadow: 0 20px 40px rgba(29, 53, 87, 0.12); /* Gölge derinleşir */
}
.p-img-box { height: 200px; display: flex; align-items: center; justify-content: center; background: #f9f9f9; padding: 10px; }
.p-img-box img { max-height: 100%; max-width: 100%; object-fit: contain; mix-blend-mode: multiply; }
.p-info { padding: 15px; flex-grow: 1; display: flex; flex-direction: column; }
.p-code { font-size: 11px; color: #999; text-transform: uppercase; font-weight: 700; }
.p-title { font-size: 16px; color: var(--primary); margin: 5px 0 15px; flex-grow: 1; font-weight: 600; }
.btn-detail { padding: 10px; background: var(--bg-light); color: var(--primary); border: none; border-radius: 6px; cursor: pointer; font-weight: 600; width: 100%; transition: 0.2s; }
.btn-detail:hover { background: var(--primary); color: var(--white); }

/* Slider Okları */
.slider-btn { width: 45px; height: 45px; border-radius: 50%; border: 1px solid #eee; background: var(--white); color: var(--primary); cursor: pointer; display: flex; align-items: center; justify-content: center; z-index: 10; position: absolute; box-shadow: 0 5px 15px rgba(0,0,0,0.1); font-size: 20px; }

.prev-btn { left: -20px; } .next-btn { right: -20px; }

/* MODAL YENİ TASARIM (Yazı Solda, Resim Sağda) */
.modal { display: none; position: fixed; z-index: 2000; left: 0; top: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.8); backdrop-filter: blur(5px); overflow-y: auto; opacity: 0; transition: opacity 0.3s; }
.modal.show { opacity: 1; }
.modal-content { background: var(--white); margin: 40px auto; width: 90%; max-width: 1100px; border-radius: 12px; position: relative; overflow: hidden; display: flex; box-shadow: 0 25px 50px rgba(0,0,0,0.25); }
.close-modal { position: absolute; right: 15px; top: 15px; font-size: 32px; background: transparent; border-radius: 50%; width: 40px; height: 40px; border: none; cursor: pointer; z-index: 20; color: #333; display: flex; align-items: center; justify-content: center; transition: 0.2s; }
.close-modal:hover { background: #f0f0f0; }

.modal-body { display: flex; flex-direction: column-reverse; width: 100%; }
.modal-info-col { padding: 40px; color: #333; flex: 1; }
.modal-cat-tag { font-size: 11px; background: var(--accent); color: var(--white); padding: 5px 10px; border-radius: 4px; text-transform: uppercase; font-weight: bold; letter-spacing: 1px; }
#modal-title { font-size: 32px; color: #111; margin: 15px 0; font-family: 'Times New Roman', serif; font-weight: 700; line-height: 1.2; }
.modal-desc-container { max-height: 300px; overflow-y: auto; margin-bottom: 25px; padding-right: 15px; }
#modal-desc { color: #555; font-size: 16px; line-height: 1.7; white-space: pre-line; }

.specs-section { border-top: 1px solid #eee; padding-top: 25px; }
.specs-section h3 { font-size: 18px; margin-bottom: 15px; font-weight: 700; color: var(--primary); }
.specs-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.specs-table th { text-align: left; padding: 12px 0; width: 35%; font-weight: 600; border-bottom: 1px solid #eee; color: #000; }
.specs-table td { padding: 12px 0; border-bottom: 1px solid #eee; color: #555; }

.modal-image-col { background: #f9f9f9; padding: 40px; margin: 0; display: flex; justify-content: center; align-items: center; flex: 1; border-left: 1px solid #eee; }
.modal-image-col img { max-height: 400px; width: auto; max-width: 100%; mix-blend-mode: multiply; object-fit: contain; }

/* İLETİŞİM & FOOTER */
.contact-wrapper { display: flex; flex-direction: column; gap: 40px; border-radius: var(--radius); padding: 30px; }
.contact-info h2, .contact-info a { color: var(--white); }
.contact-info p { color: rgba(255,255,255,0.8); }
.contact-list li { display: flex; gap: 15px; margin-bottom: 25px; align-items: flex-start; color: #fff; }
.contact-list i { width: 40px; height: 40px; background: rgba(255,255,255,0.15); border-radius: 50%; display: flex; justify-content: center; align-items: center; flex-shrink: 0; }
.contact-form-box { background: var(--white); padding: 30px; border-radius: var(--radius); color: var(--text); }
.input-group label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 8px; color: var(--primary); }
.input-group input, .input-group textarea { width: 100%; padding: 12px; border: 2px solid #eee; border-radius: 8px; margin-bottom: 20px; font-family: inherit; }
.btn-submit { width: 100%; padding: 15px; background: var(--accent); color: var(--white); border: none; border-radius: 8px; font-weight: 700; cursor: pointer; }
footer { text-align: center; padding: 30px; color: #888; border-top: 1px solid #eee; font-size: 14px; }

/* DESKTOP (900px ve üzeri) */
@media (min-width: 900px) {
    .header-flex { flex-direction: row; justify-content: space-between; }
    .slider-box { height: 480px; max-width: 700px; }
    .about-grid { flex-direction: row; align-items: center; }
    .about-image-card { flex: 1; } .about-content { flex: 1; }
    
    .modal-content { flex-direction: row; min-height: 600px; margin: 3% auto; }
    .modal-body { flex-direction: row; } 
    .modal-info-col { width: 55%; overflow-y: auto; max-height: 85vh; }
    .modal-image-col { width: 45%; height: auto; position: relative; border-left: 1px solid #eee; }
    
    .contact-wrapper { display: grid; grid-template-columns: 1fr 1.5fr; padding: 60px; }
    .contact-form-box { padding: 40px; }
}
@media (max-width: 768px) {
    .slider-btn { display: none; }
}
@keyframes slideUp { from { transform: translateY(50px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
/* --- 1. HERO SLIDER (TEPE) - GÜNCELLENMİŞ --- */
.hero-slider-section { 
    padding: 0; /* Boşlukları sıfırladık, tam ekran olsun */
}

.hero__items {
    /* Masaüstü Yüksekliği */
    height: 85vh; 
    min-height: 550px;
    display: flex;
    align-items: center;
    
    /* ÖNEMLİ DEĞİŞİKLİK: Cover yaparak boşlukları yok ettik */
    background-size: cover; 
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
    border-radius: 0;
}

/* Resim Üzerine Karanlık Perde (Yazılar Okunsun Diye) */
.hero__items::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    /* Soldan sağa doğru daha belirgin bir gölge */
    background: linear-gradient(90deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.1) 100%);
    z-index: 1;
}

.hero__text { 
    padding: 0 50px; 
    position: relative; 
    z-index: 9; 
    max-width: 700px; /* Yazının çok uzamasını engeller */
}

.hero__text .label { 
    font-size: 14px; 
    color: #1d3557; 
    background: #ffffff; 
    display: inline-block; 
    padding: 6px 16px; 
    border-radius: 30px; /* Daha yuvarlak modern etiket */
    margin-bottom: 20px; 
    font-weight: 700; 
    text-transform: uppercase; 
    letter-spacing: 1px;
}

.hero__text h2 { 
    color: #ffffff; 
    font-size: 56px; /* Başlık büyütüldü */
    font-weight: 800; 
    line-height: 1.1; 
    margin-bottom: 20px; 
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5); /* Yazı gölgesi */
}

.hero__text p { 
    color: rgba(255,255,255,0.9); 
    font-size: 18px; 
    margin-bottom: 35px; 
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
    font-weight: 400;
}

/* Buton Tasarımı */
.hero__text a { 
    display: inline-block; 
    font-size: 14px; 
    font-weight: 700; 
    text-transform: uppercase; 
    color: #ffffff; 
    background: #e63946; /* Canlı bir kırmızı/turuncu tonu (dikkat çeker) */
    padding: 16px 36px; 
    border-radius: 50px; 
    letter-spacing: 1px; 
    text-decoration: none; 
    transition: all 0.3s; 
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.hero__text a:hover { 
    background: #ffffff; 
    color: #e63946; 
    transform: translateY(-3px);
}

/* Slider Okları */
.hero__slider .owl-nav button { 
    font-size: 30px !important; 
    position: absolute; 
    top: 50%; 
    transform: translateY(-50%); 
    background: rgba(255,255,255,0.1) !important; 
    color: #ffffff !important; 
    width: 60px; height: 60px; 
    line-height: 60px; 
    border-radius: 50%; 
    backdrop-filter: blur(5px);
    transition: all 0.3s; 
    border: 1px solid rgba(255,255,255,0.2) !important;
}
.hero__slider .owl-nav button.owl-prev { left: 30px; }
.hero__slider .owl-nav button.owl-next { right: 30px; }
.hero__slider .owl-nav button:hover { background: #ffffff !important; color: #1d3557 !important; }

/* --- MOBİL GÖRÜNÜM AYARLARI (GÜNCELLENDİ) --- */
@media (max-width: 768px) {
    /* Mobilde Slider Ayarları */
    .hero__items {
        height: 100vh !important; /* Ekranı tam kaplasın */
        min-height: auto;
        background-position: center center !important;
        /* Mobilde gölgeyi biraz daha koyulaştırıyoruz ki yazı kesin okunsun */
    }
    
    .hero__items::before {
        background: linear-gradient(0deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.3) 100%);
    }

    /* Mobilde Yazı Ayarları */
    .hero__text { 
        padding: 0 20px; 
        text-align: center; /* Mobilde ortaladık */
        margin-top: 100px; /* Yazıyı biraz aşağı it */
    }

    .hero__text .label {
        font-size: 12px;
        padding: 5px 12px;
    }

    .hero__text h2 { 
        font-size: 36px; /* Başlığı ekrana sığacak kadar küçülttük */
        line-height: 1.2; 
    }

    .hero__text p { 
        font-size: 16px; 
        margin-bottom: 25px;
    }

    .hero__text a { 
        padding: 14px 30px; 
        font-size: 13px;
        width: 100%; /* Mobilde buton tam genişlikte olsun */
    }
    
    /* Mobilde okları gizle (parmakla kaydırılır) */
    .hero__slider .owl-nav button { display: none !important; }
}
/* --- SERVİS PAKETLERİ (PRICING) --- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    align-items: center; /* Kartları ortalar */
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(29, 53, 87, 0.05);
    text-align: center;
    position: relative;
    border: 1px solid rgba(0,0,0,0.03);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(29, 53, 87, 0.1);
}

/* Popüler Kart (Ortadaki) */
.pricing-card.popular {
    background: linear-gradient(145deg, #ffffff, #f0f4f8);
    border: 2px solid var(--accent); /* Mavi çerçeve */
    transform: scale(1.05); /* Diğerlerinden biraz büyük */
    z-index: 2;
    box-shadow: 0 20px 50px rgba(69, 123, 157, 0.15);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-tag {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 15px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    letter-spacing: 1px;
}

/* Kart İçeriği */
.p-header h3 {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 10px;
}

.p-desc {
    font-size: 14px;
    color: #666;
    display: block;
    margin-bottom: 20px;
}

.p-price {
    margin: 20px 0;
    color: var(--primary);
}

.p-price .currency {
    font-size: 20px;
    font-weight: 600;
    vertical-align: top;
}

.p-price .amount {
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
}

.p-price .period {
    font-size: 14px;
    color: #999;
    font-weight: 500;
}

/* Özellik Listesi */
.p-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    text-align: left;
}

.p-features li {
    margin-bottom: 15px;
    color: #555;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.p-features li i {
    color: var(--accent); /* Tik işareti mavi */
}

.p-features li.disabled {
    color: #ccc;
    text-decoration: line-through;
}

.p-features li.disabled i {
    color: #ddd;
}

/* Butonlar */
.btn-pricing {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid var(--accent);
    color: var(--accent);
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
    width: 100%;
}

.btn-pricing:hover {
    background: var(--accent);
    color: #fff;
}

.btn-popular {
    background: var(--accent);
    color: #fff;
}

.btn-popular:hover {
    background: var(--primary);
    border-color: var(--primary);
}

/* Mobil Ayarı */
@media (max-width: 768px) {
    .pricing-card.popular {
        transform: scale(1); /* Mobilde büyütmeyi iptal et */
        margin: 10px 0;
    }
    .pricing-card.popular:hover {
        transform: translateY(-5px);
    }
}
/* --- MÜŞTERİ YORUMLARI (TESTIMONIAL) --- */
.testimonial-item {
    background: var(--white); /* Sitenin beyaz rengi */
    padding: 30px;
    border-radius: var(--radius); /* Senin yuvarlak köşelerin */
    box-shadow: 0 10px 30px rgba(29, 53, 87, 0.05); /* Senin gölge stilin */
    margin: 15px 5px; /* Slider içinde boşluk */
    transition: transform 0.3s ease;
    border: 1px solid rgba(0,0,0,0.02);
}

.testimonial-item:hover {
    transform: translateY(-5px); /* Üzerine gelince hafif kalksın */
    box-shadow: 0 20px 40px rgba(29, 53, 87, 0.1);
}

.t-icon {
    font-size: 32px;
    color: var(--accent); /* Senin vurgu rengin (Mavi) */
    margin-bottom: 20px;
    opacity: 0.3;
}

.t-text {
    font-size: 15px;
    color: #555;
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.6;
    
    /* YENİ EKLENEN KISIM: Metin Sınırlama */
    display: -webkit-box;
    -webkit-line-clamp: 4; /* En fazla 4 satır göster */
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis; /* Sığmazsa sonuna ... koy */
    height: 96px; /* Yüksekliği sabitle (Satır yüksekliği x Satır sayısı) */
}

/* --- PROFİL FOTOĞRAFI DÜZELTME --- */
.t-user {
    display: flex;
    align-items: center;
    gap: 15px; /* Resim ile yazı arasındaki boşluk */
}

/* --- GOOGLE TARZI HARF AVATARLARI --- */
.t-avatar {
    width: 60px;       /* Genişlik */
    height: 60px;      /* Yükseklik */
    border-radius: 50%; /* Tam Yuvarlak */
    color: #fff;       /* Harf Rengi */
    font-size: 24px;   /* Harf Boyutu */
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center; /* Harfi tam ortalar */
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    flex-shrink: 0;    /* Kutunun sıkışmasını engeller */
    border: 3px solid #fff; /* Beyaz çerçeve ile öne çıkarır */
}

/* Renk Seçenekleri */
.c-blue { background-color: #4285F4; }  /* Google Mavisi */
.c-orange { background-color: #FBBC05; text-shadow: 0 1px 2px rgba(0,0,0,0.1); } /* Google Sarısı */
.c-green { background-color: #34A853; } /* Google Yeşili */
.c-purple { background-color: #A142F4; } /* Mor */
.c-red { background-color: #EA4335; }    /* Kırmızı */

/* İsim ve Rol Hizalaması */
.t-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.t-info {
    display: flex;
    flex-direction: column;
}

.t-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary); /* Senin lacivert rengin */
    margin: 0;
    line-height: 1.2;
}

.t-role {
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

/* Slider Noktaları (Dots) */
.testimonial-carousel .owl-dots {
    text-align: center;
    margin-top: 20px;
}
.testimonial-carousel .owl-dot span {
    width: 10px;
    height: 10px;
    background: #ccc;
    display: block;
    border-radius: 50%;
    margin: 0 5px;
    transition: 0.3s;
}
.testimonial-carousel .owl-dot.active span {
    background: var(--accent); /* Aktif nokta mavi olsun */
    width: 25px; /* Aktif nokta uzasın */
    border-radius: 10px;
}
/* --- İLETİŞİM SOSYAL MEDYA BUTONLARI --- */
.social-connect {
    margin-top: 40px; /* Listeden biraz uzaklaşsın */
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1); /* Hafif bir ayırıcı çizgi */
}

.social-title {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    font-weight: 600;
}

.social-icons {
    display: flex;
    gap: 15px; /* Butonlar arası boşluk */
    flex-wrap: wrap; /* Mobilde sığmazsa alt satıra geçsin */
}

.s-btn {
    width: 45px;       /* Dokunmatik hedef için ideal boyut (44px+) */
    height: 45px;
    background: rgba(255, 255, 255, 0.1); /* Yarı saydam beyaz */
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%; /* Tam yuvarlak */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none; /* Alt çizgiyi kaldır */
}

/* Hover Efektleri (Üzerine gelince) */
.s-btn:hover {
    background: #fff;
    transform: translateY(-5px); /* Hafif yukarı zıplasın */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-color: #fff;
}

/* Marka Renkleri (Hover olunca ikon rengi değişsin) */
.s-btn:hover.whatsapp { color: #25D366; }
.s-btn:hover.instagram { color: #C13584; }
.s-btn:hover.facebook { color: #1877F2; }
.s-btn:hover.youtube { color: #FF0000; }

/* Mobil Uyumluluk Ayarı */
@media (max-width: 768px) {
    .social-connect {
        text-align: center; /* Mobilde ortala */
    }
    .social-icons {
        justify-content: center; /* Mobilde butonları ortala */
    }
}
/* --- MOBİL MODAL DÜZELTMESİ (GÜÇLENDİRİLMİŞ) --- */
@media (max-width: 900px) {
    /* Modalın kendisi (Siyah Arka Plan) */
    .modal {
        display: block; /* Mobilde flex değil blok olsun */
        padding: 0 !important;
        overflow-y: scroll !important; /* Dikey kaydırmayı ZORLA aç */
        -webkit-overflow-scrolling: touch; /* iPhone için akıcı kaydırma */
        z-index: 99999; /* En üstte olduğundan emin ol */
    }

    /* Beyaz Kutu (İçerik) */
    .modal-content {
        position: relative;
        width: 90% !important; /* Genişlik %90 */
        margin: 20px auto 50px auto !important; /* Üstten 20px, alttan 50px boşluk bırak */
        height: auto !important; /* Yükseklik tamamen serbest */
        max-height: none !important; /* Maksimum yükseklik sınırını kaldır */
        border-radius: 12px;
        display: flex;
        flex-direction: column; /* İçeriği alt alta diz */
        overflow: visible !important; /* İçerik taşarsa göster (ana modal kaydıracak) */
    }

    /* Modal Gövdesi */
    .modal-body {
        flex-direction: column-reverse !important; /* Önce resim, sonra yazı */
        height: auto !important;
        overflow: visible !important;
    }

    /* Resim Alanı */
    .modal-image-col {
        width: 100% !important;
        height: auto !important;
        padding: 20px;
        background: #fff;
        border-bottom: 1px solid #eee;
        flex: none; /* Esnemesin, içeriği kadar yer kaplasın */
    }

    .modal-image-col img {
        max-height: 250px;
        width: auto;
        margin: 0 auto;
        display: block;
    }

    /* Yazı Alanı */
    .modal-info-col {
        width: 100% !important;
        padding: 20px;
        height: auto !important;
        max-height: none !important;
        overflow: visible !important; /* Kendi içinde kaydırma yapmasın */
        flex: none; /* Esnemesin, içeriği kadar uzasın */
    }

    /* Açıklama Metni Kutusu */
    .modal-desc-container {
        max-height: none !important; /* Sınırı kaldır */
        overflow: visible !important;
        margin-bottom: 20px;
    }
    
    /* Kapatma Butonu */
    .close-modal {
        position: absolute;
        top: 10px;
        right: 10px;
        z-index: 100;
        background: rgba(255,255,255,0.9);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        display: flex;
        align-items: center;
        justify-content: center;
    }
}
/* --- CANLI ARAMA KUTUSU TASARIMI --- */
.search-results-box {
    position: absolute;
    top: 100%; /* Arama çubuğunun hemen altı */
    left: 0;
    width: 100%;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    display: none; /* Başlangıçta gizli */
    z-index: 1000;
    max-height: 300px; /* Çok sonuç çıkarsa kaydırma çubuğu olsun */
    overflow-y: auto;
    border: 1px solid #eee;
}

/* Sonuçların görünümü */
.search-item {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none;
    color: #333;
}

.search-item:last-child {
    border-bottom: none;
}

.search-item:hover {
    background-color: #f9f9f9; /* Üzerine gelince renk değişsin */
}

/* Ürün Resmi (Küçük) */
.search-item img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 15px;
}

/* Ürün Bilgisi */
.search-item-info h4 {
    font-size: 14px;
    margin: 0;
    font-weight: 600;
    color: #000;
}

.search-item-info span {
    font-size: 12px;
    color: #666;
}