/* style.css - VTS Bilişim Tamamen Özel Kodlanmış Temiz Tasarım */

:root {
    --primary-color: #0d6efd; /* Ana mavi */
    --primary-hover: #0b5ed7;
    --dark-bg: #1c2331; /* Topbar ve CTA için lacivert */
    --text-color: #333333;
    --text-muted: #6c757d;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --border-color: #e9ecef;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

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

/* YARDIMCI BÖLÜMLER */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-white { color: var(--white); }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }
.pt-0 { padding-top: 0 !important; }
.w-100 { width: 100%; display: block; }
.light-bg { background-color: var(--light-bg); }
.mt-auto { margin-top: auto; }

/* 1. TOP BAR */
.top-bar {
    background-color: #0b111a;
    color: #fff;
    font-size: 13px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.top-bar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-bar-info {
    display: flex;
    gap: 30px;
}
.top-bar-info span {
    display: flex;
    align-items: center;
}
.top-bar-info i {
    margin-right: 10px;
    color: #fff;
}
.top-bar-social {
    display: flex;
    align-items: center;
    gap: 15px;
}
.top-bar-social a {
    color: #fff;
}

/* 2. HEADER / NAVIGATION */
.header-overlay {
    position: absolute;
    top: 45px; /* Topbar'ın hemen altından başlasın */
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(11, 17, 26, 0.4); /* Hafif karartı vererek resim üzerinde okunurluğu artırdık */
    padding: 10px 0;
}
.nav-container.nav-inline {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: flex-start; /* Sola yasladık */
    align-items: center;
    gap: 120px; /* Logo ile yazılar arasındaki mesafeyi buradan kontrol ediyoruz (yaklaştırdık) */
}
.logo img {
    height: 60px; /* Logoyu biraz daha makul bir boyuta çektik */
    object-fit: contain;
}
.nav-links {
    display: flex;
    gap: 20px;
    align-items: center;
}
.nav-links li a {
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}
.btn-contact {
    background: #016E9E;
    color: #fff;
    padding: 10px 20px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 4px;
}

.logo img {
    height: 70px; /* Çok küçültmeden ve fazla büyük tutmadan en dengeli (ideal) arzu edilen boyut */
    max-width: 280px; /* Geniş logoların menüyü itmesini engeller */
    object-fit: contain; 
}

.btn-contact {
    background-color: #016E9E !important; /* Orijinal sitedeki kesin mavi ton */
    color: var(--white);
    padding: 10px 20px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 3px;
    border: none;
    text-transform: uppercase;
}
.btn-contact:hover {
    background-color: #015880 !important;
}

/* Linkler */
.nav-links {
    display: flex;
    gap: 25px;
    align-items: center;
}
.nav-links li a {
    display: flex;
    align-items: center;
    height: 100%;
    font-size: 11.5px; /* BLOG ve diğer kelimelerin dev ekranda sırıtmaması ve küçük ekranda sığması için */
    font-weight: 650;
    color: rgba(255, 255, 255, 1);
    text-transform: uppercase;
    letter-spacing: 0px; 
    white-space: nowrap; /* Yazıların alt alta inmesini engeller */
}
.nav-links li a:hover {
    color: #38bdf8;
}
.nav-links i {
    font-size: 11px;
    margin-left: 5px;
}

/* DROPDOWN MENU */
.dropdown {
    position: relative;
}
/* Mouse dropdown'a inebilmesi için görünmez köprü */
.dropdown-menu::before {
    content: "";
    position: absolute;
    top: -15px;
    left: 0;
    width: 100%;
    height: 15px;
    background: transparent;
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 280px;
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
    border-radius: 4px;
    padding: 5px 0;
    z-index: 1000;
}
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    color: #333333 !important;
    text-transform: none !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    letter-spacing: 0 !important;
    border-bottom: 1px solid #f1f5f9;
}
.dropdown-menu li:last-child a {
    border-bottom: none;
}
.dropdown-menu li a:hover {
    background-color: #f8f9fa;
    color: #016E9E !important;
}

/* 3. HERO */
.hero {
    position: relative;
    background-image: url('wp-content/uploads/2025/01/hero3-1-1.jpg');
    background-size: cover;
    background-position: center;
    height: 700px; /* Sitedeki gibi uzun bir hero */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.6); /* Transparan koyu lacivert filtre */
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    padding: 0 15px;
    margin-top: 50px; /* Menünün altında kalmaması için biraz aşağı itelim */
}
.hero-content h1 {
    font-size: 60px !important;
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.26;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.6); /* Arka planda okunurluk için gölge */
}
.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: var(--white);
    font-size: 24px;
}
.bounce {
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-20px);}
    60% {transform: translateY(-10px);}
}

