/* --- TEMEL AYARLAR VE YAZI TİPİ --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: #ffffff;
    color: #1e293b;
    overflow-x: hidden;
}

/* --- HİZALAMA KONTEYNIRI --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* --- ÜST MENÜ (NAVBAR) --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 85px;
    background-color: #ffffff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    display: flex;
    align-items: center;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    height: 50px;
    width: auto;
}

#nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: #1e293b;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    position: relative; /* Çizginin hizalanması için şart */
    padding: 5px 0;
    transition: 0.3s;
}

/* Fare üzerine gelince rengin değişmesi */
.nav-link:hover, .nav-link.active {
    color: #ff9800;
}

/* Çizginin başlangıç hali (görünmez ve genişliği 0) */
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -2px;
    left: 0;
    background-color: #ff9800;
    transition: width 0.3s ease-in-out; /* Kayma efekti hızı */
}

/* Fare üzerine gelince veya sayfa aktifken çizginin uzaması */
.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.btn-primary-nav {
    background-color: #1e293b;
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: 0.3s;
}

.btn-primary-nav:hover {
    background-color: #ff9800;
}

/* --- GİRİŞ (HERO) BÖLÜMÜ --- */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('arkaplan.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 90vh;
    display: flex;
    align-items: center;
    color: #ffffff;
    margin-top: 85px; /* Navbar'ın altında kalmasın diye */
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 900; /* Eski güçlü ve kalın başlık stili */
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 30px;
    max-width: 600px;
}

.btn-primary {
    display: inline-block;
    background-color: #ff9800;
    color: #ffffff;
    padding: 15px 35px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1rem;
    transition: 0.3s;
}

.btn-primary:hover {
    background-color: #e68a00;
}

/* --- İÇERİK BÖLÜMLERİ VE BAŞLIKLAR --- */
.content-section {
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800; /* Eski vurgulu başlıklar */
    color: #1e293b;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -15px;
    width: 60px;
    height: 4px;
    background-color: #ff9800;
}

/* --- HİZMETLER KARTLARI (GRID) --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 380px; 
    padding: 35px;
    background: #ffffff;
    border-radius: 12px;
    border: 2px solid #1e293b; /* İşte o net siyah/koyu çerçeve */
    transition: 0.4s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.02);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15); /* Üzerine gelince parlama/gölge efekti biraz daha belirginleşti */
    border-color: #ff9800; /* İstersen bu turuncu kalsın, istersen burayı da #1e293b yapabilirsin */
}

.card-visual img {
    width: 45px !important; /* İkonlar kibarlaştırıldı */
    height: 45px !important;
    object-fit: contain;
    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 800; /* Eski kalın başlık karakteri */
    color: #1e293b;
    margin-bottom: 15px;
    line-height: 1.4;
}

.service-card p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 30px;
    font-weight: 400;
}

.btn-card {
    margin-top: auto; /* Teklif al butonunu her zaman kartın tabanına iter */
    display: inline-block;
    padding: 12px 25px;
    border: 2px solid #1e293b;
    color: #1e293b;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 6px;
    transition: 0.3s;
    text-align: center;
    width: fit-content;
}

.btn-card:hover {
    background: #1e293b;
    color: #ffffff;
}

/* --- FOOTER --- */
.bottom-footer {
    background-color: #1e293b;
    color: #ffffff;
    text-align: center;
    padding: 30px 0;
    font-weight: 600;
}
/* --- FİYATLANDIRMA (PRICING) BÖLÜMÜ --- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    align-items: center; /* Ortadaki kartın daha büyük durmasını sağlar */
    margin-top: 40px;
}

.pricing-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: 0.4s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    border-color: #1e293b;
}

/* Ortadaki Popüler Paket */
.pricing-card.popular {
    border: 2px solid #ff9800; /* Tastekin Turuncusu */
    padding: 60px 30px; /* Diğerlerinden daha uzun */
    box-shadow: 0 15px 35px rgba(255, 152, 0, 0.1);
    z-index: 1;
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff9800;
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 800;
    white-space: nowrap;
}

