@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #1A365D; /* Kurumsal Mavi */
    --primary-color-hover: #2B6CB0;
    --text-dark: #333333;
    --text-gray: #666666;
    --bg-light: #fdfbf9;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* --- ORTAK CONTAINER --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- TOPBAR --- */
.topbar {
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 13px;
    padding: 10px 0;
}
.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.topbar-left i, .topbar-right i {
    margin-right: 8px;
}
.topbar-center a {
    color: var(--white);
    margin: 0 10px;
    font-size: 16px;
}
.topbar-center a:hover {
    opacity: 0.8;
    transform: translateY(-2px);
    display: inline-block;
}
.topbar-right span {
    margin-left: 20px;
}

/* --- HEADER --- */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}
.logo img {
    max-height: 50px;
}
.navbar ul {
    display: flex;
    gap: 30px;
}
.navbar ul li a {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 5px;
}
.navbar ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: var(--transition);
}
.navbar ul li a:hover {
    color: var(--primary-color);
}
.navbar ul li a:hover::after {
    width: 100%;
}

/* --- HERO SECTION --- */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('https://images.unsplash.com/photo-1523240795612-9a054b0db644?q=80&w=1920&auto=format&fit=crop') center/cover no-repeat;
    height: 550px;
    position: relative;
    display: flex;
    align-items: center;
}
.hero-content {
    color: var(--white);
    max-width: 600px;
    margin-top: -50px;
}
.hero-content h1 {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.3;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}
.slider-dots {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}
.slider-dots .dot {
    width: 12px;
    height: 12px;
    background-color: var(--white);
    border-radius: 50%;
    opacity: 0.5;
    cursor: pointer;
    transition: var(--transition);
}
.slider-dots .dot.active, .slider-dots .dot:hover {
    opacity: 1;
    transform: scale(1.2);
}

/* --- SEARCH SECTION --- */
.search-section {
    position: relative;
    z-index: 10;
    margin-top: -80px;
}
.search-box {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
}
.watermark-text {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 42px;
    font-weight: 700;
    color: #f0f0f0;
    white-space: nowrap;
    z-index: 0;
    pointer-events: none;
}
.search-form {
    position: relative;
    z-index: 1;
    margin-top: 30px;
}
.input-group {
    display: flex;
    justify-content: center;
    align-items: center;
}
.country-select {
    width: 50%;
    padding: 15px 20px;
    font-size: 16px;
    border: 1px solid var(--primary-color);
    border-right: none;
    border-radius: 5px 0 0 5px;
    outline: none;
    color: var(--text-gray);
    background-color: var(--white);
}
.btn-search {
    background-color: var(--primary-color);
    color: var(--white);
    border: 1px solid var(--primary-color);
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: var(--transition);
}
.btn-search:hover {
    background-color: var(--primary-color-hover);
}
.search-subtext {
    margin-top: 15px;
    font-size: 13px;
    color: #999;
    font-style: italic;
}

/* --- INFO SECTION --- */
.info-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}
.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.info-card {
    text-align: center;
    padding: 20px;
    transition: var(--transition);
}
.info-card:hover {
    transform: translateY(-10px);
}
.icon-wrapper {
    width: 80px;
    height: 80px;
    background-color: #eaf0f6; /* Uçuk mavi */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
}
.info-card h3 {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}
.info-card p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* --- ORTAK BAŞLIK --- */
.section-title {
    text-align: center;
    margin-bottom: 40px;
}
.section-title h2 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}
.dark-dots {
    position: static;
    transform: none;
    justify-content: center;
    margin-top: 15px;
}
.dark-dots .dot {
    background-color: #ccc;
    opacity: 1;
}
.dark-dots .dot.active {
    background-color: var(--primary-color);
}

/* --- POPÜLER ÜLKELER --- */
.popular-countries {
    padding: 60px 0;
    background-color: #fcfcfc;
}
.country-gallery {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    overflow-x: auto;
    padding-bottom: 15px;
}
.country-card {
    flex: 1;
    min-width: 250px;
    text-align: center;
}
.country-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: var(--transition);
}
.country-card:hover img {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.15);
}
.country-card h4 {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
}

