@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');
:root {
    --nav-bg: rgba(255, 255, 255, 0.0);
    --nav-scrolled: rgba(255, 255, 255, 0.95);
    --nav-text: #ffffff;
    --nav-text-dark: #1e293b;
    --nav-accent: #2cc76a;
	--hero-primary: #2cc76a;
    --hero-dark: #0f172a;
    --hero-text: #64748b;
	--soft-bg: #f8fafc;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; /* Paddingler genişliği bozmasın */
}
html, body {
    max-width: 100%;
    overflow-x: hidden; /* Yatay kaymayı kökten engeller */
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1e293b;
    background-color: var(--soft-bg);
    -webkit-font-smoothing: antialiased;
}

/* Linklerdeki o çizgileri tamamen öldürelim */
a {
    text-decoration: none !important;
    transition: all 0.3s ease;
    color: inherit;
}
h1, h2, h3, h4, h5, h6 {
    color: #0f172a;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; letter-spacing: -1px; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

p {
    margin-bottom: 1.2rem;
    color: #64748b; /* Soft bir gri okumayı kolaylaştırır */
}

span.highlight {
    color: #2cc76a;
    font-weight: 700;
}
/* Ortak Input ve Textarea Stili */
input[type="text"], 
input[type="email"], 
input[type="password"], 
input[type="tel"], 
select, 
textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #f1f5f9;
    border-radius: 12px;
    background-color: #f8fafc;
    font-family: inherit;
    font-size: 15px;
    color: #1e293b;
    transition: all 0.3s ease;
    outline: none;
    display: block;
}

/* Odaklanınca (Focus) parlayan yeşil çerçeve */
input:focus, textarea:focus {
    border-color: #2cc76a;
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(44, 199, 106, 0.1);
}

textarea {
    resize: vertical; /* Sadece dikey büyütülebilsin */
    min-height: 120px;
}

label {
    display: block;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 8px;
    color: #334155;
}
/* Ana Buton İskeleti */
button, .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
    gap: 10px;
}

/* Yeşil (Ana İşlem) Butonu */
.btn-primary {
    background: linear-gradient(135deg, #2cc76a 0%, #1eb45a 100%);
    color: white !important;
    box-shadow: 0 10px 20px rgba(44, 199, 106, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(44, 199, 106, 0.3);
}

/* Outline (Şeffaf) Buton */
.btn-outline {
    background: transparent;
    border: 2px solid #e2e8f0;
    color: #475569 !important;
}

.btn-outline:hover {
    border-color: #2cc76a;
    color: #2cc76a !important;
}



/* Hızlı Grid sistemi */
.row-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

/* Yazı hizalamaları */
.text-center { text-align: center; }
.text-right { text-align: right; }
.mt-50 { margin-top: 50px; }
.mb-30 { margin-bottom: 30px; }

/* Mobilde görsellerin taşmaması için */
img {
    max-width: 100%;
    height: auto;
    display: block;
}
.premium-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    padding: 20px 0;
    transition: all 0.4s ease;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Sayfa aşağı kayınca aktifleşen sınıf */
.premium-nav.scrolled {
    padding: 12px 0;
    background: var(--nav-scrolled);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
/* Logo */
.nav-logo img {
    height: 45px;
    width: auto;
    transition: 0.3s;
}

/* Menü Listesi */
.nav-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 0;
    padding: 0;
}

.nav-list > li > a {
    text-decoration: none !important;
    color: var(--nav-text);
    font-weight: 700;
    font-size: 14px;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Scrolled durumunda yazı rengi değişimi */
.premium-nav.scrolled .nav-list > li > a {
    color: var(--nav-text-dark);
}

.nav-list > li.active > a, 
.nav-list > li > a:hover {
    color: var(--nav-accent) !important;
}
/* Ana Kapsayıcı */
.has-dropdown { 
    position: relative; 
}

/* Dropdown Tasarımı */
.dropdown-content {
    position: absolute;
    top: 150%;
    /* Ortalamayı iptal edip sağa yaslıyoruz */
    right: 0; 
    left: auto; 
    transform: none; /* translateX(-50%) kaldırıldı */
    
    background: #fff;
    min-width: 220px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55); /* Daha akıcı bir efekt */
    list-style: none;
    padding: 10px 0;
    z-index: 999;
}

/* Hover Durumu */
.has-dropdown:hover .dropdown-content {
    top: 120%; /* İkonun çok dibine girmemesi için 110-120% idealdir */
    opacity: 1;
    visibility: visible;
}

/* İçerik Linkleri */
.dropdown-content li a {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    color: #333;
    font-size: 14px;
    transition: 0.2s;
}

.dropdown-content li a:hover {
    background: #f8f9fa;
    color: #009697; /* Sesli Yazılım Turkuazı */
}
.dropdown-content li a {
    padding: 10px 20px;
    display: block;
    color: #1e293b;
    text-decoration: none !important;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
}

.dropdown-content li a:hover {
    background: rgba(44, 199, 106, 0.05);
    color: var(--nav-accent);
    padding-left: 25px;
}

/* Müşteri Paneli Butonu */
.btn-client-panel {
    background: var(--nav-accent);
    color: #fff !important;
    padding: 10px 22px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(44, 199, 106, 0.3);
}

.btn-client-panel:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

/* Mobil Hamburger Menü */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: var(--nav-accent);
    border-radius: 5px;
    transition: 0.3s;
}

/* Responsive */
@media (max-width: 992px) {
    .nav-toggle { display: flex; }
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        display: none;
        padding: 20px 0;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    .nav-menu.active { display: block; }
    .nav-list { flex-direction: column; gap: 0; }
    .nav-list > li { width: 100%; text-align: center; }
    .nav-list > li > a { 
        padding: 15px; 
        color: var(--nav-text-dark) !important;
        justify-content: center;
    }
    .dropdown-content { position: static; transform: none; box-shadow: none; display: none; }
    .has-dropdown.active .dropdown-content { display: block; }
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
/* Genel Buton Yapısı (Bootstrap'tan bağımsız) */
.btn-buy, .btn-client-panel, .premium-btn-buy, .vibe-view-btn, .testi-add-btn, .submit-btn, .cta-btn-premium {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    outline: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
    gap: 10px;
}

/* 1. Ana Yeşil (Sepete Ekle & Genel Aksiyonlar) */
.btn-buy, .premium-btn-buy, .submit-btn {
    background: linear-gradient(135deg, #2cc76a 0%, #1eb45a 100%);
    color: #ffffff !important;
    box-shadow: 0 10px 20px rgba(44, 199, 106, 0.2);
}

.btn-buy:hover, .premium-btn-buy:hover, .submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(44, 199, 106, 0.3);
    filter: brightness(1.1);
}

/* 2. Popüler / Turkuaz Butonlar */
.popular-btn, .vibe-view-btn {
    background: linear-gradient(135deg, #009999 0%, #007a7a 100%);
    color: #ffffff !important;
    box-shadow: 0 10px 20px rgba(0, 153, 153, 0.2);
}

.popular-btn:hover, .vibe-view-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 153, 153, 0.3);
}

/* 3. Şeffaf / Outline Butonlar (Hakkımızda & Görüş Bildir) */
.btn-outline-white, .testi-add-btn {
    background: transparent;
    border: 2px solid #e2e8f0;
    color: #1e293b !important;
}

.testi-add-btn:hover {
    border-color: #2cc76a;
    color: #2cc76a !important;
    background: rgba(44, 199, 106, 0.05);
}

/* 4. Beyaz Premium Butonlar (CTA Alanları İçin) */
.cta-btn-premium {
    background: #ffffff;
    color: #0f172a !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.cta-btn-premium:hover {
    background: #2cc76a;
    color: #ffffff !important;
}

/* 5. Navigasyon / Müşteri Paneli */
.btn-client-panel {
    background: #2cc76a;
    color: #ffffff !important;
    padding: 8px 20px;
}
/* Görüş Bildir Butonu Özel Tasarımı */
.testi-add-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: transparent; /* Başlangıçta şeffaf */
    color: #1e293b !important; /* Koyu lacivert yazı */
    border: 2px solid #e2e8f0; /* Soft gri çerçeve */
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none !important;
    outline: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Üzerine Gelindiğinde (Hover) */
.testi-add-btn:hover {
    background-color: #2cc76a; /* Temandaki yeşil */
    border-color: #2cc76a;
    color: #ffffff !important; /* Yazı beyaza döner */
    transform: translateY(-3px); /* Hafif yukarı zıplama */
    box-shadow: 0 10px 20px rgba(44, 199, 106, 0.2); /* Yeşil parlama efekti */
}

/* Butonun içindeki ikon için küçük bir ayar */
.testi-add-btn i {
    font-size: 18px;
    transition: transform 0.4s ease;
}

.testi-add-btn:hover i {
    transform: rotate(90deg); /* Artı ikonu döner, şık bir detay */
}

.premium-hero-area-2 {
    position: relative;
    padding: 0px 0 120px;
    background: url('../images/header-bg.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    overflow: hidden;
    display: flex;
    align-items: center;
}


.premium-hero-area {
    position: relative;
    padding: 160px 0 120px;
    /* Eski arka plan görselini buraya ekliyoruz */
    background: url('../images/header-bg.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed; /* Görselin scroll ederken sabit kalmasını sağlar (Parallax efekti) */
    overflow: hidden;
    min-height: 700px;
    display: flex;
	color:#fff;
    align-items: center;
}

/* Görselin üzerine karanlık ve modern bir katman */
.premium-hero-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Soldan sağa hafif koyulaşan, yazıları öne çıkaran degrade */
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.7) 100%);
    z-index: 1;
}
.hero-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2; /* Arka plan katmanının üstünde olması için */
}
.hero-title {
    font-size: 56px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -1px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8); /* Hafif şeffaf beyaz */
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}
.hero-glow {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(44, 199, 106, 0.15) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 1; /* Arka plan görselinin üstünde, içeriğin altında */
}

/* Arka plan ışık efekti */
.hero-glow {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(44, 199, 106, 0.08) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 0;
}
.main-slider { overflow: hidden; width: 100%; }
.slider-wrapper { display: flex; transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1); }
.hero-slide { min-width: 100%; }

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Görsel Stili */
.hero-visual {
    margin-bottom: 40px;
    animation: float 4s ease-in-out infinite;
}

.hero-visual img {
    height: 220px;
    width: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.1));
}

/* Butonlar */
.hero-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.hero-btn-primary {
    background: var(--hero-primary);
    color: #fff !important;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none !important;
    box-shadow: 0 10px 25px rgba(44, 199, 106, 0.3);
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-btn-outline {
    background: #fff;
    color: var(--hero-dark) !important;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none !important;
    border: 2px solid #e2e8f0;
    transition: 0.3s;
}

.hero-btn-primary:hover { transform: translateY(-3px); filter: brightness(1.1); }
.hero-btn-outline:hover { border-color: var(--hero-primary); color: var(--hero-primary) !important; }

/* Dotlar */
.hero-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.h-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e2e8f0;
    cursor: pointer;
    transition: 0.3s;
}