/* 4. VURGULU KARTLAR (HIGHLIGHT CARDS) OVERLAP */
.highlight-cards {
    margin-top: -80px; /* Heroun üzerine çıkması için */
    position: relative;
    z-index: 3;
}
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: var(--transition);
}
.card:hover {
    transform: translateY(-10px);
}
.card i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}
.card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #222;
}
.card p {
    font-size: 14px;
    color: var(--text-muted);
}

/* GENEL SECTİON AYARLARI */
.section-padding {
    padding: 80px 0;
}
.section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #111;
    text-transform: uppercase;
}
.divider {
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 0 auto 40px auto;
}
.divider-left {
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 0 0 30px 0;
}

/* KURUMSAL BT ÇÖZÜMLERİ GRİDİ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 30px;
    text-align: left;
}
.service-item .icon-circle {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    color: white;
}
.service-item .icon-circle i {
    font-size: 28px;
    color: white;
    margin-bottom: 0;
}
.service-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}
.service-item p {
    font-size: 14px;
    color: var(--text-muted);
}

/* CTA DARK SECTİON */
.cta-dark {
    position: relative;
    background-image: url('wp-content/uploads/2025/01/hero3-1-1.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    text-align: center;
    color: var(--white);
}
.cta-overlay {
    position: absolute;
    top:0; left:0; width:100%; height:100%;
    background-color: rgba(28, 35, 49, 0.85);
    z-index: 1;
}
.cta-content {
    position: relative;
    z-index: 2;
}
.cta-content h3 {
    font-size: 28px;
    margin-bottom: 30px;
}
.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    display: inline-block;
}
.btn-primary:hover {
    background-color: var(--primary-hover);
    color: var(--white);
}

/* BULUT VE DC KARTLARI (İKONLU SATIRLAR) */
.lead-text {
    font-size: 16px;
    color: #555;
    max-width: 800px;
}
.cloud-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.border-card {
    border: 1px solid var(--border-color);
    padding: 40px 30px;
    border-radius: 6px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.border-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}
.border-card i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}
.border-card h4 {
    font-size: 18px;
    margin-bottom: 15px;
    text-transform: uppercase;
}
.border-card ul, .border-card p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 25px;
}
.border-card ul li {
    margin-bottom: 5px;
}
.btn-outline {
    border: 1px solid #ddd;
    padding: 8px 20px;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
    color: #444;
    border-radius: 4px;
    display: inline-block;
    align-self: flex-start;
}
.btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* PROFESYONEL HİZMETLER */
.columns-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}
.align-center {
    align-items: center;
}
.pro-services-text .subtitle {
    font-size: 16px;
    color: #555;
    font-weight: 400;
    margin-bottom: 30px;
    line-height: 1.8;
}
.pro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.pro-item {
    background-color: #f1f5f9;
    padding: 20px;
    border-left: 4px solid var(--primary-color);
    border-radius: 4px;
}
.pro-item h5 {
    font-size: 15px;
    font-weight: 600;
    color: #222;
}

/* HAKKIMIZDA */
.about-text p {
    margin-bottom: 20px;
    color: #555;
    font-size: 15px;
}
.round-image {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}



/* FOOTER */
.footer {
    background-color: #111;
    color: #999;
    padding: 30px 0;
    text-align: center;
    font-size: 14px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
    .cards-grid, .services-grid, .cloud-grid, .columns-2 {
        grid-template-columns: 1fr 1fr;
    }

    .nav-links {
        display: none; /* Düz menü şimdilik css ile hide yapıldı, js ile hamburger eklenebilir */
    }
}
@media (max-width: 768px) {
    .cards-grid, .services-grid, .cloud-grid, .columns-2, .pro-grid {
        grid-template-columns: 1fr;
    }
    .highlight-cards {
        margin-top: 40px;
    }
    .hero-content h1 {
        font-size: 32px;
    }
    .top-bar-info span {
        display: block;
        margin-bottom: 5px;
    }
}

/* ========================================================
   ALT SAYFA (İÇ BÖLÜM) ÖZEL STİLLERİ
======================================================== */

.header-solid {
    position: relative;
    background: #0B1320; /* Ana sayfa üst mavisiyle tutarlı koyu lacivert */
    padding-top: 10px;
    padding-bottom: 20px;
    z-index: 100;
}

