/* ==========================================================================
   TOTAL VPN LANDING PAGE CSS
   ========================================================================== */

* {
    margin: 0; padding: 0; box-sizing: border-box;
    font-family: 'Inter', -apple-system, sans-serif;
}

body {
    /* Görseldeki gibi açık pembemsi/beyaz arka plan geçişi */
    background: linear-gradient(135deg, #fff2f3 0%, #ffffff 100%);
    color: #111111;
    overflow-x: hidden;
}

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

/* --- NAVBAR --- */
.tv-navbar {
    padding: 20px 0;
}

.tv-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #111;
    font-size: 26px;
    font-weight: 900;
    letter-spacing: -1px;
}

.tv-logo span {
    font-weight: 400;
    color: #555;
    margin-left: 2px;
}

.logo-pin {
    width: 28px;
    height: 28px;
    margin-right: 8px;
}

/* --- HERO SECTION --- */
.tv-hero-section {
    position: relative;
    padding: 60px 0 100px 0;
}

/* Kırmızı Kurdele (Sağ Üst) */
.tv-ribbon {
    position: absolute;
    top: -20px;
    right: 5%;
    background-color: #e83e53;
    color: white;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 10px 25px 10px 40px;
    text-transform: uppercase;
    /* Kurdelenin sol tarafındaki kesik görünüm */
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 10% 100%, 0 50%);
    z-index: 10;
}

.tv-hero-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    position: relative;
}

/* Sol İçerik */
.tv-hero-content {
    flex: 1;
    max-width: 550px;
    z-index: 2;
}

.tv-hero-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    color: #111111;
    margin-bottom: 25px;
}

.tv-hero-bullets {
    list-style: none;
    margin-bottom: 35px;
}

.tv-hero-bullets li {
    font-size: 18px;
    color: #333333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.tv-check {
    color: #00d166; /* Parlak TotalVPN Yeşili */
    font-weight: 900;
    font-size: 20px;
}

/* Kırmızı Buton */
.tv-btn-red {
    display: inline-flex;
    align-items: center;
    background-color: #e83e53;
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 20px;
    box-shadow: 0 10px 20px rgba(232, 62, 83, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}

.tv-btn-red .arrow {
    margin-left: 10px;
    font-size: 20px;
}

.tv-btn-red:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(232, 62, 83, 0.4);
}

.tv-guarantee {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #555555;
    margin-bottom: 50px;
}

.tv-guarantee svg {
    width: 14px;
    height: 14px;
    color: #555;
}

/* Trustpilot Alanı */
.tv-trustpilot {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #111;
}