.h-dot.active {
    background: var(--hero-primary);
    width: 30px;
    border-radius: 10px;
}

/* Uçma Animasyonu */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@media (max-width: 768px) {
    .hero-title { font-size: 36px; }
    .hero-btns { flex-direction: column; align-items: center; }
    .hero-btn-primary, .hero-btn-outline { width: 100%; max-width: 300px; }
}
/* Footer Link Listesi Temizliği */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px; /* Linkler arası boşluk */
    transition: all 0.3s ease;
}

/* Linklerin Genel Görünümü */
.footer-links li a {
    color: #94a3b8; /* Soft gri renk */
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none !important;
    position: relative;
    display: inline-block;
    padding: 2px 0;
    transition: color 0.3s ease;
}

/* Hover Durumu: Yazı Rengi Değişimi */
.footer-links li a:hover {
    color: #2cc76a; /* Senin yeşil tonun */
}

/* Modern Alt Çizgi Animasyonu */
.footer-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0; /* Başlangıçta genişlik sıfır */
    height: 2px;
    background-color: #2cc76a;
    transition: width 0.3s ease;
}

.footer-links li a:hover::after {
    width: 100%; /* Üzerine gelince çizgi boydan boya uzar */
}

/* Küçük Ok/İkon Efekti (Opsiyonel: Başına ufak bir işaret ekler) */
.footer-links li a::before {
    content: '\F0142'; /* MDI Chevron Right (Eğer Material Design Icons yüklüyse) */
    font-family: "Material Design Icons";
    display: inline-block;
    margin-right: 8px;
    font-size: 14px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    color: #2cc76a;
}

.footer-links li:hover a::before {
    opacity: 1;
    transform: translateX(0);
}

/* Mobilde tıklama alanını genişletmek için */
@media (max-width: 768px) {
    .footer-links li {
        text-align: center;
        margin-bottom: 15px;
    }
}
/* Footer İletişim Listesi */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start; /* İkon ve metni üstten hizalar */
    gap: 15px; /* İkon ve metin arası boşluk */
    margin-bottom: 20px;
    color: #94a3b8; /* Yazı rengi */
    font-size: 15px;
    line-height: 1.4;
    transition: all 0.3s ease;
}

/* İkon Kutusu ve Stili */
.footer-contact li i {
    width: 36px;
    height: 36px;
    background: rgba(44, 199, 106, 0.1); /* Hafif yeşil arka plan */
    color: #2cc76a; /* Senin yeşil tonun */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px; /* Modern kavisli köşeler */
    font-size: 18px;
    transition: all 0.3s ease;
    flex-shrink: 0; /* İkonun daralmasını engeller */
}

/* Hover Efekti: İkon parlar ve hafifçe yukarı çıkar */
.footer-contact li:hover {
    color: #ffffff; /* Üzerine gelince metin beyazlaşır */
}

.footer-contact li:hover i {
    background: #2cc76a;
    color: #ffffff;
    transform: translateY(-3px) rotate(5deg);
    box-shadow: 0 5px 15px rgba(44, 199, 106, 0.3);
}

/* Linkler için özel ayar (Eğer mail veya telefon linkliyse) */
.footer-contact li a {
    color: inherit;
    text-decoration: none !important;
}

/* Mobilde Hizalama */
@media (max-width: 768px) {
    .footer-contact li {
        justify-content: center; /* Mobilde ortalı durması için */
        text-align: left;
    }
}
.footer-title {
    position: relative;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: #ffffff; /* Footer genelde koyu olduğu için başlık beyaz */
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 30px;
    display: inline-block; /* Çizginin başlık genişliğine göre ayarlanması için */
}

/* Başlığın altındaki dekoratif şerit */
.footer-title::after {
    content: '';
    position: absolute;
    bottom: -10px; /* Yazıdan biraz aşağıda */
    left: 0;
    width: 35px; /* Kısa ve modern bir çizgi */
    height: 3px;
    background: linear-gradient(90deg, #2cc76a, #009999);
    border-radius: 10px;
    transition: width 0.4s ease;
}

/* Bölümün üzerine gelindiğinde çizgi hafifçe uzasın */
.footer-title:hover::after {
    width: 55px;
}

/* Küçük bir glow (parlama) etkisi */
.footer-title {
    text-shadow: 0 0 15px rgba(44, 199, 106, 0.1);
}
.footer-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    line-height: 1.8; /* Okunabilirliği artıran ferah satır aralığı */
    color: #94a3b8; /* Göz yormayan modern slate gri */
    margin-top: 20px;
    margin-bottom: 25px;
    max-width: 320px; /* Metnin çok yayılıp görseli bozmasını engeller */
}

/* Metin içindeki önemli vurgular için (Opsiyonel) */
.footer-text strong {
    color: #ffffff;
    font-weight: 600;
}
.footer-newsletter-info {
    margin-bottom: 20px;
}

.footer-newsletter-info p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #94a3b8; /* Diğer footer metinleriyle uyumlu soft gri */
    margin: 0;
    position: relative;
    padding-left: 0;
}

/* Metnin yanına veya üstüne küçük bir vurgu çizgisi (opsiyonel) */
.footer-newsletter-info p::before {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background: #2cc76a;
    margin-bottom: 10px;
    border-radius: 10px;
}