.page-title-section {
    padding: 60px 0 20px;
}
.page-main-title {
    font-size: 32px;
    font-weight: 800;
    color: #333;
    text-transform: uppercase;
}
.page-title-divider {
    width: 100%;
    max-width: 1200px;
    height: 3px;
    background-color: #016E9E;
    margin: 20px auto 40px;
}

.solution-section {
    padding: 40px 0;
}
.solution-row {
    display: flex;
    align-items: center;
    gap: 80px; /* Metin ve resim arasındaki boşluk */
}
.solution-row.reverse {
    flex-direction: row-reverse;
}
.solution-text {
    flex: 1;
}
.solution-text h2 {
    font-size: 28px;
    font-weight: 800;
    color: #222;
    margin-bottom: 20px;
}
.solution-text p {
    font-size: 15px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 25px;
    font-weight: 400;
}
.solution-list {
    display: flex;
    flex-direction: column;
    gap: 10px; /* Maddeler arası boşluk */
}
.solution-list li {
    font-size: 16px;
    font-weight: 700;
    color: #222;
}
.solution-image {
    flex: 1;
}
.solution-image img {
    width: 100%;
    border-radius: 8px; /* Kibar kenar yuvarlaması */
    box-shadow: 0 4px 15px rgba(0,0,0,0.1); /* Hafif gölge */
    object-fit: cover;
}

/* Mobilde Solution satırları alt alta gelir */
@media (max-width: 991px) {
    .solution-row, .solution-row.reverse {
        flex-direction: column;
        gap: 30px;
    }
}

/* YAZI/RESİM DENGESİ ÇÖZÜMÜ (Uzun Metinli Satırlar) */
.heavy-text-row {
    align-items: stretch; /* Resmi yazının boyu kadar uzatır */
}
.heavy-text-row .solution-image {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.heavy-text-row .solution-image img {
    height: 100%;
    min-height: 400px;
    object-fit: cover;
}
.sub-title {
    font-size: 15px;
    color: #111;
    font-weight: 800;
    display: block;
    margin-top: 10px;
}
.sub-desc {
    margin-top: 4px;
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.5;
    color: #444;
}

/* ========================================================
   PROFESYONEL HİZMETLER ÖZEL STİLLERİ
======================================================== */
.profesyonel-grid-section {
    padding: 20px 0 80px;
    background: #fff;
}
.prof-top-desc {
    font-size: 15px;
    font-weight: 500;
    color: #444;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 60px;
}
.managed-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px 30px;
}
.ms-card {
    text-align: center;
}
.ms-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #9b59b6;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #9b59b6;
    font-size: 24px;
}
.ms-title {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 12px;
    color: #111;
}
.ms-desc {
    font-size: 12px;
    color: #555;
    line-height: 1.6;
}

/* Banner */
.prof-banner {
    background: url('prof_banner_bg.png') center/cover;
    padding: 60px 0;
    text-align: center;
}
.prof-banner h2 {
    color: #fff;
    font-size: 32px;
    font-weight: 800;
    margin: 0;
}

/* Kurulum ve Entegrasyon */
.install-grid-section {
    padding: 80px 0;
    background: #fff;
}
.install-title {
    font-size: 32px;
    font-weight: 800;
    color: #222;
    text-align: center;
    margin-bottom: 20px;
}
.install-desc {
    font-size: 14px;
    font-weight: 400;
    color: #444;
    line-height: 1.6;
    max-width: 1000px;
    margin: 0 auto 50px;
    text-align: center;
}
.install-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}
.install-card {
    display: flex;
    flex-direction: column;
}
.install-img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    border: 1px solid #ddd;
    border-bottom: none;
    display: block;
}
.install-label {
    background: #0088b5;
    color: #fff;
    padding: 15px 10px;
    text-align: center;
    font-size: 12px;
    font-weight: 800;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
}

/* Responsive */
@media (max-width: 1200px) {
    .install-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}
@media (max-width: 991px) {
    .managed-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .install-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .managed-services-grid {
        grid-template-columns: 1fr;
    }
    .sangfor-contact-banner .container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    .benefits-grid, .steps-grid, .migration-body {
        flex-direction: column;
    }
    .m-arrow-main {
        transform: rotate(90deg);
        margin: 20px 0;
    }
}