/* Fiyat Yazıları */
.pricing-card h3 {
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 15px;
    font-weight: 800;
}

.price {
    font-size: 2.5rem;
    font-weight: 900;
    color: #1e293b;
    margin-bottom: 30px;
}

.price span {
    font-size: 1rem;
    color: #64748b;
    font-weight: 600;
}

/* Özellik Listesi */
.features {
    list-style: none;
    margin-bottom: 40px;
    text-align: left;
}

.features li {
    margin-bottom: 15px;
    color: #1e293b;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    font-weight: 600;
}

.features li.disabled {
    color: #94a3b8;
    text-decoration: line-through;
    font-weight: 400;
}

.features i.check { color: #22c55e; margin-right: 12px; font-weight: bold; font-style: normal; font-size: 1.1rem;}
.features i.cross { color: #ef4444; margin-right: 12px; font-weight: bold; font-style: normal; font-size: 1.1rem;}

/* Butonlar */
.btn-pricing {
    display: block;
    width: 100%;
    padding: 15px;
    border: 2px solid #1e293b;
    color: #1e293b;
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    transition: 0.3s;
}

.btn-pricing:hover {
    background: #1e293b;
    color: #ffffff;
}

.btn-pricing-popular {
    display: block;
    width: 100%;
    padding: 15px;
    background: #ff9800;
    color: #ffffff;
    text-decoration: none;
    font-weight: 800;
    border-radius: 8px;
    transition: 0.3s;
}

.btn-pricing-popular:hover {
    background: #e68a00;
}
/* --- FİYAT AÇIKLAMALARI VE REVİZE --- */
.price {
    font-size: 2.5rem;
    font-weight: 900;
    color: #1e293b;
    margin-bottom: 5px; /* Altındaki açıklama için boşluğu azalttık */
}

.package-desc {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 600;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e2e8f0; /* Özellik listesiyle araya şık bir ayırıcı çizgi çektik */
}
/* --- ÜST MENÜ TASARIMI VE RENKLER --- */

/* Linklerin Genel Stili */
.nav-link {
    color: #1e293b;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    position: relative;
    padding: 5px 0;
    transition: 0.3s;
}

/* Hover ve Aktif Durumu (Parlak Mavi) */
.nav-link:hover, .nav-link.active {
    color: #2563eb;
}

/* Kayan Alt Çizgi Efekti */
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -2px;
    left: 0;
    background-color: #2563eb;
    transition: width 0.3s ease-in-out;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

/* En Sağdaki Teklif Al Butonu (Lacivert) */
.btn-primary-nav {
    background-color: #1e3a8a;
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: 0.3s;
    border: 2px solid #1e3a8a;
}

.btn-primary-nav:hover {
    background-color: #2563eb;
    border-color: #2563eb;
}

/* Başlık Altındaki Vurgu Çizgileri */
.section-title::after {
    background-color: #2563eb;
}
/* --- KALAN TURUNCULARI PARLAK LACİVERTE ÇEVİRME --- */

/* 1. Ana Sayfa Fotoğraf Üzerindeki Teklif Al Butonu */
.btn-primary {
    background-color: #2563eb !important; /* Parlak Lacivert */
}

.btn-primary:hover {
    background-color: #1e3a8a !important; /* Üzerine gelince Koyu Lacivert */
}

/* 2. Fiyatlar Kısmı - 25 Bin TL'lik Ortadaki Paketin Butonu */
.btn-pricing-popular {
    background-color: #2563eb !important;
}

.btn-pricing-popular:hover {
    background-color: #1e3a8a !important;
}

/* 3. Hizmetler Kısmı - 10 Panelin Üzerine Gelince Çıkan Parlak Çerçeve */
.service-card:hover {
    border-color: #2563eb !important;
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.15) !important; /* Mavi tonda hafif parlama efekti */
}
/* --- FİYATLAR ORTA PANEL (ROZET VE ÇERÇEVE) PARLAK LACİVERT --- */

/* Orta panelin dış çerçevesi */
.pricing-card.popular {
    border-color: #2563eb !important; 
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.15) !important; /* Gölgeyi de lacivert tonuna uyarladık */
}