/* Metin içindeki kelimeleri vurgulamak istersen */
.footer-newsletter-info p span {
    color: #ffffff;
    font-weight: 700;
}
/* Ana Kutu: Arka planı footer rengine sabitliyoruz */
.footer-bottom-advanced {
    position: relative;
    padding: 50px 0 30px;
    background: #0f172a; /* Footer ana rengin */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* İçerik Taşıyıcı: Esnek yapı */
.footer-bottom-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-wrap: wrap; /* Mobilde alt alta gelmesi için */
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

/* ORTA: Ödeme Sağlayıcıları */
.payment-providers-block {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.payment-title {
    font-size: 11px;
    font-weight: 800;
    color: #64748b;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.payment-logos {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.payment-logos img {
    height: 25px;
    width: auto;
    filter: grayscale(100%) brightness(1.8); /* Koyu zeminde görünmesi için */
    opacity: 0.5;
    transition: 0.3s;
}

.payment-logos img:hover {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
}

/* SAĞ: Copyright ve Yasal Linkler */
.copyright-legal-block {
    text-align: right;
}

.copyright-legal-block p {
    font-size: 14px;
    color: #94a3b8;
    margin: 0 0 8px 0;
}

.copyright-legal-block strong {
    color: #2cc76a; /* Marka yeşilin */
}

.footer-legal {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.footer-legal a {
    font-size: 13px;
    color: #64748b;
    text-decoration: none !important;
    transition: 0.3s;
}

.footer-legal a:hover {
    color: #ffffff;
}

/* SOL: Sabit İletişim Butonları (Yanda Asılı) */
.fixed-contact-side {
    position: fixed;
    left: 25px;
    bottom: 120px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white !important;
    font-size: 22px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: 0.3s;
}

.magic-icon { background: #1e293b; border: 1px solid rgba(255,255,255,0.1); }
.message-icon { background: #0284c7; }
.whatsapp-icon { background: #22c55e; }

.contact-icon:hover { transform: scale(1.1) rotate(5deg); }

/* SAĞ ALT: Yukarı Çık Butonu */
.back-to-top-btn {
    position: fixed;
    right: 25px;
    bottom: 30px;
    width: 50px;
    border-radius: 50%;
    background: #1e293b;
    color: white;
    border: 1px solid rgba(255,255,255,0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    z-index: 999;
    transition: 0.3s;
    /* Başlangıçta görünmesi için (JS ile kontrol ediyorsan class eklersin) */
}

.back-to-top-btn:hover {
    background: #2cc76a;
    border-color: #2cc76a;
    transform: translateY(-5px);
}

/* Mobil Düzenleme */
@media (max-width: 768px) {
    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
    }
    .copyright-legal-block, .footer-legal {
        text-align: center;
        justify-content: center;
    }
    .fixed-contact-side {
        left: 15px;
        bottom: 100px;
    }
    .contact-icon { width: 40px; height: 40px; font-size: 18px; }
}
.domain-wrapper {border-radius: 20px; box-shadow: 0 15px 40px rgba(0,0,0,0.05); text-align: center; }
.domain-title { font-weight: 700; color: #333; margin-bottom: 30px; }

.search-box-new { display: flex; max-width: 700px; margin: 0 auto 30px;border: 2px solid #eee; border-radius: 50px; padding: 6px; }
.search-box-new input { flex: 1; border: none; padding: 12px 25px; outline: none; font-size: 16px; border-radius: 50px; }
.search-box-new button { background: #009697; color: #fff; border: none; padding: 12px 40px; border-radius: 50px; font-weight: 600; cursor: pointer; transition: 0.3s; }
.search-box-new button:hover { background: #007a7b; }

.res-box { margin: 20px auto; max-width: 700px; padding: 15px 25px; border-radius: 10px; display: flex; justify-content: space-between; align-items: center; animation: fadeIn 0.5s; }
.res-success { background: #e8f5e9; color: #2e7d32; border: 1px solid #c8e6c9; }
.res-danger { background: #ffebee; color: #c62828; border: 1px solid #ffcdd2; }

.btn-buy { background: #2e7d32; color: #fff; padding: 8px 20px; border-radius: 5px; text-decoration: none; font-weight: 600; }
.btn-whois { background: #1976d2; color: #fff; border: none; padding: 8px 20px; border-radius: 5px; cursor: pointer; }

.domain-prices-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 15px; margin-top: 40px; }
.price-card { padding: 15px;  border: 1px solid #eee; border-radius: 10px; transition: 0.3s; }
.price-card:hover { transform: translateY(-5px); border-color: #009697; }
.price-card .ext { display: block; font-weight: 700; font-size: 18px; color: #009697; }
.price-card .price { color: #666; font-size: 14px; }

/* Modal */
.custom-modal { display: none; position: fixed; z-index: 9999; left: 0; top: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); backdrop-filter: blur(5px); }
.modal-content {margin: 5% auto; padding: 30px; width: 90%; max-width: 700px; border-radius: 15px; position: relative; max-height: 80vh; overflow-y: auto; }
.close-modal { position: absolute; right: 20px; top: 15px; font-size: 30px; cursor: pointer; }
#whoisContent { text-align: left; background: #222; color: #0f0; padding: 20px; border-radius: 10px; font-family: monospace; white-space: pre-wrap; font-size: 12px; margin-top: 20px; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }


/* Mobil Uyumluluk Ayarları */
@media (max-width: 768px) {
    .search-box-new {
        flex-direction: column; /* Mobilde input ve butonu alt alta getirir */
        border-radius: 20px;    /* Kenarları biraz daha karemsi yapar (isteğe bağlı) */
        background: transparent; /* Arka planı mobilde temizle */
        border: none;           /* Dış çerçeveyi kaldır */
        gap: 10px;              /* Aralarına boşluk ekle */
    }

    .search-box-new input {
        border: 2px solid #eee; /* Inputa kendi çerçevesini ver */
        width: 100%;
        padding: 15px;
        text-align: center;
    }

    .search-box-new button {
        width: 100%;            /* Butonu tam genişlik yap */
        padding: 15px;
        border-radius: 50px;    /* Yuvarlaklığı koru */
    }

    .res-box {
        flex-direction: column; /* Sonuç kutusunu da mobilde alt alta getir */
        gap: 15px;
        text-align: center;
    }
    
    .domain-prices-grid {
        grid-template-columns: repeat(2, 1fr); /* Mobilde fiyatları 2'li sıra yap */
    }
}
   :root {
        --primary-green: #2cc76a;
        --deep-green: #1eb45a;
        --bg-gradient: linear-gradient(135deg, #2cc76a 0%, #1eb45a 100%);
        
        --text-dark: #0f172a;
        --text-muted: #64748b;
    }

    .hosting-features-section {
        padding: 120px 0;
        background-color: var(--soft-bg);
        background-image: 
            radial-gradient(at 0% 0%, rgba(44, 199, 106, 0.08) 0, transparent 50%), 
            radial-gradient(at 100% 100%, rgba(30, 180, 90, 0.08) 0, transparent 50%);
        overflow: hidden;
    }

    .hosting-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 24px;
    }

    /* Başlık Tasarımı */
    .hosting-header {
        text-align: center;
        margin-bottom: 80px;
    }

    .modern-badge {
        background: white;
        padding: 10px 24px;
        border-radius: 100px;
        font-size: 14px;
        font-weight: 700;
        color: var(--primary-green);
        box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        border: 1px solid rgba(44, 199, 106, 0.1);
    }

    .main-title {
        font-size: 48px;
        font-weight: 900;
        color: var(--text-dark);
        margin: 24px 0;
        letter-spacing: -1.5px;
    }

    .main-title span {
        color: var(--primary-green);
        background: var(--bg-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .main-subtitle {
        font-size: 19px;
        color: var(--text-muted);
        max-width: 650px;
        margin: 0 auto;
        line-height: 1.6;
    }

    /* Grid Yapısı */
    .hosting-bento-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    /* Kart Tasarımı */
    .hosting-card {
        background: white;
        padding: 40px;
        border-radius: 32px;
        border: 1px solid rgba(0,0,0,0.03);
        position: relative;
        transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
        display: flex;
        flex-direction: column;
        z-index: 1;
    }

    .hosting-card:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 30px 60px rgba(44, 199, 106, 0.1);
        border-color: rgba(44, 199, 106, 0.2);
    }

    /* İkon Stili */
    .icon-wrapper {
        position: relative;
        width: 64px;
        height: 64px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 24px;
    }

    .icon-bg {
        position: absolute;
        width: 100%;
        height: 100%;
        background: var(--bg-gradient);
        opacity: 0.1;
        border-radius: 18px;
        transition: 0.4s;
    }

    .hosting-card:hover .icon-bg {
        opacity: 1;
        transform: rotate(15deg);
    }

    .icon-wrapper i {
        font-size: 24px;
        color: var(--primary-green);
        z-index: 2;
        transition: 0.4s;
    }

    .hosting-card:hover i {
        color: white;
    }

    .card-content h3 {
        font-size: 22px;
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 12px;
    }

    .card-content p {
        font-size: 15px;
        color: var(--text-muted);
        line-height: 1.7;
    }

    /* Dekoratif Öge */
    .card-decoration {
        position: absolute;
        bottom: 20px;
        right: 20px;
        font-size: 40px;
        opacity: 0.03;
        transition: 0.4s;
    }

    .hosting-card:hover .card-decoration {
        opacity: 0.1;
        transform: scale(1.2);
    }

    /* Responsive */
    @media (max-width: 1024px) {
        .hosting-bento-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        .main-title { font-size: 38px; }
    }

    @media (max-width: 768px) {
        .hosting-bento-grid {
            grid-template-columns: 1fr;
        }
        .hosting-features-section { padding: 80px 0; }
        .hosting-card { padding: 30px; }
    }
    /* Premium Renk Paleti ve Değişkenler */
    :root {
        --primary-gradient: linear-gradient(135deg, #2cc76a 0%, #1eb45a 100%);
        --primary-color: #2cc76a;
        --popular-color: #009999;
        --popular-gradient: linear-gradient(135deg, #00c4c4 0%, #009999 100%);
        --text-dark: #0f172a;
        --text-muted: #64748b;
        --bg-glass: rgba(255, 255, 255, 0.85);
        --bg-gray: #f1f5f9;
        --shadow-premium: 0 20px 40px rgba(0,0,0,0.08);
        --border-glass: 1px solid rgba(255, 255, 255, 0.3);
    }

    .premium-pricing-section {
        padding: 100px 0;
        font-family: 'Montserrat', sans-serif;
        background-color: var(--bg-gray);
        background-image: 
            radial-gradient(at 10% 10%, rgba(44, 199, 106, 0.05) 0, transparent 40%),
            radial-gradient(at 90% 90%, rgba(0, 153, 153, 0.05) 0, transparent 40%);
    }

    .premium-pricing-container {
        max-width: 1300px;
        margin: 0 auto;
        padding: 0 24px;
    }

    /* Modern Sekme Tasarımı */
    .premium-tabs-wrapper {
        display: flex;
        justify-content: center;
        margin-bottom: 80px;
    }

 .premium-tabs {
    display: flex;
    background: #ffffff;
    padding: 6px;
    border-radius: 100px;
    position: relative; /* Indicator için gerekli */
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    width: fit-content;
    margin: 0 auto;
}

.premium-tab-btn {
    padding: 14px 30px;
    border: none;
    background: transparent;
    border-radius: 100px;
    cursor: pointer;
    font-weight: 700;
    color: #64748b; /* Pasif buton rengi (Gri) */
    transition: all 0.4s ease;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 2; /* Yazının kayan zeminin üstünde kalması için */
    outline: none;
}

/* Seçili olan butonun rengi */
.premium-tab-btn.active {
    color: #ffffff !important; /* Seçilince beyaz olsun */
}

/* Kayan Zemin (Indicator) */
.tab-indicator {
    position: absolute;
    height: calc(100% - 12px);
    width: 0; /* JS ile dinamik ayarlanacak */
    background: #34495e; /* Seçili butonun arka plan rengi */
    border-radius: 100px;
    top: 6px;
    left: 6px;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 4px 12px rgba(52, 73, 94, 0.3);
}

.premium-tab-btn:hover:not(.active) {
    color: #1eb45a; /* Üzerine gelince hafif yeşil vurgu */
}


    /* Grid Düzeni */
    .premium-pricing-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
        align-items: center;
    }

    /* Kart Tasarımı */
    .premium-pricing-card {
        border-radius: 32px;
        transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
        position: relative;
        z-index: 1;
        height: 100%;
    }

    .glass-card {
        background: var(--bg-glass);
        backdrop-filter: blur(10px);
        border: var(--border-glass);
        box-shadow: var(--shadow-premium);
    }

    .premium-card-inner {
        padding: 50px 40px;
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .premium-pricing-card:hover {
        transform: translateY(-15px) scale(1.02);
        border-color: rgba(44, 199, 106, 0.3);
    }

    /* Popüler Kart Özel Stili */
    .popular-premium {
        transform: scale(1.05);
        border: 2px solid var(--popular-color);
    }

    .popular-premium:hover {
        transform: translateY(-15px) scale(1.05);
        border-color: var(--popular-color);
    }

    .premium-popular-badge {
        position: absolute;
        top: -16px;
        left: 50%;
        transform: translateX(-50%);
        background: var(--popular-gradient);
        color: white;
        padding: 10px 25px;
        border-radius: 100px;
        font-size: 13px;
        font-weight: 800;
        box-shadow: 0 4px 15px rgba(0, 153, 153, 0.3);
        display: flex;
        align-items: center;
        gap: 6px;
        letter-spacing: 1px;
    }

    /* Header & Fiyat */
    .card-header-premium h3 {
        font-size: 26px;
        color: var(--text-dark);
        font-weight: 800;
        margin-bottom: 5px;
    }

    .package-subtitle {
        color: var(--text-muted);
        font-size: 14px;
        margin-bottom: 30px;
    }

    .premium-price-box {
        margin-bottom: 40px;
        padding: 20px;
        background: rgba(0,0,0,0.02);
        border-radius: 20px;
    }

    .period-premium {
        display: block;
        color: var(--text-muted);
        font-size: 14px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .amount-premium {
        font-size: 56px;
        font-weight: 900;
        color: var(--text-dark);
        margin-top: 5px;
        line-height: 1;
    }

    .currency {
        font-size: 24px;
        vertical-align: super;
        font-weight: 700;
        margin-right: 2px;
    }

    .decimal {
        font-size: 20px;
        font-weight: 700;
        opacity: 0.7;
    }

    /* Özellikler */
    .premium-card-features ul {
        list-style: none;
        padding: 0;
        margin: 0 0 40px 0;
        text-align: left;
    }

    .premium-feat-item {
        padding: 12px 0;
        font-size: 15px;
        color: var(--text-dark);
        display: flex;
        align-items: center;
        gap: 10px;
        border-bottom: 1px solid rgba(0,0,0,0.04);
    }

    .premium-feat-item:last-child {
        border-bottom: none;
    }

    /* MDI Tik İkonu Otomatik Ekleme */
    .premium-feat-item::before {
        content: '\F012C'; /* mdi-check */
        font-family: 'Material Design Icons';
        color: var(--primary-color);
        font-size: 18px;
        font-weight: bold;
    }

    .premium-feat-item.highlight b {
        color: #000;
        font-weight: 700;
    }

    /* Modern Buton */
    .card-footer-premium {
        margin-top: auto;
    }

    .premium-btn-buy {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        background: var(--primary-gradient);
        color: white;
        padding: 18px 30px;
        border-radius: 100px;
        text-decoration: none;
        font-weight: 800;
        font-size: 16px;
        letter-spacing: 1px;
        transition: all 0.3s;
        box-shadow: 0 6px 20px rgba(44, 199, 106, 0.3);
    }

    .popular-btn {
        background: var(--popular-gradient);
        box-shadow: 0 6px 20px rgba(0, 153, 153, 0.3);
    }

    .premium-btn-buy:hover {
        transform: translateY(-3px);
        filter: brightness(1.1);
		color:white;
		text-decoration: none;
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    }

    /* Animasyonlar */
    @keyframes fadeInPremium {
        from { opacity: 0; transform: translateY(30px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .premium-pricing-card {
        animation: fadeInPremium 0.6s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    }

    /* Responsive Ayarlar */
    @media (max-width: 1100px) {
        .premium-pricing-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        .popular-premium { transform: scale(1); }
        .popular-premium:hover { transform: translateY(-15px) scale(1); }
    }

    @media (max-width: 768px) {
        .premium-pricing-grid {
            grid-template-columns: 1fr;
        }
        .premium-tab-btn { padding: 12px 20px; font-size: 13px; }
        .main-title { font-size: 32px; }
        .premium-pricing-section { padding: 70px 0; }
    }
	/* Modern CTA Temelleri */
.modern-cta {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
}

/* Parallax ve Overlay */
.cta-parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Desktop parallax */
    transform: scale(1.1);
    z-index: -2;
}

.cta-glass-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(44, 199, 106, 0.2) 100%);
    z-index: -1;
}

/* Taşıyıcı Konfigürasyonu */
.modern-cta-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
}

.cta-info-wrapper {
    flex: 2;
    text-align: left;
}

/* Badge ve Başlık */
.cta-badge {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(44, 199, 106, 0.2);
    color: #2cc76a;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    border: 1px solid rgba(44, 199, 106, 0.3);
}

.cta-main-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.cta-main-title span {
    color: #2cc76a;
    background: linear-gradient(to right, #2cc76a, #1eb45a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-accent-line {
    width: 80px;
    height: 4px;
    background: #2cc76a;
    border-radius: 2px;
    margin-bottom: 25px;
}

.cta-description {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
}

/* Premium Buton Tasarımı */
.cta-button-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

.cta-btn-premium {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 45px;
    background: #fff;
    color: #1a2229;
    text-decoration: none;
    border-radius: 100px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    overflow: hidden;
}

.cta-btn-premium i {
    font-size: 20px;
    transition: transform 0.4s ease;
}

.cta-btn-premium:hover {
    background: #2cc76a;
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(44, 199, 106, 0.4);
}

.cta-btn-premium:hover i {
    transform: translateX(5px);
}

.cta-extra-info {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
    margin-right: 20px;
}

/* Dekoratif Işık Elementi */
.cta-visual-element {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(44, 199, 106, 0.3) 0%, transparent 70%);
    top: -150px;
    right: -100px;
    z-index: -1;
    filter: blur(50px);
}

/* RESPONSIVE DÜZENLEMELER */
@media (max-width: 1024px) {
    .modern-cta-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    .cta-info-wrapper { text-align: center; }
    .cta-accent-line { margin: 0 auto 25px; }
    .cta-button-wrapper { align-items: center; }
    .cta-main-title { font-size: 32px; }
}

@media (max-width: 768px) {
    .modern-cta { padding: 70px 0; }
    .cta-btn-premium { width: 100%; justify-content: center; }
    .cta-parallax-bg { background-attachment: scroll; } /* Mobilde stabil arka plan */
}
   @import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;600;700;800&display=swap');

    :root {
        --vibe-primary: #009999;
        --vibe-accent: #2cc76a;
        --vibe-dark: #111827;
        --vibe-gray: #6b7280;
        --vibe-radius: 20px;
    }

    .modern-software-vibe {
        padding: 100px 0;
        background: #fdfdfd;
        font-family: 'Plus Jakarta Sans', sans-serif;
    }

    .vibe-container {
        max-width: 1240px;
        margin: 0 auto;
        padding: 0 24px;
    }

    /* Kategori Etiketi (Düzeltilen Kısım) */
    .category-badge {
        position: absolute;
        top: 15px;
        left: 15px;
        z-index: 10;
        background: rgba(255, 255, 255, 0.95); /* Net görünürlük için */
        color: var(--vibe-primary);
        padding: 6px 14px;
        border-radius: 10px;
        font-size: 11px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        pointer-events: none; /* Üzerine tıklanmasın, altındaki overlay çalışsın */
    }

    .vibe-card:hover .category-badge {
        background: var(--vibe-primary);
        color: #fff;
    }

    /* Kart Yapısı */
    .vibe-card {
        background: #fff;
        border-radius: var(--vibe-radius);
        border: 1px solid #f3f4f6;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow: hidden;
    }

    .vibe-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 30px 60px -12px rgba(0,0,0,0.1);
    }

    .vibe-media {
        position: relative;
        height: 230px;
        margin: 10px;
        border-radius: 15px;
        overflow: hidden;
    }

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

    .vibe-card:hover .vibe-media img {
        transform: scale(1.1);
    }

    /* Overlay Efekti */
    .vibe-overlay {
        position: absolute;
        inset: 0;
        background: rgba(0, 20, 20, 0.4);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: 0.3s ease;
    }

    .vibe-card:hover .vibe-overlay {
        opacity: 1;
    }

    .vibe-view-btn {
        color: var(--vibe-dark);
        padding: 10px 22px;
        border-radius: 50px;
        font-weight: 700;
        font-size: 14px;
        transform: translateY(15px);
        transition: 0.4s ease;
        text-decoration: none !important;
    }

    .vibe-card:hover .vibe-view-btn {
        transform: translateY(0);
    }

    /* Body ve Alt Alan */
    .vibe-body { padding: 20px 25px 25px; }

    .vibe-body h3 {
        font-size: 17px;
        font-weight: 700;
        color: var(--vibe-dark);
        margin-bottom: 20px;
        height: 48px; /* İsimler farklı uzunluktaysa hizayı korur */
        overflow: hidden;
    }

    .vibe-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .vibe-price { display: flex; color: var(--vibe-primary); }

    .vibe-price .amount { font-size: 30px; font-weight: 800; line-height: 1; }
    .vibe-price .currency, .vibe-price .decimal { 
        font-size: 15px; 
        font-weight: 700; 
        margin: 2px 2px 0; 
    }

    .vibe-cart-btn {
        width: 44px;
        height: 44px;
        border-radius: 12px;
        border: none;
        background: #f3f4f6;
        color: var(--vibe-dark);
        cursor: pointer;
        transition: 0.3s;
    }

    .vibe-cart-btn:hover {
        background: var(--vibe-accent);
        color: #fff;
    }

    /* Diğer Elemanlar */
    .vibe-header { text-align: center; margin-bottom: 60px; }
    .vibe-badge {
        color: var(--vibe-primary);
        font-weight: 700;
        text-transform: uppercase;
        font-size: 12px;
        letter-spacing: 2px;
    }
    .vibe-title { font-size: 38px; font-weight: 800; margin: 15px 0; }
    .vibe-title span { color: var(--vibe-primary); }
    .vibe-desc { color: var(--vibe-gray); max-width: 500px; margin: 0 auto; }
    .vibe-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 30px;
    }
    .vibe-action { text-align: center; margin-top: 50px; }
    .vibe-all-btn { color: var(--vibe-gray); font-weight: 700; text-decoration: none !important; }

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

    :root {
        --testi-primary: #009999;
        --testi-dark: #1e293b;
        --testi-gray: #64748b;
        --testi-bg: #f8fafc;
        --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* Section Styles */
    .premium-testimonials { background: #fff; font-family: 'Montserrat', sans-serif; }
    .testi-container { max-width: 850px; margin: 0 auto; padding: 0 20px; }
    
    .testi-header { text-align: center; margin-bottom: 60px; }
    .testi-badge { color: var(--testi-primary); font-weight: 700; text-transform: uppercase; font-size: 12px; letter-spacing: 2px; }
    .testi-title { font-size: 38px; font-weight: 800; margin: 15px 0; color: var(--testi-dark); }
    .testi-title span { color: var(--testi-primary); }
    .testi-subtitle { color: var(--testi-gray); margin-bottom: 30px; }

    .testi-add-btn { 
        background: #fff; border: 2px solid #e2e8f0; padding: 12px 30px; border-radius: 50px; 
        font-weight: 700; color: var(--testi-dark); cursor: pointer; transition: var(--transition);
        display: inline-flex; align-items: center; gap: 8px;
    }
    .testi-add-btn:hover { border-color: var(--testi-primary); color: var(--testi-primary); transform: translateY(-3px); }

    /* Card Styles */
    .testi-content-card { 
        background: var(--testi-bg); padding: 50px; border-radius: 24px; position: relative;
        box-shadow: 0 10px 30px rgba(0,0,0,0.02); overflow: hidden;
    }
    .quote-icon-bg { 
        position: absolute; top: -10px; right: 20px; font-size: 100px; 
        color: rgba(0, 153, 153, 0.05); z-index: 0; 
    }
    .testi-text { font-size: 18px; line-height: 1.8; color: var(--testi-text); font-style: italic; position: relative; z-index: 1; }
    .testi-arrow { 
        position: absolute; bottom: -12px; left: 60px; width: 24px; height: 24px; 
        background: var(--testi-bg); transform: rotate(45deg); 
    }

    .testi-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 35px; padding: 0 10px; }
    .testi-user { display: flex; align-items: center; gap: 15px; }
    .testi-avatar { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; border: 3px solid #fff; box-shadow: 0 5px 15px rgba(0,0,0,0.08); }
    .testi-user-info h4 { margin: 0; font-size: 17px; color: var(--testi-dark); }
    .testi-user-info span { font-size: 13px; color: var(--testi-primary); font-weight: 600; }

    .nav-dot { width: 10px; height: 10px; border-radius: 50%; border: none; background: #cbd5e1; margin-left: 8px; cursor: pointer; }
    .nav-dot.active { background: var(--testi-primary); width: 22px; border-radius: 10px; }

    /* Modal Styles */
    .modal-overlay {
        position: fixed; top: 0; left: 0; width: 100%; height: 100%;
        background: rgba(15, 23, 42, 0.6); backdrop-filter: blur(5px);
        display: none; align-items: center; justify-content: center; z-index: 9999;
    }
    .modal-overlay.active { display: flex; animation: fadeIn 0.3s ease; }
    
    .modal-card {
        background: #fff; width: 100%; max-width: 500px; padding: 40px;
        border-radius: 24px; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
        position: relative; transform: translateY(20px); transition: var(--transition);
    }
    .modal-overlay.active .modal-card { transform: translateY(0); }

    .modal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 25px; }
    .modal-header h3 { margin: 0; font-size: 22px; color: var(--testi-dark); }
    .close-btn { background: none; border: none; font-size: 30px; cursor: pointer; color: var(--testi-gray); }

    .modal-form .input-group { margin-bottom: 20px; }
    .modal-form label { display: block; font-size: 14px; font-weight: 700; margin-bottom: 8px; color: var(--testi-dark); }
    .modal-form input, .modal-form textarea {
        width: 100%; padding: 12px 16px; border: 2px solid #f1f5f9; border-radius: 12px;
        font-family: inherit; font-size: 15px; transition: var(--transition); box-sizing: border-box;
    }
    .modal-form input:focus, .modal-form textarea:focus { border-color: var(--testi-primary); outline: none; background: #fcfdfd; }

    .submit-btn {
        width: 100%; padding: 15px; background: var(--testi-primary); color: #fff;
        border: none; border-radius: 12px; font-weight: 700; font-size: 16px;
        cursor: pointer; transition: var(--transition); display: flex; align-items: center; justify-content: center; gap: 10px;
    }
    .submit-btn:hover { filter: brightness(1.1); transform: translateY(-2px); }

    @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

    @media (max-width: 600px) {
        .modal-card { padding: 30px; margin: 15px; }
        .testi-footer { flex-direction: column; gap: 20px; text-align: center; }
    }
    .testi-slider-viewport { overflow: hidden; width: 100%; position: relative; }
    .testi-slider-track { display: flex; transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1); width: 100%; }
    .testi-slide { min-width: 100%; box-sizing: border-box; padding: 10px; }
    .testi-nav-wrapper { display: flex; justify-content: center; margin-top: 20px; }

    /* Modal Textarea ve Genişlik Düzeltmeleri */
    .modal-card { max-width: 600px !important; width: 90% !important; }
    .input-row { display: flex; gap: 15px; margin-bottom: 20px; }
    .input-row .input-group { flex: 1; }
    .full-width { width: 100%; }
    .modal-form textarea { width: 100%; resize: vertical; display: block; box-sizing: border-box; }
    
    /* reCAPTCHA Tasarımı */
    .captcha-container { margin-bottom: 20px; display: flex; justify-content: center; }
	/* Captcha Ana Kapsayıcı */
.captcha-custom-wrapper {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    align-items: center; /* Modalın ortasına hizalar */
    justify-content: center;
    width: 100%;
}

.captcha-custom-wrapper label {
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
    color: #444;
}

/* Esnek Satır Yapısı */
.captcha-flex-row {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    background: rgba(0, 150, 151, 0.05); /* Çok hafif turkuaz arka plan */
    padding: 10px 20px;
    border-radius: 12px;
    border: 1px dashed rgba(0, 150, 151, 0.3);
}

/* Resim ve Yenileme Butonu Kutusu */
.captcha-img-box {
    position: relative;
    display: flex;
    align-items: center;
}

.captcha-img-box img {
    height: 40px;
    width: 110px;
    border-radius: 6px;
    background: #fff;
    border: 1px solid #eee;
    object-fit: cover;
}

/* Yenileme Butonu */
.captcha-refresh-btn {
    background: #009697;
    color: #fff !important;
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-left: -14px; /* Resmin üzerine hafif bindirme yapar */
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0, 150, 151, 0.3);
    transition: all 0.3s ease;
}

.captcha-refresh-btn:hover {
    transform: rotate(180deg);
    background: #333;
}

.captcha-refresh-btn i {
    font-size: 16px;
}

/* Giriş Kutusu (Input) */
.captcha-input {
    width: 90px !important;
    height: 40px !important;
    text-align: center;
    font-size: 18px !important;
    font-weight: 700 !important;
    letter-spacing: 2px;
    border: 2px solid #eee !important;
    border-radius: 8px !important;
    color: #009697;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.captcha-input:focus {
    border-color: #009697 !important;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(0, 150, 151, 0.1);
}

/* Mobil Düzenleme */
@media (max-width: 480px) {
    .captcha-flex-row {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    
    .captcha-input {
        width: 100% !important;
    }
}
:root {
    --primary-green: #2cc76a;
    --deep-blue: #0f172a;
    --text-soft: #64748b;
    --panel-bg: #ffffff;
}

.hybrid-news-section {
    padding: 100px 0;
    background: #f8fafc;
    font-family: 'Montserrat', sans-serif;
}

.hybrid-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

.hybrid-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
}

.hybrid-panel {
    background: var(--panel-bg);
    border-radius: 30px;
    padding: 35px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.02);
    overflow: hidden;
}

.panel-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.panel-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.panel-icon {
    width: 45px;
    height: 45px;
    background: rgba(44, 199, 106, 0.1);
    color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 22px;
}

.icon-alt { background: rgba(15, 23, 42, 0.05); color: var(--deep-blue); }

.panel-info h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--deep-blue);
    margin: 0;
}

/* Slider Yapısı */
.panel-slider { overflow: hidden; width: 100%; }
.slider-track { display: flex; transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1); }
.slide-item { min-width: 100%; display: flex; gap: 25px; align-items: center; }

.slide-image {
    position: relative;
    flex: 0 0 180px;
    height: 140px;
    border-radius: 20px;
    overflow: hidden;
}

.slide-image img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.slide-item:hover img { transform: scale(1.1); }

.date-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(5px);
    color: var(--deep-blue);
    font-size: 9px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 6px;
}

.slide-info h4 {
    font-size: 17px;
    color: var(--primary-green);
    font-weight: 700;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.slide-info p {
    font-size: 13px;
    color: var(--text-soft);
    line-height: 1.6;
    margin-bottom: 15px;
}

.panel-link {
    font-size: 12px;
    font-weight: 800;
    color: var(--deep-blue);
    text-decoration: none !important;
    display: flex;
    align-items: center;
    gap: 5px;
}

.panel-link:hover { color: var(--primary-green); }

/* Dots */
.p-dot {
    width: 8px;
    height: 8px;
    background: #e2e8f0;
    border-radius: 50%;
    display: inline-block;
    margin-left: 6px;
    cursor: pointer;
    transition: 0.3s;
}
.p-dot.active { background: var(--primary-green); width: 22px; border-radius: 10px; }

@media (max-width: 768px) {
    .hybrid-grid { grid-template-columns: 1fr; }
    .slide-item { flex-direction: column; text-align: center; }
    .slide-image { flex: 0 0 auto; width: 100%; height: 200px; }
}
   :root {
        --s-primary: #009999;
        --s-accent: #2cc76a;
        --s-dark: #0f172a;
        --s-gray: #64748b;
        --s-glass: rgba(255, 255, 255, 0.9);
    }

    .modern-stats {
        background: #fcfdfe;
        font-family: 'Plus Jakarta Sans', 'Montserrat', sans-serif;
        overflow: hidden;
    }

    .stats-container {
        max-width: 1240px;
        margin: 0 auto;
        padding: 0 24px;
    }

    .stats-header {
        text-align: center;
        margin-bottom: 70px;
    }

    .stats-badge {
        background: rgba(0, 153, 153, 0.08);
        color: var(--s-primary);
        padding: 8px 18px;
        border-radius: 50px;
        font-size: 13px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .stats-title {
        font-size: 42px;
        font-weight: 800;
        color: var(--s-dark);
        margin: 20px 0;
    }

    .stats-title span {
        color: var(--s-primary);
        background: linear-gradient(135deg, #009999, #2cc76a);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .stats-desc {
        color: var(--s-gray);
        font-size: 18px;
    }

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 30px;
    }

    /* Bento Glass Card */
    .stat-glass-card {
        background: var(--s-glass);
        padding: 50px 30px;
        border-radius: 30px;
        border: 1px solid rgba(0, 153, 153, 0.05);
        text-align: center;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 30px -10px rgba(0,0,0,0.05);
        position: relative;
    }

    .stat-glass-card:hover {
        transform: translateY(-10px);
        border-color: rgba(0, 153, 153, 0.2);
        box-shadow: 0 20px 40px -10px rgba(0, 153, 153, 0.1);
    }

    .stat-visual {
        position: relative;
        width: 60px;
        height: 60px;
        margin: 0 auto 25px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .stat-visual i {
        font-size: 36px;
        color: var(--s-primary);
        z-index: 2;
    }

    .stat-glow {
        position: absolute;
        width: 100%;
        height: 100%;
        background: var(--s-primary);
        filter: blur(20px);
        opacity: 0.15;
        transition: 0.4s;
    }

    .stat-glass-card:hover .stat-glow {
        opacity: 0.4;
        transform: scale(1.5);
    }

    .counter-box {
        display: flex;
        justify-content: center;
        align-items: center;
        color: var(--s-dark);
        gap: 2px;
    }

    .counter {
        font-size: 48px;
        font-weight: 800;
        letter-spacing: -1px;
    }

    .plus {
        font-size: 28px;
        font-weight: 700;
        color: var(--s-primary);
    }

    .stat-data p {
        color: var(--s-gray);
        font-weight: 600;
        font-size: 15px;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-top: 5px;
    }

    @media (max-width: 768px) {
        .stats-title { font-size: 32px; }
        .counter { font-size: 38px; }
    }
	
:root {
    --f-bg: #0f172a;
    --f-text: #94a3b8;
    --f-white: #ffffff;
    --f-primary: #2cc76a; /* Temandaki yeşil tonu */
}

.premium-footer {
    background-color: var(--f-bg);
    padding: 80px 0 30px;
    font-family: 'Montserrat', sans-serif;
    color: var(--f-text);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

/* Logo ve Hakkında */
.footer-logo {
    color: var(--f-white);
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
}

.footer-logo span {
    color: var(--f-primary);
}

.footer-about {
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 14px;
}

/* Sosyal Medya */
.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--f-white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: 0.3s;
    font-size: 18px;
    text-decoration: none !important;
}

.footer-socials a:hover {
    background: var(--f-primary);
    transform: translateY(-3px);
}

/* Link Başlıkları ve Listeler */
.footer-grid h3 {
    color: var(--f-white);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
}

.footer-grid h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--f-primary);
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links ul li a {
    color: var(--f-text);
    text-decoration: none !important;
    font-size: 14px;
    transition: 0.3s;
}

.footer-links ul li a:hover {
    color: var(--f-primary);
    padding-left: 5px;
}

/* İletişim */
.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 14px;
}

.contact-item i {
    color: var(--f-primary);
    font-size: 18px;
}

/* Alt Bar */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

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

@media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }
}
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-btn {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 10px; /* Modern karemsi yuvarlaklık */
    color: #fff !important;
    font-size: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

/* Hover Efektleri */
.social-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Her platform için marka rengi vurgusu (Opsiyonel) */
.social-btn.fb:hover { background: #3b5998; }
.social-btn.tw:hover { background: #1da1f2; }
.social-btn.ig:hover { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%); }
.social-btn.in:hover { background: #0077b5; }
.social-btn.yt:hover { background: #ff0000; }

/* Sesli Yazılım Özel: Hepsini kurumsal turkuaz yapmak istersen bu kodu kullan: */
/*
.social-btn:hover {
    background: #009697 !important;
}
*/

/* İkon Animasyonu */
.social-btn i {
    z-index: 2;
    transition: transform 0.3s ease;
}

.social-btn:hover i {
    transform: scale(1.2);
}
.newsletter-captcha {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    background: rgba(255, 255, 255, 0.05);
    padding: 5px;
    border-radius: 8px;
}

.newsletter-captcha img {
    height: 30px;
    border-radius: 4px;
}

.newsletter-captcha input {
    width: 60px !important;
    height: 30px !important;
    padding: 0 !important;
    text-align: center;
    font-size: 14px !important;
    text-transform: uppercase;
}

.newsletter-captcha button {
    background: none !important;
    border: none !important;
    color: #009697 !important;
    cursor: pointer;
    padding: 0 5px !important;
}
/* Kapsayıcı Düzeni */
.newsletter-input-group {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 5px;
    transition: all 0.3s ease;
}

.newsletter-input-group:focus-within {
    border-color: #009697;
    box-shadow: 0 0 15px rgba(0, 150, 151, 0.2);
}

/* Giriş Alanı */
.newsletter-input-group input {
    flex: 1;
    background: transparent;
    border: none;
    color: #fff;
    padding: 10px 15px;
    outline: none;
}

/* Gönder Butonu */
.newsletter-input-group button[name="abone_ol"] {
    background: #009697;
    color: #fff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

/* İkon Efekti */
.newsletter-input-group button[name="abone_ol"] i {
    font-size: 20px;
    transition: all 0.4s ease;
}

/* Hover (Üzerine Gelince) Animasyonu */
.newsletter-input-group button[name="abone_ol"]:hover {
    background: #007a7b;
    transform: scale(1.05);
}

.newsletter-input-group button[name="abone_ol"]:hover i {
    transform: translateX(20px) translateY(-20px);
    opacity: 0;
}

/* İkonun Alttan Tekrar Gelmesi (Uçak Efekti) */
.newsletter-input-group button[name="abone_ol"]::after {
    content: "\F048A"; /* MDI Send ikonu */
    font-family: "Material Design Icons";
    position: absolute;
    left: -20px;
    bottom: -20px;
    font-size: 18px;
    transition: all 0.4s ease;
    opacity: 0;
}

.newsletter-input-group button[name="abone_ol"]:hover::after {
    left: 13px;
    bottom: 12px;
    opacity: 1;
}

/* Tıklama Efekti */
.newsletter-input-group button[name="abone_ol"]:active {
    transform: scale(0.9);
}
.quote-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #333;
  color: white;
  border-radius: 50%; /* Circle shape */
  font-family: serif;
  font-size: 30px;
}
.dropdown-content li a i {
    margin-right: 8px;
    color: #009697; /* Kurumsal Turkuaz */
    font-size: 16px;
    vertical-align: middle;
}
/* Sepet İkonu ve Sayacı */
.btn-cart {
    position: relative;
    font-size: 24px;
    color: #333;
    padding: 10px;
}

.cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background: #009697; /* Sesli Yazılım Turkuazı */
    color: #fff;
    font-size: 11px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Dropdown İçeriği */
.cart-content {
    width: 320px !important;
    padding: 15px !important;
    right: 0;
    left: auto !important;
    border-top: 3px solid #009697 !important;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.cart-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 6px;
}

.cart-item-info {
    flex: 1;
}

.cart-item-title {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.cart-item-price {
    font-size: 13px;
    color: #009697;
}

.cart-item-remove {
    color: #ff4d4d;
    transition: 0.3s;
}

.cart-item-remove:hover {
    transform: scale(1.2);
}

/* Sepet Alt Kısmı */
.cart-total {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    font-size: 16px;
}

.cart-buttons {
    display: flex;
    gap: 10px;
}

.btn-go-cart, .btn-checkout {
    flex: 1;
    text-align: center;
    padding: 8px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: bold;
    transition: 0.3s;
}

.btn-go-cart { background: #f4f4f4; color: #333; }
.btn-checkout { background: #009697; color: #fff; }

.empty-cart {
    text-align: center;
    padding: 20px 0;
}

.empty-cart i { font-size: 48px; color: #ccc; }
:root {
    --p-green: #2cc76a;
    --p-teal: #009999;
    --p-dark: #0f172a;
    --p-border: rgba(44, 199, 106, 0.15);
}

.premium-tech-stack {
    position: relative;
    background: #ffffff;
    overflow: hidden;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Üstten hafif sızan yeşil ışık */
.tech-glow-top {
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 300px;
    background: radial-gradient(circle, rgba(44, 199, 106, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.premium-tech-container {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Modern Header */
.premium-tech-header {
    text-align: center;
    margin-bottom: 80px;
}

.glass-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(44, 199, 106, 0.05);
    border: 1px solid var(--p-border);
    color: var(--p-green);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.premium-tech-title {
    font-size: 44px;
    font-weight: 800;
    color: var(--p-dark);
    line-height: 1.2;
}

.premium-tech-title span {
    background: linear-gradient(90deg, var(--p-teal), var(--p-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.premium-tech-desc {
    color: #64748b;
    font-size: 18px;
    margin-top: 15px;
}

/* Marquee Sistemi */
.premium-marquee-area {
    position: relative;
    width: 100%;
}

.marquee-fader {
    position: absolute;
    top: 0;
    width: 20%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.marquee-fader.left {
    left: 0;
    background: linear-gradient(to right, #ffffff, transparent);
}
.marquee-fader.right {
    right: 0;
    background: linear-gradient(to left, #ffffff, transparent);
}

.premium-track {
    display: flex;
    width: calc(240px * 14); 
    animation: pScroll 35s linear infinite;
}

.premium-track:hover {
    animation-play-state: paused; /* Üzerine gelince durur */
}

/* Kart Tasarımı */
.p-tech-card {
    width: 240px;
    height: 20px;
    margin: 0 15px;
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

.p-tech-card img {
    max-width: 130px;
    max-height: 55px;
    filter: grayscale(100%) contrast(0.8);
    opacity: 0.4;
    transition: all 0.5s ease;
}

/* Hover Efekti: Kart canlanır */
.p-tech-card:hover {
    border-color: var(--p-green);
    box-shadow: 0 20px 40px -10px rgba(44, 199, 106, 0.15);
    transform: translateY(-10px) scale(1.05);
    background: radial-gradient(circle at center, rgba(44, 199, 106, 0.02), #fff);
}

.p-tech-card:hover img {
    filter: grayscale(0%) contrast(1);
    opacity: 1;
}

/* Animasyon */
@keyframes pScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-240px * 7 - 30px * 7)); }
}

@media (max-width: 768px) {
    .premium-tech-title { font-size: 32px; }
    .p-tech-card { width: 180px; height: 100px; padding: 20px; }
    @keyframes pScroll {
        100% { transform: translateX(calc(-180px * 7 - 30px * 7)); }
    }
}
.vibe-button-group {
display: flex;
gap: 8px;
align-items: center;
}

.vibe-detail-btn {
background: #f4f7f6;
color: #333;
width: 40px;
height: 40px;
border-radius: 8px;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s;
border: 1px solid #ddd;
}

.vibe-detail-btn:hover {
background: #34495e;
color: #fff;
border-color: #34495e;
}

.vibe-cart-btn {
background: #009697;
color: #fff;
width: 40px;
height: 40px;
border-radius: 8px;
border: none;
cursor: pointer;
transition: 0.3s;
}

.vibe-cart-btn:hover {
background: #007a7b;
transform: translateY(-2px);
}
/* Testi Navigasyon Alanı Konteynırı */
.testi-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 0;
    margin-top: 30px;
}

/* Standart Nokta Yapısı */
.nav-dot {
    width: 12px;
    height: 12px;
    background: #e2e8f0; /* Pasif renk (açık gri) */
    border: none;
    border-radius: 50px; /* Tam yuvarlak */
    cursor: pointer;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 0;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
}

/* Aktif (Seçili) Nokta Stili - Pill/Kapsül Şekli */
.nav-dot.active {
    width: 45px; /* Aktif olduğunda yana doğru uzar */
    background: linear-gradient(135deg, #009697 0%, #00d2d3 100%); /* Sesli Yazılım Gradiyenti */
    box-shadow: 0 4px 12px rgba(0, 150, 151, 0.3);
}

/* Hafif bir parlama efekti (Opsiyonel) */
.nav-dot.active::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.2);
    filter: blur(2px);
    opacity: 0;
    transition: 0.3s;
}

.nav-dot.active:hover::after {
    opacity: 1;
}

/* Hover Efekti (Pasifler için) */
.nav-dot:not(.active):hover {
    background: #cbd5e1;
    transform: scale(1.2);
}
/* --- Sesli Yazılım Yeni İletişim Tasarımı --- */
.sesli-contact-wrapper {
    padding: 80px 0;
    background-color: #f4f7f6;
    color: #2d3436;
}

/* Başlık Alanı */
.contact-header-pro {
    text-align: center;
    margin-bottom: 60px;
}
.pro-badge {
    background: #009697;
    color: #fff;
    padding: 6px 15px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
}
.pro-title {
    font-size: 36px;
    font-weight: 800;
    margin-top: 15px;
}
.pro-title span { color: #009697; }
.pro-desc { color: #636e72; font-size: 18px; max-width: 600px; margin: 15px auto; }

/* İletişim Kartları */
.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}
.c-card {
    background: #fff;
    padding: 40px 30px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-bottom: 4px solid transparent;
    transition: 0.3s;
}
.c-card:hover { transform: translateY(-10px); border-color: #009697; }
.c-card.mesai_saatleri:hover { border-color: #25d366; }
.c-icon {
    font-size: 40px;
    color: #009697;
    margin-bottom: 15px;
}
.c-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.c-card p { color: #636e72; margin: 0; font-size: 15px; }

/* Harita */
.contact-map-full {
    background: #fff;
    border-radius: 20px;
    padding: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-bottom: 50px;
}
.map-head {
    padding: 15px;
    font-weight: 700;
    color: #2d3436;
    display: flex;
    align-items: center;
    gap: 10px;
}
.contact-map-full iframe { border-radius: 15px; }

/* Form */
.contact-form-full {
    background: #fff;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}
.form-head { margin-bottom: 40px; }
.form-head h2 { font-weight: 800; font-size: 28px; }
.form-head p { color: #636e72; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
    color: #2d3436;
}
.form-group input, .form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #f1f1f1;
    border-radius: 10px;
    background: #f9f9f9;
    transition: 0.3s;
}
.form-group input:focus, .form-group textarea:focus {
    border-color: #009697;
    background: #fff;
    outline: none;
}

.pro-submit-btn {
    background: #009697;
    color: #fff;
    border: none;
    padding: 18px 40px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}
.pro-submit-btn:hover { background: #2d3436; box-shadow: 0 10px 20px rgba(0,0,0,0.1); }

/* Responsive */
@media (max-width: 768px) {
    .form-row { grid-template-columns: 1fr; }
    .contact-form-full { padding: 30px; }
    .pro-title { font-size: 28px; }
}
.security-box { margin-bottom: 25px; }
.captcha-input-group { display: flex; gap: 10px; align-items: center; }
.captcha-input-group img { border-radius: 8px; height: 45px; cursor: pointer; }
.captcha-input-group input { max-width: 150px; }
/* --- GENEL AYARLAR VE TAŞMA ENGELLEME --- */

/* --- HERO HEADER --- */
.hero-header { 
    height: auto; 
    min-height: 280px;
    background: url('../images/page-software-header-background.jpg') center/cover fixed;
    position: relative; 
    display: flex; 
    align-items: flex-end;
    padding-bottom: 81px;
}
.hero-header::before { 
    content: ""; position: absolute; inset: 0; 
    background: linear-gradient(0deg, #f0f4f8 0%, rgba(15, 23, 42, 0.7) 100%); 
}
.hero-inner { position: relative; z-index: 5; width: 100%; padding: 0 20px; }
.hero-inner h1 { font-size: 3.5rem; font-weight: 800; color: #fff; letter-spacing: -2px; margin-bottom: 10px; line-height: 1.1; }
.hero-breadcrumb { display: flex; flex-wrap: wrap; gap: 10px; color: rgba(255,255,255,0.8); font-weight: 600; font-size: 15px; }
.hero-breadcrumb span { color: #009697; }

/* --- ANA LAYOUT: ASİMETRİK IZGARA --- */
.main-wrapper { 
    display: grid; 
    grid-template-columns: 1fr 420px; 
    gap: 30px; 
    margin-top: -80px; 
    position: relative; 
    z-index: 10; 
    padding: 0 20px 100px 20px; 
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

/* --- SOL TARAF --- */
.content-glass { 
    background: rgba(255, 255, 255, 0.9); 
    backdrop-filter: blur(10px);
    border-radius: 40px; 
    padding: 50px; 
    box-shadow: 0 40px 100px rgba(0,0,0,0.05);
    border: 1px solid rgba(255,255,255,0.5);
}
.main-preview-box { position: relative; border-radius: 30px; overflow: hidden; margin-bottom: 40px; transform: rotate(-1deg); transition: 0.5s; }
.main-preview-box:hover { transform: rotate(0deg) scale(1.02); }
.main-preview-box img { width: 100%; height: auto; display: block; }

.description-title { font-size: 2rem; font-weight: 800; margin-bottom: 25px; color: #0f172a; position: relative; }
.description-title::after { content: ""; position: absolute; left: 0; bottom: -5px; width: 50px; height: 5px; background: #009697; border-radius: 10px; }

/* --- AKORDİYON --- */
.tech-accordion { margin-top: 50px; }
.acc-card { background: #fff; border-radius: 20px; margin-bottom: 15px; border: 1px solid #e2e8f0; transition: 0.3s; overflow: hidden; }
.acc-head { 
    width: 100%; padding: 25px 30px; border: none; background: none;
    display: flex; align-items: center; justify-content: space-between; 
    cursor: pointer; font-weight: 800; font-size: 18px; color: #44546a; text-align: left;
}
.acc-head i.state-icon { transition: 0.3s; color: #009697; margin-left: 10px; }
.acc-content { display: none; padding: 0 30px 30px; color: #64748b; font-size: 16px; border-top: 1px solid #f1f5f9; padding-top: 20px; }
.acc-card.active { border-color: #009697; box-shadow: 0 10px 30px rgba(0,150,151,0.1); }
.acc-card.active .state-icon { transform: rotate(45deg); }

/* --- SAĞ TARAF --- */
.side-panel { position: sticky; top: 40px; }
.purchase-modern-card { 
    background: #0f172a; 
    color: #fff;
    border-radius: 40px; 
    padding: 45px; 
    box-shadow: 0 30px 60px rgba(15,23,42,0.3);
}
.feature-badge-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 25px; }
.f-item { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; color: #cbd5e1; }
.f-item i { color: #fff; font-size: 18px; display: flex; align-items: center; justify-content: center; }

.price-box-v4 { text-align: center; background: rgba(255,255,255,0.05); padding: 30px; border-radius: 30px; margin-bottom: 30px; }
.price-v4 { font-size: 54px; font-weight: 800; color: #82c043; display: block; line-height: 1; }
.price-v4 small { font-size: 24px; font-weight: 400; vertical-align: top; margin-right: 5px; }
.price-info-v4 { color: #82c043; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; font-size: 12px; }

.btn-buy-v4 { 
    width: 100%; padding: 22px; border: none; border-radius: 20px; 
    background: #009697; color: #fff; font-weight: 800; font-size: 18px;
    cursor: pointer; transition: 0.3s; display: flex; align-items: center; justify-content: center; gap: 15px;
    box-shadow: 0 15px 30px rgba(0,150,151,0.3);
}
.btn-buy-v4:hover { background: #fff; color: #009697; transform: translateY(-5px); }

.demo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-top: 15px; }
.btn-demo-v4 { 
    background: rgba(255,255,255,0.1); color: #fff; text-decoration: none; 
    padding: 15px; border-radius: 15px; text-align: center; font-weight: 600; font-size: 13px; transition: 0.3s;
}
.btn-demo-v4:hover { background: #fff; color: #0f172a; }

/* --- PREMIUM SHOWCASE (SLIDER) --- */
.premium-showcase { padding: 80px 0; background-color: #f8fafc; }
.showcase-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 40px; padding: 0 20px; }
.sub-badge { background: rgba(0, 150, 151, 0.1); color: #009697; padding: 6px 16px; border-radius: 50px; font-size: 12px; font-weight: 700; text-transform: uppercase; margin-bottom: 10px; }
.showcase-title { font-size: 2.2rem; font-weight: 800; color: #0f172a; }
.showcase-title span { color: #009697; }
.premium-script-card { background: #fff; border-radius: 28px; overflow: hidden; border: 1px solid #e2e8f0; transition: 0.4s; height: 100%; }
.card-media { position: relative; height: 220px; overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; }
.price-tag { font-size: 20px; font-weight: 800; color: #009697; }

/* --- MOBILE & TABLET RESPONSIVE (CRITICAL FIX) --- */
@media (max-width: 1200px) {
    .main-wrapper { 
        grid-template-columns: 1fr; /* Izgarayı tek sütuna düşür */
        margin-top: -50px;
    }
    .side-panel { position: static; margin-top: 20px; }
    .hero-inner h1 { font-size: 2.8rem; }
}

@media (max-width: 768px) {
    .hero-header { height: auto; padding-top: 100px; padding-bottom: 60px; }
    .hero-inner h1 { font-size: 2.2rem; letter-spacing: -1px; }
    
    .content-glass { padding: 25px; border-radius: 25px; } /* Paddingleri daralt */
    .purchase-modern-card { padding: 30px; border-radius: 25px; }
    
    .description-title { font-size: 1.6rem; }
    .price-v4 { font-size: 42px; }
    
    .showcase-header { flex-direction: column; align-items: flex-start; gap: 20px; }
    .slider-controls { width: 100%; justify-content: flex-start; }
    .showcase-title { font-size: 1.8rem; }

    /* Mobilde resim rotasyonunu iptal et (taşıma yapabilir) */
    .main-preview-box { transform: none !important; margin-bottom: 30px; }
}

@media (max-width: 480px) {
    .hero-inner h1 { font-size: 1.8rem; }
    .demo-grid { grid-template-columns: 1fr; } /* Butonları alt alta al */
    .acc-head { padding: 20px; font-size: 16px; }
    .price-v4 { font-size: 36px; }
    .purchase-modern-card { padding: 20px; }
}
/* --- SLIDER NAVİGASYON KONTROLLERİ --- */
.slider-controls {
    display: flex;
    gap: 12px; /* Butonlar arası boşluk */
    z-index: 10;
}

/* Ortak Buton Stili */
.swiper-button-prev-custom, 
.swiper-button-next-custom {
    width: 48px;
    height: 48px;
    background-color: #ffffff; /* Arka plan beyaz */
    border: 1px solid #e2e8f0; /* Hafif gri çerçeve */
    border-radius: 12px; /* Modern yuvarlatılmış köşeler */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #0f172a; /* İkon rengi (Koyu lacivert) */
    font-size: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05); /* Hafif gölge */
}

/* Hover (Üzerine Gelince) Efekti */
.swiper-button-prev-custom:hover, 
.swiper-button-next-custom:hover {
    background-color: #009697; /* Marka Turkuazı */
    color: #ffffff; /* İkon beyaz olur */
    border-color: #009697;
    transform: translateY(-3px); /* Hafif yukarı kalkma */
    box-shadow: 0 10px 15px -3px rgba(0, 150, 151, 0.3); /* Turkuaz gölge */
}

/* Tıklama Efekti */
.swiper-button-prev-custom:active, 
.swiper-button-next-custom:active {
    transform: translateY(0) scale(0.95); /* Hafif içe çökme */
}

/* Swiper Disabled (Sonda veya Başta) Durumu */
.swiper-button-disabled {
    opacity: 0.5;
    cursor: not-allowed;
    filter: grayscale(1);
}

/* MOBİL UYUMLULUK */
@media (max-width: 768px) {
    .swiper-button-prev-custom, 
    .swiper-button-next-custom {
        width: 40px;
        height: 40px;
        font-size: 18px;
        border-radius: 10px;
    }
    
    .slider-controls {
        gap: 8px;
    }
}
.clear-space { clear: both; height: 50px; display: block; width: 100%; }
.pagination-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.custom-pagination {
    display: flex;
    list-style: none;
    gap: 10px;
    padding: 0;
}

.custom-pagination li a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    color: #0f172a;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.custom-pagination li.active a {
    background: #009697;
    color: #fff;
    border-color: #009697;
    box-shadow: 0 10px 20px rgba(0, 150, 151, 0.2);
}

.custom-pagination li a:hover:not(.active) {
    background: #f8fafc;
    border-color: #009697;
    color: #009697;
    transform: translateY(-3px);
}

.custom-pagination li a i {
    font-size: 20px;
}
.premium-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

/* Kart Tasarımı */
.premium-script-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #eef2f6;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.premium-script-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.1);
    border-color: #009697;
}

.card-media {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

.premium-script-card:hover .card-media img {
    transform: scale(1.1);
}

/* Badge ve Overlay */
.m-card-badge {
    background: #009697;
    color: #fff;
    padding: 6px 14px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.m-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s;
}

.premium-script-card:hover .m-card-overlay { opacity: 1; }

.m-overlay-btn {
    width: 50px;
    height: 50px;
    background: #fff;
    color: #009697;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 20px;
    transition: 0.3s;
    margin: 0 5px;
	 flex-shrink: 0; 
}
.m-overlay-btn:hover { background: #009697; color: #fff; transform: scale(1.1); }

/* Alt Detaylar */
.card-details { padding: 25px; flex-grow: 1; display: flex; flex-direction: column; }
.card-details h4 { font-size: 18px; font-weight: 700; color: #0f172a; margin-bottom: 15px; min-height: 50px; }
.card-footer { margin-top: auto; display: flex; justify-content: space-between; align-items: center; padding-top: 15px; border-top: 1px solid #f1f5f9; }
.price-tag { font-size: 20px; font-weight: 800; color: #009697; }
.view-details { color: #64748b; text-decoration: none; font-size: 14px; font-weight: 600; display: flex; align-items: center; gap: 5px; }

/* Sayfalama (Pagination) */
.pagination-wrapper { display: flex; justify-content: center; margin-top: 40px; }
.custom-pagination { display: flex; list-style: none; gap: 10px; }
.custom-pagination li a {
    width: 45px; height: 45px; display: flex; align-items: center; justify-content: center;
    background: #fff; border: 1px solid #e2e8f0; border-radius: 12px;
    color: #0f172a; text-decoration: none; font-weight: 700; transition: 0.3s;
}
.custom-pagination li.active a { background: #009697; color: #fff; border-color: #009697; }

@media (max-width: 768px) {
    .premium-grid-container { grid-template-columns: 1fr; gap: 20px; }
}
.overlay-buttons {
    display: flex !important;      /* Esnek kutu yapısını zorla */
    flex-direction: row !important; /* Yönü yatay (yan yana) yap */
    justify-content: center;       /* Butonları ortala */
    align-items: center;           /* Dikeyde ortala */
    gap: 12px;                     /* Butonlar arasındaki boşluk */
    width: 100%;                   /* Alanın tamamını kullan */
}
/* --- HAKKIMIZDA & PROFESYONEL EKİP CSS --- */
.about-hero {
    background: url('uploads/bg/<?php echo $hakkimizda_cek['arka_plan']; ?>') center/cover fixed;
    min-height: 400px;
    display: flex;
    align-items: center;
    position: relative;
    padding: 100px 0;
}
.about-hero::before {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.7) 100%);
}

.about-content-card {
    background: #fff;
    border-radius: 40px;
    padding: 60px;
    margin-top: -100px;
    position: relative;
    z-index: 10;
    box-shadow: 0 40px 100px rgba(0,0,0,0.08);
}

.about-badge {
    background: rgba(0, 150, 151, 0.1); color: #009697;
    padding: 8px 20px; border-radius: 50px; font-size: 14px; font-weight: 700; display: inline-block; margin-bottom: 20px;
}

.about-title { font-size: 3rem; font-weight: 800; color: #0f172a; line-height: 1.2; margin-bottom: 30px; }
.about-title span { color: #009697; }
.about-text { font-size: 1.1rem; line-height: 1.8; color: #64748b; margin-bottom: 40px; }

/* --- Ekibimiz Profil Kartları --- */
.team-section { margin-top: 80px; }
.section-subtitle { text-align: center; margin-bottom: 50px; }
.section-subtitle h3 { font-size: 2.2rem; font-weight: 800; color: #0f172a; }
.section-subtitle span { color: #009697; }

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.team-card {
    background: #fff;
    border-radius: 35px;
    padding: 40px 20px;
    text-align: center;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f1f5f9;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.team-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.1);
    border-color: #009697;
}

.profile-img-box {
    width: 140px;
    height: 140px;
    margin: 0 auto 25px;
    position: relative;
}

.profile-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50px; /* Modern karemsi yuvarlak */
    border: 5px solid #fff;
    box-shadow: 0 15px 35px rgba(0,150,151,0.2);
    transition: 0.4s;
}

.team-card:hover .profile-img-box img {
    transform: scale(1.05);
    border-color: #009697;
}

.team-card h4 { font-size: 1.4rem; font-weight: 800; color: #0f172a; margin-bottom: 5px; }
.team-card p { color: #009697; font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; margin: 0; }

/* İletişim Alt Panel */
.about-contact-info {
    margin-top: 80px;
    background: #0f172a;
    border-radius: 35px;
    padding: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.contact-item { display: flex; align-items: center; gap: 20px; color: #fff; }
.contact-item i { 
    width: 55px; height: 55px; background: rgba(0,150,151,0.15); 
    border-radius: 18px; display: flex; align-items: center; justify-content: center;
    font-size: 24px; color: #009697;
}
.contact-item div h5 { font-size: 13px; color: #94a3b8; margin: 0; text-transform: uppercase; }
.contact-item div p { font-size: 16px; font-weight: 600; margin: 0; }

/* Responsive */
@media (max-width: 992px) {
    .team-grid, .about-contact-info { grid-template-columns: 1fr; }
    .about-content-card { padding: 30px; margin-top: -60px; }
    .about-title { font-size: 2.2rem; }
}
#toast-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Başarı Durumu (Zaten sendeki stil) */
.toast-message.success {
    border-left: 4px solid #009697;
}
.toast-message.success i {
    background: rgba(0, 150, 151, 0.2);
    color: #009697;
}
.toast-message.success .toast-progress-bar {
    background: linear-gradient(90deg, #009697, #82c043);
}

/* --- YENİ: Hata Durumu (Modern Red/Orange) --- */
.toast-message.error {
    border-left: 4px solid #ff4b2b; /* Hata kırmızısı */
}
.toast-message.error i {
    background: rgba(255, 75, 43, 0.2);
    color: #ff4b2b;
}
.toast-message.error .toast-progress-bar {
    background: linear-gradient(90deg, #ff416c, #ff4b2b); /* Kırmızımsı gradyan */
}

/* Genel Toast Mesajı (Ortak Ayarlar) */
.toast-message {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #fff;
    padding: 18px 25px;
    border-radius: 20px;
    min-width: 320px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    margin-top: 10px;
}
.toast-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.toast-message i {
    width: 32px;
    height: 32px;
    background: rgba(0, 150, 151, 0.2);
    color: #009697;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.toast-text {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* İlerleme Çubuğu (Progress Bar) */
.toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 100%;
    background: rgba(0, 150, 151, 0.2);
}

.toast-progress-bar {
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, #009697, #82c043); /* Turkuazdan Yeşile gradyan */
    animation: toastProgress linear forwards;
}

/* Animasyonlar */
@keyframes toastBounceIn {
    0% { transform: translateX(120%) scale(0.7); opacity: 0; }
    70% { transform: translateX(-10px) scale(1.02); }
    100% { transform: translateX(0) scale(1); opacity: 1; }
}

@keyframes toastFadeOut {
    from { transform: scale(1); opacity: 1; }
    to { transform: scale(0.8); opacity: 0; }
}

@keyframes toastProgress {
    from { width: 100%; }
    to { width: 0%; }
}

.toast-message.hide {
    animation: toastFadeOut 0.4s ease forwards;
}
/* --- PROFESYONEL BANKA HESAPLARI CSS --- */
.bank-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 25px;
}

.bank-card {
    background: #fff;
    border-radius: 25px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.bank-card:hover {
    border-color: #009697;
    box-shadow: 0 20px 40px rgba(0, 150, 151, 0.08);
    transform: translateY(-5px);
}

.bank-header {
    padding: 25px;
    display: flex;
    align-items: center;
    cursor: pointer;
    background: #fff;
}

.bank-logo {
    width: 70px;
    height: 70px;
    background: #f8fafc;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    padding: 12px;
    border: 1px solid #f1f5f9;
}

.bank-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.bank-info h4 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
}

.bank-info span {
    font-size: 13px;
    color: #009697;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.arrow-icon {
    margin-left: auto;
    font-size: 26px;
    color: #94a3b8;
    transition: transform 0.4s ease;
}

.bank-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
    background: #f8fafc;
}

.details-inner {
    padding: 25px;
    border-top: 1px solid #f1f5f9;
}

.detail-item {
    margin-bottom: 15px;
}

.detail-item strong {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 5px;
    font-weight: 800;
}

.detail-item span {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
}

.iban-text {
    color: #009697 !important;
    font-family: 'Monaco', 'Consolas', monospace;
    background: rgba(0, 150, 151, 0.05);
    padding: 5px 10px;
    border-radius: 8px;
}

.copy-btn {
    background: #0f172a;
    color: #fff;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.copy-btn:hover { background: #009697; transform: scale(1.1); }

/* Aktif Kart Durumu */
.bank-card.active { border-color: #009697; }
.bank-card.active .bank-details { max-height: 600px; transition: max-height 0.8s ease-in; }
.bank-card.active .arrow-icon { transform: rotate(180deg); color: #009697; }

@media (max-width: 768px) {
    .bank-grid { grid-template-columns: 1fr; }
    .about-content-card { padding: 30px; margin-top: -60px; }
}
.modern-hosting-wrapper {
    padding: 60px 0;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- ÖZELLİKLER GRİD --- */
.hosting-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 80px;
}

.host-feature-card {
    background: #fff;
    border: 1px solid #eef2f6;
    border-radius: 24px;
    padding: 35px;
    display: flex;
    align-items: center;
    gap: 25px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.host-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    border-color: #009697;
}

.h-icon-box {
    width: 80px;
    height: 80px;
    background: #f8fafc;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: 0.3s;
}

.host-feature-card:hover .h-icon-box {
    background: rgba(0, 150, 151, 0.1);
}

.h-icon-box img {
    width: 50px;
    height: auto;
    object-fit: contain;
}

.h-content h4 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
}

.h-content p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* --- SSS BÖLÜMÜ --- */
.modern-faq-section {
    background: #fff;
    border-radius: 40px;
    padding: 50px;
    border: 1px solid #eef2f6;
    box-shadow: 0 40px 100px rgba(0,0,0,0.03);
}

.faq-intro {
    text-align: center;
    margin-bottom: 40px;
}

.faq-intro h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0f172a;
}

.faq-intro span {
    color: #009697;
}

.modern-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.m-acc-item {
    margin-bottom: 15px;
    border-radius: 15px;
    border: 1px solid #f1f5f9;
    overflow: hidden;
}

.m-acc-header {
    padding: 22px 30px;
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    color: #0f172a;
    transition: 0.3s;
    user-select: none;
}

.m-acc-header i {
    font-size: 1.5rem;
    color: #94a3b8;
    transition: transform 0.4s;
}

.m-acc-header:hover {
    background: #fcfdfe;
    color: #009697;
}

.m-acc-body {
    max-height: 0;
    overflow: hidden;
    background: #fff;
    transition: max-height 0.4s ease-out;
}

.m-acc-content {
    padding: 0 30px 30px 30px;
    color: #64748b;
    line-height: 1.8;
}

/* Aktif Durum */
.m-acc-item.active {
    border-color: #009697;
    background: #fff;
}

.m-acc-item.active .m-acc-body {
    max-height: 500px;
}

.m-acc-item.active .m-acc-header i {
    transform: rotate(45deg);
    color: #009697;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .hosting-features-grid { grid-template-columns: 1fr; }
    .modern-faq-section { padding: 30px; }
    .faq-intro h3 { font-size: 1.8rem; }
}
.host-feature-card {
    background: rgba(255, 255, 255, 0.03); /* Çok hafif transparan */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.4s ease-in-out;
}
.host-feature-card:hover {
    background: #fff; /* Üstüne gelince beyazlaşsın */
    border-color: #009697;
}