/* ========================================================
   SANALLAŞTIRMA ÇÖZÜMLERİ ÖZEL STİLLERİ
======================================================== */
.sf-infra-wrapper {
    max-width: 800px;
    margin: 50px auto;
    background: #fdfdfd;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #eee;
}
.sf-infra-icons {
    display: flex;
    justify-content: space-around;
    margin-bottom: 30px;
}
.sf-ic {
    font-size: 12px;
    color: #555;
    font-weight: 500;
}
.sf-ic i {
    font-size: 24px;
    color: #fff;
    background: #28a745;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 8px;
    margin-bottom: 10px;
    display: inline-block;
}
.sf-infra-server {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
    margin: 0 auto;
}
.sf-infra-title {
    color: #007bff;
    font-weight: bold;
    font-size: 18px;
    margin-top: 15px;
}
.sangfor-contact-banner {
    background: linear-gradient(90deg, #009be3, #1c2833);
    padding: 60px 0;
    margin: 60px 0;
}
.sangfor-contact-banner .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.sangfor-contact-banner h2 {
    color: #fff;
    font-size: 28px;
    font-weight: 800;
    margin: 0;
    line-height: 1.4;
}
.btn-purple {
    background: #9b59b6;
    color: #fff;
    padding: 15px 40px;
    border-radius: 4px;
    font-weight: bold;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s;
}
.btn-purple:hover {
    background: #8e44ad;
    color: #fff;
}
.sangfor-reason-section {
    padding: 20px 0 60px;
}
.sangfor-reason-section h2 {
    font-size: 28px;
    font-weight: 800;
    text-align: center;
    color: #222;
    margin-bottom: 20px;
}
.sangfor-reason-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #444;
    max-width: 1000px;
    margin: 0 auto 20px;
}
.sangfor-reason-list {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    font-weight: 600;
    list-style-type: none;
    padding-left: 0;
}
.sangfor-reason-list li {
    margin-bottom: 5px;
}
.sangfor-reason-list li::before {
    content: "- ";
}
.benefits-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 70px;
}
.benefit-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    text-align: center;
    padding: 50px 20px 20px;
    position: relative;
    flex: 1;
}
.benefit-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
}
.benefit-card h4 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 10px;
}
.benefit-card p {
    font-size: 13px;
    color: #555;
    line-height: 1.5;
}
.sangfor-bold-text {
    font-size: 16px;
    font-weight: 800;
    text-align: center;
    margin: 60px auto 40px;
    max-width: 900px;
    color: #111;
}
.steps-grid {
    display: flex;
    gap: 30px;
    margin-top: 50px;
}
.step-card {
    flex: 1;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    padding: 50px 30px 30px;
    text-align: center;
    position: relative;
    border-bottom: 5px solid transparent;
}
.step-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #fff;
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
.step-card h4 {
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 15px;
}
.step-card p {
    font-size: 13px;
    color: #555;
}
.migration-infographic {
    border: 2px solid #28a745;
    margin-top: 60px;
    border-radius: 4px;
    overflow: hidden;
}
.migration-head {
    background: #28a745;
    color: #fff;
    text-align: center;
    padding: 15px;
    font-weight: bold;
    font-size: 15px;
}
.migration-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px;
    background: #f4f8f4;
}
.m-col {
    text-align: center;
    flex: 1;
}
.m-title {
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 10px;
}
.green-text { color: #28a745; }
.blue-text { color: #007bff; font-weight: bold; font-size: 13px; margin-top: 15px; }
.m-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: #fff;
    padding: 20px 10px;
    border-radius: 8px;
    min-height: 100px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.m-node { text-align: center; font-size: 11px; font-weight:600; color: #555;}
.m-node i { font-size: 35px; color: #555; margin-bottom: 8px; }
.m-node.circle {
    border: 2px solid #007bff;
    border-radius: 50px;
    padding: 15px 15px;
    color: #007bff;
    font-weight: bold;
    background: #fff;
}
.m-node.cloud {
    background: #007bff;
    color: #fff;
    border-radius: 50px;
    padding: 15px 25px;
    font-weight: bold;
}
.m-arrow-main { font-size: 40px; color: #b1d2ff; }
.blue-icon { color: #007bff; margin: 0 5px; }
.m-button {
    background: #28a745;
    color: #fff;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: bold;
}
.bulut-top-desc {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    line-height: 1.5;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 40px;
}

.cloud-boxes-section {
    background-color: #f6f7f9;
    padding: 60px 0;
}
.cloud-alt-card {
    background: #fff;
    padding: 40px 30px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}
.cloud-alt-card i {
    font-size: 40px;
    color: #222;
    margin-bottom: 20px;
}
.cloud-alt-card h4 {
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 25px;
    color: #111;
    text-transform: uppercase;
}
.cloud-alt-list {
    text-align: left;
    list-style: none;
    padding: 0;
    margin: 0;
}
.cloud-alt-list li {
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
    padding-left: 15px;
    position: relative;
}
.cloud-alt-list li::before {
    content: "-";
    position: absolute;
    left: 0;
    top: 0;
}

/* Neden Tercih Ediliyoruz */
.why-us-section {
    background-color: #f4f5f7;
    padding: 60px 0;
}
.why-us-title {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    color: #222;
    margin-bottom: 50px;
}
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.why-us-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.why-us-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.why-us-content {
    padding: 30px;
}
.why-us-content h4 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #111;
    text-transform: uppercase;
}
.why-us-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #444;
}

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

/* ========================================================
   HAKKIMIZDA ÖZEL STİLLERİ
======================================================== */
.about-section {
    padding: 60px 0;
    background: #fff;
}
.about-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 60px;
}
.about-row.reverse {
    flex-direction: row-reverse;
}
.about-img-col {
    flex: 1;
}
.about-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
}
.about-text-col {
    flex: 1;
}
.about-title {
    font-size: 26px;
    font-weight: 800;
    color: #222;
    margin-bottom: 25px;
    line-height: 1.4;
    text-align: center;
}
.about-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #444;
    font-weight: 500;
    margin-bottom: 20px;
}

.about-banner {
    background: linear-gradient(90deg, #009be3 30%, #203a43 70%, #15222b);
    padding: 30px 0;
    margin-bottom: 60px;
}
.about-banner .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.about-banner h2 {
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    margin: 0;
}
.btn-outline-white {
    background: #17385c;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 30px;
    font-weight: bold;
    font-size: 14px;
    border-radius: 4px;
    text-decoration: none;
    transition: 0.3s;
}
.btn-outline-white:hover {
    background: #fff;
    color: #17385c;
}

/* Responsive */
@media (max-width: 991px) {
    .about-row, .about-row.reverse {
        flex-direction: column;
        gap: 30px;
    }
    .about-banner .container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}

/* ========================================================
   İLETİŞİM ÖZEL STİLLERİ
======================================================== */
.contact-header-banner {
    background: linear-gradient(90deg, #00a8ff, #222);
    padding: 60px 0;
    text-align: center;
}
.contact-header-banner h2 {
    color: #fff;
    font-size: 28px;
    font-weight: 800;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.contact-main-section {
    padding: 60px 0 20px;
    background: #fff;
}
.contact-row {
    display: flex;
    gap: 50px;
    align-items: center;
}
.contact-form-col {
    flex: 1;
    background: #fff;
    padding-right: 20px;
}
.vts-contact-form .form-group {
    margin-bottom: 20px;
}
.vts-contact-form label {
    display: block;
    font-size: 11px;
    font-weight: 800;
    margin-bottom: 6px;
    color: #111;
}
.vts-contact-form .text-danger {
    color: #cc0000;
}
.vts-contact-form .form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    color: #555;
    font-family: inherit;
}
.vts-contact-form .form-control:focus {
    outline: none;
    border-color: #007bff;
}
.btn-submit {
    background: #0076a8;
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s;
}
.btn-submit:hover {
    background: #005f87;
}
.contact-img-col {
    flex: 1;
}
.contact-img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}
.contact-info-section {
    padding: 20px 0 80px;
    background: #fff;
    text-align: center;
}
.company-name {
    font-size: 26px;
    font-weight: 800;
    color: #222;
    margin-bottom: 30px;
}
.company-details-wrapper {
    display: inline-block;
    text-align: left;
    margin-bottom: 40px;
}
.company-details-wrapper p {
    font-size: 13px;
    color: #333;
    margin-bottom: 15px;
}
.company-details-wrapper strong {
    font-weight: 600;
    color: #111;
}
.btn-directions {
    background: #006b96;
    color: #fff;
    display: inline-block;
    padding: 12px 30px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 4px;
    text-decoration: none;
    transition: 0.3s;
}
.btn-directions:hover {
    background: #004c6b;
    color: #fff;
}
.map-container {
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 30px;
}

@media (max-width: 768px) {
    .contact-row {
        flex-direction: column;
    }
}

/* Success Alert Box */
.success-alert-box {
    background-color: #beeebd;
    border: 2px solid #000;
    border-left: 6px solid #004d40;
    color: #333;
    padding: 20px;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 25px;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
}