/* --- BUTON --- */
.btn-center {
    text-align: center;
    margin-top: 20px;
}
.btn-outline {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    border-radius: 4px;
    background-color: transparent;
    transition: var(--transition);
}
.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* --- REFERANSLAR --- */
.references-section {
    padding: 60px 0;
    background-color: var(--white);
}
.reference-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    opacity: 0.6;
}
.reference-logos img {
    max-height: 40px;
    filter: grayscale(100%);
    transition: var(--transition);
}
.reference-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* --- FOOTER --- */
.footer {
    background-color: var(--bg-light);
    padding: 60px 0 30px;
    border-top: 1px solid #eee;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.footer-col h4 {
    color: var(--primary-color);
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 600;
}
.footer-col ul li {
    margin-bottom: 10px;
}
.footer-col ul li a {
    color: var(--text-gray);
    font-size: 14px;
}
.footer-col ul li a:hover {
    color: var(--primary-color);
}
.footer-countries-grid {
    display: flex;
    gap: 40px;
}
.contact-info p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* --- SABİT BUTONLAR --- */
.side-contact-tab {
    position: fixed;
    left: -45px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 5px 5px 0 0;
    cursor: pointer;
    z-index: 999;
    letter-spacing: 1px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
}
.whatsapp-btn:hover {
    background-color: #128c7e;
    transform: scale(1.05);
}

/* --- HAKKIMIZDA DETAYLI STİLLER --- */
.about-hero {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.about-detailed {
    padding: 100px 0;
    background: white;
}

.about-flex {
    display: flex;
    gap: 80px;
    align-items: center;
}

.about-info-text { flex: 1; }
.badge {
    background: rgba(43, 108, 176, 0.1);
    color: var(--secondary);
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
    display: inline-block;
}

.about-info-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    line-height: 1.2;
}

.about-info-text p {
    color: var(--text-gray);
    margin-bottom: 20px;
    font-size: 16px;
}

.feature-item {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.feature-item i {
    font-size: 24px;
    color: var(--accent);
    margin-top: 5px;
}

.feature-item h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

/* Görsel Alanı */
.about-visual { flex: 1; position: relative; }
.image-stack { position: relative; padding: 20px; }
.main-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -20px;
    background: var(--primary);
    color: white;
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(26, 54, 93, 0.3);
}

.experience-badge span { font-size: 36px; font-weight: 800; display: block; }
.experience-badge p { font-size: 12px; font-weight: 500; text-transform: uppercase; }

/* Değerlerimiz Bölümü */
.our-values { padding: 100px 0; background: #f8fafc; }
.section-header-center { text-align: center; max-width: 700px; margin: 0 auto 60px; }
.section-header-center h2 { font-size: 32px; margin-bottom: 15px; }

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card {
    background: white;
    padding: 45px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.03);
    transition: var(--transition);
    border: 1px solid #f1f5f9;
}

.value-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
.v-icon {
    width: 70px;
    height: 70px;
    background: #eff6ff;
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    border-radius: 15px;
    margin-bottom: 25px;
}

/* Mobil Uyumluluk */
@media (max-width: 992px) {
    .about-flex, .values-grid { grid-template-columns: 1fr; }
    .about-flex { gap: 40px; text-align: center; }
    .feature-item { text-align: left; }
    .about-visual { order: -1; }
}

/* ============================================================
PROJE: TÜRK VİZE ONLİNE (PREMIUM CSS MASTER)
DURUM: TÜM SAYFALAR VE DROPDOWN DAHİL
============================================================
*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #1A365D;
    --primary-hover: #2B6CB0;
    --accent-color: #F26522;
    --text-dark: #333333;
    --text-gray: #666666;
    --bg-light: #fdfbf9;
    --white: #ffffff;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- TOPBAR --- */
.topbar {
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 13px;
    padding: 10px 0;
}
.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.topbar-center a {
    margin: 0 10px;
    font-size: 16px;
}
.topbar-center a:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
    display: inline-block;
}

/* --- HEADER & NAVIGATION --- */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}
.logo img { max-height: 50px; }

.navbar ul {
    display: flex;
    gap: 25px;
    align-items: center;
}

.navbar ul li a {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--text-dark);
    padding: 10px 0;
}