.tp-text { font-weight: 800; }
.tp-stars { display: flex; gap: 2px; }
.tp-stars span {
    background-color: #00b67a;
    color: white;
    padding: 2px;
    font-size: 12px;
}
.tp-reviews u { color: #555; cursor: pointer; }
.tp-brand { font-weight: 800; color: #111; }
.tp-brand { color: #00b67a; } /* Trustpilot yeşili yıldız */

/* Sağ Görsel ve Balon */
.tv-hero-visual {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.tv-hero-img {
    width: 100%;
    max-width: 600px;
    height: auto;
    z-index: 1;
}

/* Fiyat Balonu */
.tv-floating-price {
    position: absolute;
    top: 25%; /* Görsele tam oturması için biraz aşağı aldım */
    left: -30px;
    background: #ffffff;
    padding: 16px 32px;
    border-radius: 50px;
    display: flex;
    align-items: center; /* baseline yerine center yaptık */
    gap: 10px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    z-index: 5;
    animation: float 4s ease-in-out infinite;
}

.price-big {
    font-size: 42px; /* Rakamı iyice büyüttük */
    font-weight: 900;
    color: #111111;
    letter-spacing: -1px;
    line-height: 1;
    display: flex;
    align-items: flex-end; /* 0 ile .00'ı alt çizgide kusursuz hizalar */
}

.price-big small {
    font-size: 24px; /* .00 kısmı daha okunaklı ve kalın */
    font-weight: 900;
    margin-bottom: 2px; /* Göz hizası için milimetrik ince ayar */
}

.price-text {
    font-size: 16px;
    color: #555555;
    font-weight: 600;
    margin-top: 10px; /* Optik olarak rakamın ortasına denk gelmesi için */
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Mobil Uyumluluk */
@media (max-width: 992px) {
    .tv-hero-flex { flex-direction: column; }
    .tv-hero-content { max-width: 100%; text-align: center; display: flex; flex-direction: column; align-items: center; }
    .tv-ribbon { position: static; display: inline-block; clip-path: none; border-radius: 50px; margin-bottom: 20px; }
    .tv-floating-price { left: 10%; top: 10%; }
}

/* ==========================================================================
   TRUSTPILOT REVIEWS SECTION
   ========================================================================== */
.tv-reviews-section {
    padding: 80px 0 60px 0;
    background-color: #ffffff;
}

.section-title {
    text-align: center;
    font-size: 38px;
    font-weight: 500;
    color: #333333;
    margin-bottom: 50px;
    letter-spacing: -0.5px;
}

.reviews-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 20px;
}

/* Sol Genel Skor */
.reviews-overall {
    text-align: center;
    min-width: 180px;
}

.rating-word {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 5px;
}

.rating-stars {
    display: flex;
    justify-content: center;
    gap: 2px;
    margin-bottom: 10px;
}

.rating-stars .star {
    background-color: #00b67a;
    color: white;
    padding: 4px;
    font-size: 16px;
    line-height: 1;
}

.rating-stars .half {
    background: linear-gradient(to right, #00b67a 50%, #dcdce6 50%);
}

.rating-based {
    font-size: 12px;
    color: #555555;
    margin-bottom: 8px;
}

.trustpilot-logo {
    font-size: 18px;
    font-weight: 800;
    color: #111;
}

.trustpilot-logo { color: #00b67a; } /* Yıldız rengi */

/* Sağ Kartlar */
.reviews-cards {
    display: flex;
    gap: 20px;
}

.review-card {
    background-color: #ffffff;
    border: 1px solid #eaeaea;
    padding: 20px;
    border-radius: 4px;
    flex: 1;
    min-width: 280px;
}

.rc-stars {
    color: #00b67a;
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.verified {
    font-size: 11px;
    color: #777;
    letter-spacing: 0;
}

.rc-title {
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 8px;
    color: #111;
}

.rc-text {
    font-size: 14px;
    color: #555;
    line-height: 1.4;
    margin-bottom: 15px;
}

.rc-author {
    font-size: 12px;
    color: #777;
}

.rc-author strong { color: #333; }

.showing-text {
    text-align: center;
    font-size: 13px;
    color: #777;
    margin-top: 10px;
}

/* ==========================================================================
   SERVERS SECTION
   ========================================================================== */
.tv-servers-section {
    padding: 60px 0 100px 0;
    background-color: #ffffff;
}

.section-desc {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.servers-grid {
    display: flex;
    justify-content: space-between;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    gap: 30px;
}

.server-region {
    flex: 1;
}

.region-count {
    font-size: 48px;
    font-weight: 400;
    color: #111111;
    margin-bottom: 10px;
}

.region-name {
    font-size: 18px;
    color: #333333;
    margin-bottom: 20px;
}

.region-flags {
    display: flex;
    justify-content: center;
    gap: 8px;
}

/* Basit Yuvarlak Bayrak Placeholderları (Tam görsel istersen emoji/resim koyabiliriz) */
.flag {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-block;
    border: 1px solid #eaeaea;
}

/* Bayrak Renk Simülasyonları */
.flag-us { background: repeating-linear-gradient(0deg, #d32f2f 0px, #d32f2f 4px, white 4px, white 8px); position: relative; }
.flag-ca { background-color: #d32f2f; }
.flag-br { background-color: #388e3c; }
.flag-uk { background-color: #1976d2; }
.flag-fr { background: linear-gradient(90deg, #1976d2 33%, white 33%, white 66%, #d32f2f 66%); }
.flag-de { background: linear-gradient(180deg, #111 33%, #d32f2f 33%, #d32f2f 66%, #fbc02d 66%); }
.flag-es { background-color: #fbc02d; }
.flag-au { background-color: #1976d2; }
.flag-nz { background-color: #0d47a1; }
.flag-jp { background-color: #ffffff; border: 1px solid #ccc; position: relative; }
.flag-jp::after { content: ''; width: 10px; height: 10px; background: #d32f2f; border-radius: 50%; position: absolute; top: 6px; left: 6px; }
.flag-il { background-color: #ffffff; border-top: 4px solid #1976d2; border-bottom: 4px solid #1976d2; }
.flag-za { background-color: #388e3c; }
.flag-ae { background-color: #d32f2f; }

/* Mobil Uyumluluk */
@media (max-width: 992px) {
    .reviews-flex { flex-direction: column; }
    .reviews-cards { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 768px) {
    .servers-grid { flex-wrap: wrap; justify-content: center; }
    .server-region { min-width: 40%; margin-bottom: 30px; }
    .section-title { font-size: 32px; }
}
/* ==========================================================================
   ENCRYPT BROWSING SECTION
   ========================================================================== */
.tv-encrypt-section {
    padding: 100px 0;
    background-color: #ffffff; /* Temiz beyaz zemin */
}

.encrypt-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Sol Taraf: Görsel ve Pembe Kare */
.encrypt-visual {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px; /* Görselin pembe kareden taşması için boşluk */
}

.pink-square-bg {
    position: absolute;
    top: 50%;
    left: 20%;
    transform: translateY(-50%);
    width: 250px;
    height: 250px;
    background-color: #fdf0f0; /* Uçuk pembe tonu */
    z-index: 1;
}

.encrypt-img {
    width: 100%;
    max-width: 450px;
    height: auto;
    position: relative;
    z-index: 2; /* Görseli pembe karenin üzerine alır */
    box-shadow: 0 10px 30px rgba(0,0,0,0.08); /* Orijinalindeki gibi çok hafif bir gölge */
    border-radius: 12px;
}

/* Sağ Taraf: Metin */
.encrypt-text {
    flex: 1;
    max-width: 450px;
}

.encrypt-text h2 {
    font-size: 42px;
    font-weight: 500; /* Orijinalindeki gibi çok kalın değil, zarif bir ağırlık */
    color: #222222;
    margin-bottom: 25px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.encrypt-text p {
    font-size: 16px;
    color: #555555;
    line-height: 1.8;
}

/* Mobil Uyumluluk */
@media (max-width: 992px) {
    .encrypt-flex {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }
    .pink-square-bg {
        left: 50%;
        transform: translate(-50%, -50%);
    }
    .encrypt-text {
        max-width: 100%;
    }
}

/* ==========================================================================
   PUBLIC WI-FI SECTION
   ========================================================================== */
.tv-wifi-section {
    padding: 100px 0;
    background-color: #ffffff; /* Temiz beyaz zemin */
}

.wifi-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Sol Taraf: Metin */
.wifi-text {
    flex: 1;
    max-width: 450px;
}

.wifi-text h2 {
    font-size: 42px;
    font-weight: 500;
    color: #222222;
    margin-bottom: 25px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.wifi-text p {
    font-size: 16px;
    color: #555555;
    line-height: 1.8;
    margin-bottom: 40px;
}

/* Yeşil Buton */
.tv-btn-green {
    display: inline-flex;
    align-items: center;
    background-color: #1dd26e; /* Parlak TotalVPN Yeşili */
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.tv-btn-green .arrow {
    margin-left: 10px;
    font-size: 20px;
}

.tv-btn-green:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(29, 210, 110, 0.3); /* Yeşil gölge */
}

/* Sağ Taraf: Görsel ve Pembe Dikdörtgen */
.wifi-visual {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px; /* Görselin pembe dikdörtgenden taşması için boşluk */
}

.pink-rect-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 120%; /* Görselden dikey olarak daha uzun */
    background-color: #fdf0f0; /* Uçuk pembe tonu */
    z-index: 1;
}

.wifi-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    position: relative;
    z-index: 2; /* Görseli pembe dikdörtgenin üzerine alır */
    box-shadow: 0 10px 30px rgba(0,0,0,0.08); /* Orijinalindeki gibi çok hafif bir gölge */
    border-radius: 8px; /* Orijinalde köşeler çok hafif yuvarlak gibi duruyor */
}

/* Mobil Uyumluluk */
@media (max-width: 992px) {
    .wifi-flex {
        flex-direction: column-reverse; /* Mobilde görseli üste alır */
        text-align: center;
        gap: 50px;
    }
    .pink-rect-bg {
        height: 100%;
        width: 120%; /* Mobilde şekli yataya çeviririz */
    }
    .wifi-text {
        max-width: 100%;
    }
}

/* ==========================================================================
   GEO-RESTRICTED SECTION
   ========================================================================== */
.tv-geo-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.geo-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Sol Taraf: Görsel ve Pembe Elmas */
.geo-visual {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.pink-diamond-bg {
    position: absolute;
    top: 50%;
    left: 20%;
    /* İŞTE SİHİR BURADA: 45 derece döndürerek elmas şeklini veriyoruz */
    transform: translateY(-50%) rotate(45deg); 
    width: 280px;
    height: 280px;
    background-color: #fdf0f0;
    z-index: 1;
}

.geo-img {
    width: 100%;
    max-width: 450px;
    height: auto;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-radius: 12px;
}

/* Sağ Taraf: Metin */
.geo-text {
    flex: 1;
    max-width: 480px;
}

.geo-text h2 {
    font-size: 42px;
    font-weight: 500;
    color: #222222;
    margin-bottom: 25px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.geo-text p {
    font-size: 16px;
    color: #555555;
    line-height: 1.8;
}

/* Mobil Uyumluluk */
@media (max-width: 992px) {
    .geo-flex {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }
    .pink-diamond-bg {
        left: 50%;
        transform: translate(-50%, -50%) rotate(45deg);
    }
    .geo-text {
        max-width: 100%;
    }
}

/* ==========================================================================
   GEO-RESTRICTED SECTION
   ========================================================================== */
.tv-geo-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.geo-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* Sol Metin Alanı */
.geo-text {
    flex: 1; /* Ekranın sol yarısını kaplar */
    max-width: 500px;
}

.geo-text h2 {
    font-size: 42px;
    font-weight: 500;
    color: #222222;
    margin-bottom: 25px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.geo-text p {
    font-size: 16px;
    color: #555555;
    line-height: 1.8;
}

/* Sağ Görsel Alanı */
.geo-visual {
    flex: 1; /* Ekranın sağ yarısını kaplar */
    display: flex;
    justify-content: flex-end; /* İçeriği sağa yaslar */
    align-items: center;
}

/* Tüm görselleri bir arada tutan taşıyıcı kutu */
.geo-visual-inner {
    position: relative;
    width: 100%;
    max-width: 400px; /* Telefonun maksimum boyutu */
    display: flex;
    justify-content: center;
}

/* Arka Plandaki Pembe Elmas */
.pink-diamond-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 320px;
    height: 320px;
    background-color: #fdf0f0;
    z-index: 1;
}

/* Ana Telefon Görseli */
.geo-phone {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
    display: block;
}

/* Ülke Seçim Kutusu (United States) */
.geo-country {
    position: absolute;
    bottom: 20%; /* Telefonun altından biraz yukarıda */
    left: -60px; /* Telefonun solundan dışarı taşar */
    width: 180px;
    height: auto;
    z-index: 3;
    background-color: #ffffff; /* SVG'nin arkası saydamsa beyaz zemin sağlar */
    box-shadow: 0 10px 25px rgba(0,0,0,0.08); /* Şık bir gölge */
    border-radius: 8px;
}

/* Mobil Uyumluluk */
@media (max-width: 992px) {
    .geo-flex {
        flex-direction: column; /* Mobilde alt alta dizer */
        text-align: center;
        gap: 80px;
    }
    .geo-visual {
        justify-content: center; /* Mobilde ortalar */
    }
    .geo-country {
        left: -20px; /* Mobilde çok fazla sola taşmasın */
    }
}

/* ==========================================================================
   HOW IT WORKS SECTION
   ========================================================================== */
.tv-how-section {
    padding: 100px 0;
    background-color: #fcfdfd; /* Görseldeki o çok hafif kırık beyaz arka plan */
}

.how-header {
    text-align: center;
    margin-bottom: 60px;
}

.how-header h2 {
    font-size: 42px;
    font-weight: 500;
    color: #222222;
    line-height: 1.2;
    letter-spacing: -1px;
}

.how-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.how-card {
    flex: 1;
    background-color: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.04);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.how-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* Orijinalindeki Kırmızı Outline (Dış Çizgili) Rakam Tasarımı */
.how-number {
    font-size: 64px;
    font-weight: 800;
    color: transparent; /* İçini şeffaf yapıyoruz */
    -webkit-text-stroke: 2px #e83e53; /* Etrafına kırmızı çizgi çekiyoruz */
    margin-bottom: 20px;
    display: inline-flex;
    align-items: baseline;
    font-family: Arial, sans-serif; /* Rakam karakterinin düzgün oturması için */
}

/* Rakamın yanındaki minik kırmızı kare */
.square-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border: 2px solid #e83e53; /* İçi boş kırmızı kare */
    margin-left: 8px;
}

.how-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: #222222;
    margin-bottom: 15px;
}

.how-card p {
    font-size: 15px;
    color: #666666;
    line-height: 1.6;
}

/* Mobil Uyumluluk */
@media (max-width: 992px) {
    .how-header h2 {
        font-size: 32px;
    }
    .how-grid {
        flex-direction: column;
        gap: 20px;
        max-width: 500px; /* Mobilde çok fazla yayılmasın diye daraltıyoruz */
    }
}
/* ==========================================================================
   CTA & FOOTER SECTION
   ========================================================================== */
.tv-footer-section {
    background-color: #262626; /* Koyu gri/siyah zemin */
    color: #ffffff;
    padding: 100px 0 40px 0;
    position: relative;
    margin-top: 50px;
}

/* Üstteki Eğik Siyah Geçiş (CSS Clip-Path ile) */
.tv-footer-section::before {
    content: '';
    position: absolute;
    top: -50px; /* Ne kadar yukarı çıkacağı */
    left: 0;
    width: 100%;
    height: 100px;
    background-color: #262626;
    /* Sağdan sola doğru eğimli kesik oluşturur */
    clip-path: polygon(0 50%, 100% 0, 100% 100%, 0% 100%);
    z-index: -1;
}

/* CTA Alanı (Başlık ve Buton) */
.footer-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.cta-text h2 {
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.cta-text p {
    font-size: 22px;
    color: #cccccc;
    font-weight: 400;
}

.footer-divider {
    height: 1px;
    background-color: #444444;
    margin-bottom: 60px;
}

/* Footer Linkleri Grid Yapısı */
.footer-links-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

.tv-footer-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #ffffff;
    font-size: 26px;
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.tv-footer-logo span {
    font-weight: 400;
}

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

/* Sosyal ikonları simüle ediyoruz */
.social-icons a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.social-icons a:hover {
    opacity: 1;
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-col ul {
    list-style: none;
}

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

.footer-col ul li a {
    color: #999999;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: #ffffff;
}

/* En Alt Telif Hakkı Alanı */
.footer-bottom {
    font-size: 12px;
    color: #999999;
}

.footer-divider-thin {
    height: 1px;
    background-color: #333333;
    margin: 20px 0;
}

.trademark-text {
    font-size: 11px;
    color: #777777;
}

/* Mobil Uyumluluk */
@media (max-width: 992px) {
    .footer-cta {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer-links-grid {
        flex-direction: column;
    }
}