/* "En Çok Tercih Edilen" yazan üst rozet */
.popular-badge {
    background-color: #2563eb !important;
    color: #ffffff !important;
}
/* --- YENİ İLETİŞİM BÖLÜMÜ TASARIMI (REFERANSA UYGUN) --- */

.contact-section {
    padding: 100px 0;
    background-color: #f8fafc; /* Hafif gri arkaplan, paneli öne çıkarır */
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr; /* Form tarafı biraz daha geniş */
    gap: 50px;
    align-items: center;
}

/* Sol Taraf Bilgiler */
.contact-info h3 {
    font-size: 2rem;
    color: #1e3a8a; /* Lacivert başlık */
    margin-bottom: 20px;
    font-weight: 800;
}

.contact-info p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.info-icon {
    font-size: 1.8rem;
    background: #ffffff;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.1);
    border: 1px solid #eef2f6;
}

.info-text strong {
    display: block;
    color: #64748b;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.info-text span {
    color: #1e293b;
    font-size: 1.1rem;
    font-weight: 700;
}

/* Sağ Taraf Form Paneli (Referanstaki Gibi) */
.contact-form-panel {
    background: #ffffff;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(30, 58, 138, 0.08); /* Lacivert tonlu gölge */
    border-top: 5px solid #2563eb; /* Üstte şık bir parlak mavi çizgi */
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: #1e3a8a; /* Lacivert Etiket */
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: #1e293b;
    transition: 0.3s;
}

.form-group input:focus, 
.form-group textarea:focus {
    background-color: #ffffff;
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
    outline: none;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background-color: #2563eb; /* Parlak Mavi */
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: #1e3a8a; /* Koyu Lacivert */
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(30, 58, 138, 0.2);
}

/* Mobil için Alt Alta Dizilim */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    .contact-form-panel {
        padding: 30px;
    }
}
/* --- FORM ALTI KURUMSAL NOT --- */
.form-note {
    font-size: 0.8rem;
    color: #64748b; /* Soft bir gri tonu */
    margin-top: 10px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Başına küçük bir bilgi ikonu eklemek istersen (opsiyonel) */
.form-note::before {
    content: 'ℹ️';
    font-size: 0.9rem;
}
.price {
    font-size: 2.2rem; /* Mevcut font boyutuna göre ayarlayabilirsin */
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px; /* Eski ve yeni fiyat arasındaki boşluk */
}

.old-price {
    text-decoration: line-through;
    color: #a0aec0; /* Daha silik bir gri */
    font-size: 1.2rem; /* Eski fiyat daha küçük görünsün */
    font-weight: 500;
}
.price-container {
    display: flex;
    flex-direction: column; /* Fiyatları alt alta dizer, yan yana istersen 'row' yapabilirsin */
    align-items: center;
    margin-bottom: 15px;
}

/* Üstü çizili eski fiyat */
.old-price {
    text-decoration: line-through;
    color: #888; /* Gri tonu */
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: -5px; /* Yeni fiyata yaklaştırmak için */
}

/* Yeni indirimli fiyat */
.new-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a202c; /* Görseldeki koyu renk */
    margin: 0;
}

/* Ortadaki mavi kutu içindeki fiyatın rengi beyazsa veya farklıysa diye: */
.featured-card .new-price {
    /* Eğer orta kartın metin renkleri farklıysa burayı düzenleyebilirsin */
}
nav, .header, .navbar-container { /* Menü kapsayıcın hangisiyse */
    display: flex;
    align-items: center;
}
/* 1. Logoyu her türlü büyütmeye zorla */
img[src*="logom.png"] {
    height: 100px !important; /* 80 yetmediyse 100 yapalım */
    width: auto !important;
    max-height: none !important; /* Varsa engelleyici sınırı kaldırır */
}