/* --- DROPDOWN MANTIĞI (ÖNEMLİ KISIM) --- */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: block; /* Animasyon için block olmalı */
    position: absolute;
    background-color: var(--white);
    min-width: 230px;
    box-shadow: 0px 8px 25px rgba(0,0,0,0.1);
    border-radius: 0 0 8px 8px;
    top: 100%;
    left: 0;
    z-index: 1100;
    padding: 10px 0;
    border-top: 3px solid var(--primary-color);
    
    /* Başlangıçta gizli ve aşağıda */
    visibility: hidden;
    opacity: 0;
    transform: translateY(15px);
    transition: var(--transition);
}

/* Mouse ile üzerine gelince açılma */
.dropdown:hover .dropdown-content {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-content li {
    width: 100%;
    display: block !important;
}

.dropdown-content li a {
    padding: 12px 20px !important;
    font-size: 13px !important;
    text-transform: none !important;
    display: block !important;
    border-bottom: 1px solid #f8f9fa;
    color: var(--text-gray) !important;
}

.dropdown-content li a:hover {
    background-color: #f1f5f9;
    color: var(--primary-color) !important;
    padding-left: 25px !important;
}

/* --- HERO SECTION --- */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('https://images.unsplash.com/photo-1523240795612-9a054b0db644?q=80&w=1920') center/cover no-repeat;
    height: 500px;
    display: flex;
    align-items: center;
}
.hero-content h1 {
    color: var(--white);
    font-size: 42px;
    line-height: 1.2;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

/* --- SEARCH BOX --- */
.search-section {
    margin-top: -60px;
    position: relative;
    z-index: 10;
}
.search-box {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    max-width: 900px;
    margin: 0 auto;
}
.input-group {
    display: flex;
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    overflow: hidden;
}
.country-select {
    flex: 1;
    padding: 15px;
    border: none;
    outline: none;
}
.btn-search {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0 40px;
    font-weight: 700;
    cursor: pointer;
}

/* --- HAKKIMIZDA SAYFASI --- */
.about-detailed { padding: 80px 0; background: #fff; }
.about-flex { display: flex; gap: 50px; align-items: center; }
.about-info-text { flex: 1; }
.about-visual { flex: 1; }
.main-img { width: 100%; border-radius: 15px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }

.badge {
    background: rgba(26, 54, 93, 0.1);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 15px;
    display: inline-block;
}

/* --- FOOTER --- */
.footer {
    background: #f8f9fa;
    padding: 60px 0 30px;
    border-top: 1px solid #eee;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* --- WHATSAPP & SIDE TAB --- */
.whatsapp-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25d366;
    color: #fff;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    z-index: 2000;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.side-contact-tab {
    position: fixed;
    left: -40px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    background: var(--accent-color);
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px 5px 0 0;
    z-index: 1000;
}

/* Mobil Düzenleme */
@media (max-width: 768px) {
    .navbar { display: none; }
    .about-flex { flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr; }
}

/* --- GENEL SIFIRLAMA VE FONT --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Poppins:wght@300;400;500&display=swap');

:root {
    --primary: #1A365D;
    --accent: #F26522;
    --text-dark: #1F2937;
    --text-muted: #6B7280;
    --bg-soft: #F9FAFB;
}

body { font-family: 'Poppins', sans-serif; background: var(--bg-soft); color: var(--text-dark); }

/* --- SUB PAGE HERO --- */
.sub-page-hero { 
    padding: 100px 0 60px; 
    background: linear-gradient(135deg, var(--primary) 0%, #2B6CB0 100%);
    color: white; 
    text-align: center;
}
.badge-premium { background: var(--accent); padding: 5px 15px; border-radius: 20px; font-size: 12px; font-weight: 700; margin-bottom: 15px; display: inline-block; }
.sub-page-hero h1 { font-family: 'Montserrat'; font-size: 42px; margin-bottom: 10px; }

/* --- GRID & LAYOUT --- */
.content-section { padding: 80px 0; background: white; }
.standard-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px; }

.info-highlight { 
    background: #EFF6FF; border-left: 4px solid var(--primary); 
    padding: 25px; margin: 30px 0; display: flex; gap: 20px; align-items: center;
}
.info-highlight i { font-size: 24px; color: var(--primary); }

/* --- STICKY COVERAGE CARD --- */
.coverage-card { 
    background: white; border-radius: 15px; padding: 40px; 
    box-shadow: 0 20px 40px rgba(0,0,0,0.08); position: sticky; top: 120px;
}
.coverage-card h4 { font-family: 'Montserrat'; margin-bottom: 25px; color: var(--primary); display: flex; align-items: center; gap: 10px; }
.coverage-card ul li { margin-bottom: 15px; font-size: 14px; display: flex; align-items: center; gap: 10px; }
.coverage-card ul li i { color: #10B981; }

/* --- CTA BAR --- */
.cta-bar { background: var(--primary); color: white; padding: 40px 0; text-align: center; }
.cta-flex h3 { font-family: 'Montserrat'; font-size: 24px; margin-bottom: 5px; }
.cta-flex p { opacity: 0.8; font-size: 14px; }

/* Responsive */
@media (max-width: 992px) { .standard-grid { grid-template-columns: 1fr; } }


/* PASAPORT SAYFASI ÖZEL TASARIM */
.important-notes-section { border-top: 5px solid var(--primary-color); }
.notes-content p { font-size: 14px; line-height: 1.7; color: #555; text-align: justify; margin-bottom: 15px; }

.warning-highlight {
    background: #FFF5F2; border: 1px dashed #F26522; padding: 15px;
    border-radius: 8px; display: flex; align-items: center; gap: 15px; margin: 20px 0;
}
.warning-highlight i { font-size: 24px; color: #F26522; }
.warning-highlight p { margin-bottom: 0; font-size: 13px; color: #7d1a1a; font-weight: 600; }

.application-box {
    background: #f0f7ff; padding: 15px; border-radius: 8px;
    display: flex; align-items: center; gap: 15px; border: 1px solid #d1e3f8;
}
.application-box i { font-size: 28px; color: var(--primary-color); }
.application-box p { margin-bottom: 0; font-size: 14px; color: #1a365d; }

/* BANKA PREMİUM GRİD */
.bank-grid-premium {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 20px;
}
.bank-card-item {
    background: #fff; border: 1px solid #eee; padding: 10px; border-radius: 6px;
    font-size: 10px; font-weight: 700; display: flex; align-items: center; gap: 8px; transition: 0.3s;
}
.bank-card-item:hover { border-color: #F26522; background: #fdfdfd; transform: translateY(-2px); }
.bank-card-item i { color: #10B981; font-size: 12px; }

/* TABLO TASARIMI */
.premium-table-v2 thead th { background: #1A365D; color: #fff; padding: 15px; font-size: 12px; }
.premium-table-v2 tbody td { padding: 15px; border-bottom: 1px solid #eee; font-size: 14px; }
.total-price-large { font-size: 18px; color: #F26522; font-weight: 800; }

/* PASAPORT TÜRLERİ */
.info-scroll-box { max-height: 150px; overflow-y: auto; font-size: 13px; color: #666; padding-right: 10px; }
.professional-list-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; list-style: none; margin-top: 15px; }
.professional-list-grid li { font-size: 13px; display: flex; align-items: center; gap: 10px; color: #444; }
.professional-list-grid li i { color: #F26522; }

@media (max-width: 992px) { .bank-grid-premium { grid-template-columns: repeat(2, 1fr); } .professional-list-grid { grid-template-columns: 1fr; } }


/* --- VİZE TAKİP SÖZLEŞMESİ PREMIUM TASARIM --- */
.contract-main-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.alert-box-premium {
    background: #fdf2f2;
    border-left: 4px solid #e11d48;
    padding: 20px;
    margin-top: 30px;
    display: flex;
    gap: 15px;
    border-radius: 8px;
}

.alert-box-premium i { color: #e11d48; font-size: 20px; margin-top: 3px; }
.alert-box-premium strong { display: block; margin-bottom: 5px; color: #991b1b; }
.alert-box-premium p { font-size: 13px; margin: 0; color: #b91c1c; }

/* İndirme Kartı */
.premium-download-card {
    background: var(--primary-color);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    color: white;
}

.pdf-icon-box {
    font-size: 60px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.file-size {
    position: absolute;
    bottom: 5px;
    right: -20px;
    background: var(--accent-color);
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 700;
}

.btn-contract-download {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #fff;
    color: var(--primary-color);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    margin-top: 25px;
    transition: all 0.3s ease;
}

.btn-contract-download:hover {
    background: var(--accent-color);
    color: white;
    transform: scale(1.05);
}

/* Timeline */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}

.timeline-item {
    padding: 30px;
    background: #f8fafc;
    border-radius: 12px;
}

.t-icon {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* --- FAYDALI LİNKLER TASARIMI --- */
.links-main-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.link-group-card {
    background: #fff;
    border-radius: 15px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid #f0f0f0;
}

.group-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    border-bottom: 2px solid #f8fafc;
    padding-bottom: 15px;
}

.group-header i { font-size: 28px; color: var(--primary-color); }
.group-header h3 { font-size: 20px; margin-bottom: 0; color: var(--primary-color); }

.useful-link-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-radius: 8px;
    background: #f8fafc;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.useful-link-item:hover {
    background: var(--primary-color);
    color: white !important;
    transform: translateX(10px);
}

.useful-link-item i:first-child { color: var(--accent-color); }
.useful-link-item:hover i { color: white; }

/* Banner Tasarımı */
.link-info-banner {
    display: flex;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    align-items: center;
}

.banner-img { flex: 1; height: 300px; }
.banner-img img { width: 100%; height: 100%; object-fit: cover; }
.banner-text { flex: 1.2; padding: 50px; }
.banner-text h3 { margin-bottom: 15px; color: var(--primary-color); }

@media (max-width: 992px) {
    .links-main-grid, .link-info-banner { grid-template-columns: 1fr; flex-direction: column; }
}

/* --- BLOG ANA SAYFA TASARIMI --- */

/* Görsel image_caf161.jpg'deki gibi 2'li ızgara yapısı */
.blog-grid-premium {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Sayfayı iki sütuna böler */
    gap: 40px; /* Kartlar arası ferah boşluk */
    margin-top: 30px;
}

.blog-card {
    background: #fff;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

/* Kart Görseli (image_cae5e0.jpg'deki oranlar) */
.blog-img {
    width: 100%;
    height: 300px; /* Görsel yüksekliği */
    overflow: hidden;
    margin-bottom: 20px;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Görselin en-boy oranını korur */
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-img img {
    transform: scale(1.03); /* Hafif zoom efekti */
}

/* Yazı Alanı (image_cae5c5.jpg'deki font düzeni) */
.blog-body h3 {
    font-size: 20px;
    color: #333;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-body p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    /* Metni 3 satırda sınırlayıp üç nokta koyar */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Turuncu "DETAYLAR" Butonu (image_cae31d.jpg'deki kurumsal buton) */
.btn-detay {
    display: inline-block;
    padding: 8px 25px;
    border: 1px solid #F26522; /* Turuncu çerçeve */
    color: #F26522;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-detay:hover {
    background: #F26522; /* Hover olunca turuncu dolar */
    color: #fff;
}

/* Mobil için tek sütun düzeni */
@media (max-width: 991px) {
    .blog-grid-premium {
        grid-template-columns: 1fr;
    }
}

/* Premium İletişim Formu CSS */
.premium-input {
    border: 2px solid #f1f1f1 !important;
    border-radius: 8px !important;
    padding: 12px 15px !important;
    font-size: 14px !important;
    transition: all 0.3s ease !important;
}

.premium-input:focus {
    border-color: #F26522 !important;
    background: #fff !important;
    box-shadow: 0 5px 15px rgba(242, 101, 34, 0.1) !important;
}

.btn-premium {
    background: #1a365d;
    color: #fff;
    padding: 15px 40px;
    border: none;
    border-radius: 8px;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(26, 54, 93, 0.2);
}

.btn-premium:hover {
    background: #F26522; /* Kurumsal turuncuya dönüş */
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(242, 101, 34, 0.3);
    color: #fff;
}

.contact-info-block i {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.contact-info-block:hover i {
    transform: rotate(15deg) scale(1.2);
}