/* 2. Logonun içindeki linkin veya div'in kısıtlamasını kaldır */
.logo, .navbar-brand, a[href="index.html"] { 
    height: auto !important;
    display: flex !important;
    align-items: center !important;
}

/* 3. Menü çubuğunun (header) logoya yer açmasını sağla */
header, .navbar, .nav-container {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    min-height: 120px !important; /* Menüyü logoya göre genişletir */
}
.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    transition: all 0.3s ease;
}

#project-manual {
    /* Liste ile aynı tasarımda olması için */
    border: 2px solid #2563eb; /* Fark edildiğini anlaması için hafif vurgu */
}
/* TASTEKIN DIGITAL PRICING STYLES */
.pricing-container { background-color: #f8fafc; padding: 80px 20px; font-family: 'Inter', sans-serif; }
.pricing-header { text-align: center; margin-bottom: 60px; }
.pricing-header h2 { font-size: 40px; color: #0f172a; font-weight: 800; margin-bottom: 15px; }
.pricing-header p { color: #64748b; font-size: 18px; }

.pricing-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); 
    gap: 30px; 
    max-width: 1200px; 
    margin: 0 auto; 
    align-items: stretch;
}

.pricing-card { 
    background: #ffffff; 
    border-radius: 24px; 
    padding: 40px; 
    border: 1px solid #e2e8f0; 
    display: flex; 
    flex-direction: column; 
    transition: all 0.3s ease;
    position: relative;
}

/* Öne Çıkan Professional Kartı */
.pricing-card.featured { 
    background: #2563eb; 
    color: white; 
    transform: scale(1.05); 
    border: none; 
    box-shadow: 0 25px 50px -12px rgba(37, 99, 235, 0.25);
}

.popular-badge { 
    position: absolute; top: 0; right: 0; 
    background: #fbbf24; color: #1e3a8a; 
    font-size: 12px; font-weight: 800; 
    padding: 6px 18px; border-radius: 0 24px 0 24px; 
    text-transform: uppercase;
}

.package-name { font-size: 24px; font-weight: 700; margin-bottom: 10px; }
.price-tag { font-size: 42px; font-weight: 800; margin-bottom: 30px; }
.price-tag span { font-size: 24px; }

.feature-list { list-style: none; padding: 0; margin: 0 0 40px 0; flex-grow: 1; }
.feature-list li { margin-bottom: 15px; font-size: 15px; display: flex; align-items: center; }

.icon { color: #2563eb; font-weight: bold; margin-right: 12px; }
.icon-alt { color: #fbbf24; font-weight: bold; margin-right: 12px; }
.disabled { color: #94a3b8; text-decoration: line-through; }
.disabled-alt { color: rgba(255,255,255,0.4); text-decoration: line-through; }
.highlight { font-weight: 700; text-decoration: underline; }

/* Butonlar */
.btn { 
    cursor: pointer; padding: 15px; border-radius: 16px; 
    font-weight: 700; font-size: 16px; transition: 0.3s; border: none; width: 100%;
}
.btn-outline { background: transparent; border: 2px solid #2563eb; color: #2563eb; }
.btn-outline:hover { background: #eff6ff; }
.btn-filled { background: white; color: #2563eb; }
.btn-filled:hover { background: #f8fafc; transform: translateY(-2px); }
.btn-dark { background: #0f172a; color: white; }
.btn-dark:hover { background: #000000; }

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .pricing-card.featured { transform: scale(1); margin: 20px 0; }
}
/* MINIMAL PRICING STYLES */
.minimal-pricing {
    padding: 100px 20px;
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
    text-align: center;
}

.pricing-header h2 {
    font-size: 36px;
    color: #1a202c;
    font-weight: 800;
    margin-bottom: 10px;
}

.pricing-header p {
    color: #718096;
    margin-bottom: 50px;
}

.price-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
}

.price-box {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    padding: 50px 40px;
    width: 300px;
    transition: all 0.3s ease;
    position: relative;
}

/* Kurumsal Paket Farkı */
.price-box.featured {
    background: #1e40af;
    border-color: #1e40af;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 20px 25px -5px rgba(30, 64, 175, 0.2);
}

.price-box.featured h3 { color: white; }
.price-box.featured .amount { color: white; }

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #fbbf24;
    color: #1e3a8a;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
}

.price-box h3 {
    font-size: 20px;
    color: #4a5568;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.amount {
    font-size: 40px;
    font-weight: 900;
    color: #1a202c;
    margin-bottom: 30px;
}

.amount span { font-size: 20px; }

.price-btn {
    width: 100%;
    padding: 15px;
    border-radius: 12px;
    border: 2px solid #1e40af;
    background: transparent;
    color: #1e40af;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.price-box.featured .price-btn {
    background: white;
    border-color: white;
    color: #1e40af;
}

.price-btn:hover {
    background: #1e40af;
    color: white;
}

.price-box.featured .price-btn:hover {
    background: #f1f5f9;
    color: #1e3a8a;
}

/* Mobil için ayar */
@media (max-width: 768px) {
    .price-box.featured { transform: scale(1); }
    .price-grid { gap: 40px; }
}
/* DİP NOT STİLLERİ */
.pricing-footer-note {
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff5f5; /* Hafif uyarı kırmızısı/pembesi */
    border: 1px dashed #feb2b2;
    padding: 15px 30px;
    border-radius: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    gap: 12px;
}

.warning-icon {
    font-size: 20px;
}

.pricing-footer-note p {
    color: #c53030; /* Uyarı kırmızısı */
    font-size: 15px;
    margin: 0;
}

.pricing-footer-note strong {
    text-transform: uppercase;
    text-decoration: underline;
}

/* Önceki Hover Efektini Destekleyici Küçük Dokunuş */
.pricing-box:hover {
    border-color: #1e40af;
    box-shadow: 0 10px 40px rgba(30, 64, 175, 0.25); /* Parlaklık miktarını biraz daha dengeledim */
}
/* TD NAVY PRICING STYLE */
.td-pricing-section {
    padding: 80px 0;
    background-color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.td-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.td-header { text-align: center; margin-bottom: 50px; }
.td-header h2 { font-size: 32px; color: #001f3f; font-weight: 800; }
.td-header p { color: #555; margin-top: 10px; }

.td-pricing-grid {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

/* KART TASARIMI */
.td-card {
    background: #fff;
    border: 2px solid #001f3f; /* Koyu Lacivert Çerçeve */
    border-radius: 12px;
    padding: 40px 30px;
    width: 300px;
    text-align: center;
    transition: all 0.3s ease-in-out; /* Hareket hızı */
    position: relative;
}

/* HOVER: PARLAMA VE HAREKET */
.td-card:hover {
    transform: translateY(-10px); /* Yukarı hareket */
    border-color: #007bff; /* Parlak Mavi Çerçeve */
    box-shadow: 0 0 20px rgba(0, 123, 255, 0.4); /* Parlama efekti */
}

.td-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #001f3f;
    color: #fff;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: bold;
    border-radius: 4px;
    text-transform: uppercase;
}

.td-title { color: #001f3f; font-size: 18px; margin-bottom: 15px; }
.td-price { font-size: 34px; font-weight: 800; color: #333; margin-bottom: 15px; }
.td-price span { font-size: 18px; }
.td-desc { font-size: 14px; color: #666; margin-bottom: 30px; min-height: 40px; }

.td-btn {
    width: 100%;
    padding: 12px;
    background: transparent;
    border: 1px solid #001f3f;
    color: #001f3f;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s;
}

.td-card:hover .td-btn {
    background: #001f3f;
    color: #fff;
}

/* SADE DİP NOT */
.td-note {
    text-align: center;
    margin-top: 40px;
    font-size: 13px;
    color: #888;
    font-style: italic;
}

@media (max-width: 768px) {
    .td-card { width: 100%; }
}
/* TASTEKIN DIGITAL FOOTER STYLES */
.td-footer {
    background-color: #0a0f1a; /* Çok koyu lacivert/siyah tonu */
    color: #ffffff;
    padding: 80px 0 30px 0;
    font-family: 'Inter', sans-serif;
    border-top: 3px solid #001f3f;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr; /* Sol taraf logo için daha geniş */
    gap: 40px;
}

/* Logo ve Marka Kısmı */
.footer-logo img { height: 50px; margin-bottom: 15px; }
.footer-logo h2 { font-size: 22px; color: #fff; font-weight: 800; letter-spacing: 1px; }
.footer-logo span { color: #007bff; } /* Digital kısmı parlak mavi */
.brand-text { color: #94a3b8; font-size: 14px; line-height: 1.6; margin: 15px 0; }

/* Sütun Başlıkları */
.footer-col h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
}
.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: #007bff;
}

/* Link Listeleri */
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}
.footer-col ul li a:hover { color: #fff; padding-left: 5px; }

/* İletişim Detayları */
.contact-info li { color: #94a3b8; font-size: 14px; display: flex; gap: 10px; }
.footer-whatsapp { 
    color: #25d366 !important; 
    font-weight: bold; 
    border: 1px solid #25d366; 
    padding: 5px 10px; 
    border-radius: 5px; 
    display: inline-block; 
    margin-top: 10px;
}

/* Alt Bar */
.footer-bottom {
    margin-top: 60px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}
.footer-bottom p { color: #64748b; font-size: 13px; }
.footer-bottom strong { color: #fff; }

/* Mobil Uyumluluk */
@media (max-width: 992px) {
    .footer-container { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 576px) {
    .footer-container { grid-template-columns: 1fr; text-align: center; }
    .footer-col h4::after { left: 50%; transform: translateX(-50%); }
    .footer-col ul li a:hover { padding-left: 0; }
}
/* WHATSAPP STICKY BUTTON STYLES */
.whatsapp-sticky {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366; /* WhatsApp Yeşili */
    border-radius: 50%; /* Tam Yuvarlak */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 9999; /* Sitedeki her şeyin üstünde dursun */
    transition: all 0.3s ease;
}

.whatsapp-sticky img {
    width: 35px;
    height: 35px;
}

/* Üzerine gelince parlaması ve büyümesi */
.whatsapp-sticky:hover {
    transform: scale(1.1); /* Hafif büyüme */
    background-color: #128c7e; /* Koyu yeşil */
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.6); /* Yeşil parıltı */
}

/* Mobilde butonu biraz küçültelim ki ekranı kaplamasın */
@media (max-width: 768px) {
    .whatsapp-sticky {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    .whatsapp-sticky img {
        width: 30px;
        height: 30px;
    }
}
.form-input {
    width: 100%;
    padding: 12px;
    border: 2px solid #001f3f; /* Koyu lacivert çerçeve */
    border-radius: 8px;
    font-size: 15px;
    outline: none;
    margin-top: 10px;
    transition: 0.3s;
}

.form-input:focus {
    border-color: #007bff; /* Üzerine gelince parlak mavi */
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.2);
}
.td-form-input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #001f3f; /* Koyu lacivert çerçeve */
    border-radius: 8px;
    font-size: 15px;
    margin-top: 10px;
    outline: none;
    background-color: #fff;
    box-sizing: border-box;
    transition: 0.3s;
}

/* --- HAKKIMIZDA (ABOUT) BÖLÜMÜ DÜZELTME --- */
.td-about-section {
    padding: 100px 0;
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
}

/* Sadece Hakkımızda içindeki container yan yana (flex) dursun */
.td-about-section .td-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.td-about-content { flex: 1.2; }
.td-about-logo img { height: 60px; margin-bottom: 25px; }
.td-about-title { font-size: 38px; color: #0f172a; font-weight: 800; line-height: 1.2; margin-bottom: 25px; }
.td-about-title span { color: #1e40af; }
.td-about-text { color: #64748b; font-size: 17px; line-height: 1.7; margin-bottom: 35px; }

.td-check-list { list-style: none; padding: 0; margin-bottom: 40px; }
.td-check-list li { display: flex; gap: 15px; margin-bottom: 20px; font-size: 15px; color: #334155; }
.td-check-icon { 
    background: #e0f2fe; color: #0369a1; 
    width: 24px; height: 24px; 
    border-radius: 6px; 
    display: flex; align-items: center; justify-content: center; 
    font-weight: bold; flex-shrink: 0;
}

.td-about-btn {
    display: inline-block;
    padding: 15px 35px;
    background-color: #1e40af;
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    transition: 0.3s;
}
.td-about-btn:hover { background-color: #1e3a8a; transform: translateY(-3px); }

.td-about-stats-panel { 
    flex: 0.8; 
    background: #001f3f; 
    padding: 50px; 
    border-radius: 30px; 
    box-shadow: 0 25px 50px -12px rgba(0, 31, 63, 0.3);
    color: white;
}

.td-stat-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.td-stat-card h3 { font-size: 42px; font-weight: 800; color: #38bdf8; margin-bottom: 5px; }
.td-stat-card p { font-size: 14px; color: #94a3b8; text-transform: uppercase; letter-spacing: 1px; }

.td-about-quote { 
    margin-top: 40px; 
    padding-top: 30px; 
    border-top: 1px solid rgba(255, 255, 255, 0.1); 
}

/* --- FİYATLANDIRMA (PRICING) DÜZELTME --- */
/* Fiyatlar bozulmasın diye container'ı alt alta (column) zorluyoruz */
.td-pricing-section .td-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column; /* Her şey alt alta gelecek */
    align-items: center;
}

/* Kartların yan yana durmasını sağlayan grid */
.td-pricing-grid {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    width: 100%;
}
/* Mobil Ayarları (768px ve altı) */
@media screen and (max-width: 768px) {
    header {
        padding: 10px 20px;
        flex-direction: column; /* Logo ve menüyü alt alta getirir */
        align-items: center;
    }

    nav ul {
        display: flex;
        flex-direction: row; /* Yan yana kalmaya devam etsinler dersen */
        flex-wrap: wrap; /* Sığmayanlar alt satıra geçsin */
        justify-content: center;
        gap: 10px;
        padding: 0;
    }

    nav ul li a {
        font-size: 14px; /* Mobilde yazıları biraz küçültelim */
        padding: 5px 10px;
    }
    
    /* Logo çok büyükse küçültelim */
    .logo img {
        height: 40px; 
        margin-bottom: 10px;
    }
}
/* Hakkımızda Bölümü Genel Ayarları */
#hakkimizda {
    width: 100%;
    max-width: 1200px; /* Masaüstü için maksimum genişlik */
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box; /* Padding'in genişliğe dahil olmasını sağlar */
    display: flex;
    flex-wrap: wrap; /* Mobilde elemanların alt alta geçmesini sağlar */
    align-items: center;
    background-color: #001f3f; /* Koyu lacivert panel */
    color: white;
    overflow: hidden; /* Dışarı taşan her şeyi gizle */
}

/* Mobilde İçeriği Alt Alta Getir */
@media screen and (max-width: 768px) {
    #hakkimizda {
        flex-direction: column; /* Logoyu üste, yazıyı alta alır */
        text-align: center;
        padding: 40px 15px; /* Yanlardan biraz boşluk bırakalım */
    }

    /* Sol taraftaki logo alanı */
    #hakkimizda .logo-container {
        width: 100%;
        margin-bottom: 20px;
    }

    /* logom.png için boyut ayarı */
    #hakkimizda img {
        max-width: 150px; /* Mobilde logoyu biraz küçültelim */
        height: auto;
    }

    /* Sağ taraftaki metin ve istatistik paneli */
    #hakkimizda .content {
        width: 100%;
        padding: 0;
    }
}